The fields submitted in this object will update the existing values for the corresponding card. Since the update that will be performed is partial, only the submitted fields will be reflected.

interface CardUpdateRequest {
    pin?: string;
    status?: CardStatus;
    statusReason?: string;
}

Properties

pin?: string

The Card pin should be 4 digits.

status?: CardStatus

The card status.

statusReason?: string

The reason for card status change.