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) • 623 B
TypeScript
import { TicketData } from "..";
type Address = {
id: number;
type: number;
is_billing: number;
address_line1: string;
address_line2: string;
postal_zip_code: string;
country_code: string;
state_region_id: number;
state_region: string;
city_id: number;
city_town: string;
status: number;
verification_status: number;
is_primary: number;
original_source_id: string;
server_date: string;
date_utc: string;
client_date: string;
update_date_utc: string;
custom_field: Record<string, unknown>;
ticket: TicketData[];
};
export type { Address };