Interface ListTransactionsByCardIdAndTypeInput

interface ListTransactionsByCardIdAndTypeInput {
    cachePolicy?: CachePolicy;
    cardId: string;
    limit?: number;
    nextToken?: string;
    transactionType: TransactionType;
}

Properties

cachePolicy?: CachePolicy

Cache Policy to use to access transactions.

cardId: string

Identifier of the card to list for related transactions.

limit?: number

Maximum number of transactions to return.

nextToken?: string

Paginated next token.

transactionType: TransactionType

The type of transactions to retrieve.