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; tradeID: string;
} }
interface AssetPrivateData { export interface AssetPrivateData {
ObjectType: string; ObjectType: string;
Color: string; Color: string;
Size: number; Size: number;
} }
interface Asset { export interface Asset {
assetId: string; assetId: string;
ownerOrg: string; ownerOrg: string;
publicDescription: string; publicDescription: string;
} }
interface AssetProperties { export interface AssetProperties {
assetId: string; assetId: string;
color: string; color: string;
size: number; size: number;
} }
interface AssetPrice { export interface AssetPrice {
assetId: string; assetId: string;
price: number; price: number;
tradeId: string; tradeId: string;