ggez-banking-sdk
Version:
A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.
13 lines (12 loc) • 334 B
TypeScript
import { Picture } from "../../common";
type VirtualCardDisplay = {
enable_card_color?: boolean;
show_card_image_note?: boolean;
image_note: string;
face_color?: number;
back_color?: number;
use_user_address?: boolean;
hide_address?: boolean;
picture: Picture[];
};
export type { VirtualCardDisplay };