Interface Transaction

The mighty transaction

interface Transaction {
    amountNQT: string;
    attachment?: any;
    block: string;
    blockTimestamp: number;
    cashBackId: string;
    confirmations?: number;
    deadline: number;
    distribution?: {
        assetId: string;
        distributedAssetId?: string;
    } & DistributionAmount;
    ecBlockHeight: number;
    ecBlockId: string;
    feeNQT: string;
    fullHash: string;
    height: number;
    recipient?: string;
    recipientRS?: string;
    referencedTransactionFullHash?: string;
    requestProcessingTime: number;
    sender: string;
    senderPublicKey: string;
    senderRS: string;
    signature: string;
    signatureHash: string;
    subtype: number;
    timestamp: number;
    transaction: string;
    type: number;
    version: number;
}

Properties

amountNQT: string
attachment?: any
block: string
blockTimestamp: number
cashBackId: string
confirmations?: number
deadline: number
distribution?: {
    assetId: string;
    distributedAssetId?: string;
} & DistributionAmount
ecBlockHeight: number
ecBlockId: string
feeNQT: string
fullHash: string
height: number
recipient?: string
recipientRS?: string
referencedTransactionFullHash?: string
requestProcessingTime: number
sender: string
senderPublicKey: string
senderRS: string
signature: string
signatureHash: string
subtype: number
timestamp: number
transaction: string
type: number
version: number