mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-23 01:55: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;
|
||||
}
|
||||
|
||||
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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue