@sumup/sdk
    Preparing search index...

    Type Alias PaymentInstrumentCard

    Details of the payment card that is saved as a payment instrument.

    type PaymentInstrumentCard = {
        active: boolean;
        card: Card;
        token: string;
        type: "card";
    }
    Index

    Properties

    Properties

    active: boolean

    Indicates whether the payment instrument is active and can be used for payments. To deactivate it, send a DELETE request to the resource endpoint.

    card: Card
    token: string

    Unique token identifying the saved payment card for a customer.

    type: "card"

    Type of the payment instrument.