Inttegro TypeScript SDK - v8.2.0
    Preparing search index...

    Interface PaymentMethod

    interface PaymentMethod {
        active?: boolean;
        archivedAt?: string | null;
        bankAccount?: PaymentMethodBankAccount | null;
        card?: PaymentMethodCard | null;
        createdAt: string;
        customData?: Record<string, string>;
        customerId: string;
        expiresOn?: string | null;
        id: string;
        mobileMoney?: PaymentMethodMobileMoney | null;
        owner?: PaymentMethodOwner | null;
        type: PaymentMethodType;
        verification?: PaymentMethodVerification | null;
        verified: boolean;
        verifiedAt?: string | null;
    }
    Index
    active?: boolean
    archivedAt?: string | null
    bankAccount?: PaymentMethodBankAccount | null
    card?: PaymentMethodCard | null
    createdAt: string
    customData?: Record<string, string>
    customerId: string
    expiresOn?: string | null
    id: string
    mobileMoney?: PaymentMethodMobileMoney | null
    owner?: PaymentMethodOwner | null
    verification?: PaymentMethodVerification | null
    verified: boolean
    verifiedAt?: string | null