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.
26 lines (25 loc) • 617 B
TypeScript
import type { TicketData } from "..";
type CreditCard = {
id: number;
first_name: string;
last_name: string;
nick_name: string;
type: number;
number: string;
currency_code: string;
expiry_year: string;
expiry_month: string;
security_code: string;
address_id: number;
is_primary: number;
status: number;
verification_status: number;
original_source_id: string;
server_date: string;
date_utc: string;
client_date: string;
update_date_utc: string;
custom_field: Record<string, any>;
ticket: TicketData[];
};
export type { CreditCard };