UNPKG

@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
/* SPDX-License-Identifier: Apache-2.0 */ import {Object, Property} from 'fabric-contract-api'; @Object() export class Asset { @Property() public docType?: string; @Property() public ID: string; @Property() public Color: string; @Property() public Size: number; @Property() public Owner: string; @Property() public AppraisedValue: number; }