@sudoplatform/sudo-virtual-cards
    Preparing search index...

    Interface CreditCardFundingSource

    The Sudo Platform SDK representation of attributes of a credit or debit card funding source.

    CreditCardFundingSource

    interface CreditCardFundingSource {
        cardType: CardType;
        createdAt: Date;
        currency: string;
        flags: FundingSourceFlags[];
        id: string;
        last4: string;
        network: CreditCardNetwork;
        owner: string;
        state: FundingSourceState;
        transactionVelocity?: TransactionVelocity;
        type: CreditCard;
        updatedAt: Date;
        version: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    cardType: CardType

    The type of card

    createdAt: Date

    Date when the funding source was created.

    currency: string

    The currency of the funding source.

    id: string

    Unique identifier of the funding source.

    last4: string

    The last 4 digits of the card number.

    The funding source credit card network.

    owner: string

    Identifier of the user that owns the funding source.

    The funding source state.

    transactionVelocity?: TransactionVelocity

    Effective transaction velocity, if any, applied to virtual card transactions funded by this funding source. This is the combined result of all velocity policies (global and funding source specific) as at the time this funding source was retrieved.

    Type of funding source

    updatedAt: Date

    Date when the funding source was last updated.

    version: number

    Version of this entity.