Type alias DelegationOperation

DelegationOperation: Operation & {
    amount?: number;
    bakerFee?: number;
    block?: string | null;
    counter?: number;
    errors?: OperationError[] | null;
    gasLimit?: number;
    gasUsed?: number;
    hash?: string | null;
    id?: number;
    initiator?: Alias | null;
    level?: number;
    newDelegate?: Alias | null;
    nonce?: number | null;
    prevDelegate?: Alias | null;
    quote?: QuoteShort | null;
    sender?: Alias | null;
    senderCodeHash?: number | null;
    status?: string | null;
    storageLimit?: number;
    timestamp?: string;
    type?: string | null;
}

Generated using TypeDoc