@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
23 lines (22 loc) • 558 B
text/typescript
export interface DisplayIssuedCardDetailsToCustomerRequest {
/**
* ID of the issued card, a string starting with **ci_** or **card_**.
*/
card: `ci_${string}`;
/**
* The color of the card, specified by hexadecimal value, CSS color name, RGB, or RGBA.
*/
card_color?: string;
/**
* Determines the default language of the hosted page.
*/
language?: string;
/**
* The URL of the logo image displayed on the card.
*/
logo?: string;
/**
* The orientation of the logo on the card.
*/
logo_orientation?: string;
};