This request is responsible for creating a new prepaid card based on the current prepaid card and updating the status of the present prepaid card.

interface CardReplacementRequest {
    deliveryAddress?: DeliveryAddress;
    reason: CardReplacementStatus;
}

Properties

deliveryAddress?: DeliveryAddress

The DeliveryAddress object will be used for the 'PHYSICAL' and 'DIGITAL' card delivery. Leave blank for 'VIRTUAL' card.

Represents the reason for issuing a new prepaid card. The status of the original card changes to the one given in the reason.