diff --git a/asset-transfer-secured-agreement/application-gateway-typescript/src/contractWrapper.ts b/asset-transfer-secured-agreement/application-gateway-typescript/src/contractWrapper.ts index b27ab417..626e99f5 100644 --- a/asset-transfer-secured-agreement/application-gateway-typescript/src/contractWrapper.ts +++ b/asset-transfer-secured-agreement/application-gateway-typescript/src/contractWrapper.ts @@ -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;