Interface Entity

interface Entity {
    data: undefined | RichStruct;
    entity: string;
    genBlockChain: string;
    genBlockNumber: bigint;
    genBlockTime: undefined | Date;
}

Properties

data: undefined | RichStruct
entity: string
genBlockChain: string
genBlockNumber: bigint
genBlockTime: undefined | Date