From 0af34557aaf36d0c6cff1c1596982fb97a748de7 Mon Sep 17 00:00:00 2001 From: sapthasurendran Date: Fri, 20 May 2022 20:35:59 +0530 Subject: [PATCH] exported data objects Signed-off-by: sapthasurendran --- .../application-gateway-typescript/src/contractWrapper.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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;