mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-25 19:15:10 +00:00
exported data objects
Signed-off-by: sapthasurendran <saptha.surendran@ibm.com>
This commit is contained in:
parent
d9f2e94775
commit
0af34557aa
1 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue