Represents a payment instrument, used for Deposit or Withdrawal.

interface PaysafecardInstrument {
    ageRestriction?: number;
    consumerId?: string;
    countryRestriction: string;
    customerId?: string;
    id?: string;
    instrumentType: InstrumentType;
    kycLevelRestriction: KycLevelRestriction;
    status?: PaymentInstrumentStatus;
}

Hierarchy (view full)

Properties

ageRestriction?: number
consumerId?: string
countryRestriction: string
customerId?: string

The customer to which this instrument belongs.

id?: string

The instrument id.

instrumentType: InstrumentType

The instrument type.

kycLevelRestriction: KycLevelRestriction

The instrument status.