exported data objects

Signed-off-by: sapthasurendran <saptha.surendran@ibm.com>
This commit is contained in:
sapthasurendran 2022-05-20 20:35:59 +05:30
parent d9f2e94775
commit 0af34557aa

View file

@ -31,25 +31,25 @@ interface AssetPriceJSON {
tradeID: string;
}
interface AssetPrivateData {
export interface AssetPrivateData {
ObjectType: string;
Color: string;
Size: number;
}
interface Asset {
export interface Asset {
assetId: string;
ownerOrg: string;
publicDescription: string;
}
interface AssetProperties {
export interface AssetProperties {
assetId: string;
color: string;
size: number;
}
interface AssetPrice {
export interface AssetPrice {
assetId: string;
price: number;
tradeId: string;