@siglesiasg/node-red-hyperledger-fabric-gateway
Version:
Hyperledger Fabric 2.x nodes for node-red with latest fabric-gateway library
27 lines (19 loc) • 398 B
text/typescript
/*
SPDX-License-Identifier: Apache-2.0
*/
import {Object, Property} from 'fabric-contract-api';
()
export class Asset {
()
public docType?: string;
()
public ID: string;
()
public Color: string;
()
public Size: number;
()
public Owner: string;
()
public AppraisedValue: number;
}