Interface ITransactionsReplaceNoteRequest

Argument interface for the Wallet.transactionsReplaceNote method.

interface ITransactionsReplaceNoteRequest {
    accountId: string;
    networkId: string | NetworkId;
    note?: string;
    transactionId: string;
}

Properties

accountId: string

The id of account the transaction belongs to.

networkId: string | NetworkId

The network id of the transaction.

note?: string

Optional note string to replace the existing note. If not supplied, the note will be removed.

transactionId: string

The id of the transaction.

Generated using TypeDoc