The Sudo Platform SDK representation of a provisional funding source.

ProvisionalFundingSource

interface ProvisionalFundingSource {
    createdAt: Date;
    id: string;
    last4: string;
    owner: string;
    provisioningData: ProvisionalFundingSourceProvisioningData;
    state: ProvisionalFundingSourceState;
    type: FundingSourceType;
    updatedAt: Date;
    version: number;
}

Properties

createdAt: Date

Date when the provisional funding source was created.

id: string

Unique identifier of the provisional funding source.

last4: string

The last 4 digits of the funding source account number.

owner: string

Identifier of the user that owns the provisional funding source.

Provisioning data provided by the funding source provider.

The provisional funding source state.

updatedAt: Date

Date when the provisional funding source was last updated.

version: number

Current version of the provisional funding source.