export interface UpdateCardStatusRequest { /** * Card number or card ID. */ card: string; /** * Status of the card. One of the following: **block**, **unblock** */ status: string; /** * Reason for blocking the card. Relevant when the value of `status` is **block**. */ blocked_reason?: string; } //# sourceMappingURL=UpdateCardStatusRequest.d.ts.map