The fiat payment method object.

interface PaymentMethod {
    actions: PaymentRailAction[];
    currency: string;
    id: string;
    limits?: PaymentMethodLimits;
    type: PaymentMethodType;
}

Properties

The actions for the payment method.

currency: string

The currency of the payment method.

id: string

The ID of the payment method which previously was added.

^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$

The limits of the payment method.

The type of payment method.