Uecko_ERP/modules/customers/src/api/application/snapshot-builders/summary/customer-summary-snapshot.interface.ts

36 lines
596 B
TypeScript
Raw Normal View History

2026-03-07 21:39:21 +00:00
export type ICustomerSummarySnapshot = {
id: string;
company_id: string;
status: string;
reference: string;
is_company: string;
name: string;
trade_name: string;
tin: string;
street: string;
street2: string;
city: string;
postal_code: string;
province: string;
country: string;
email_primary: string;
email_secondary: string;
phone_primary: string;
phone_secondary: string;
mobile_primary: string;
mobile_secondary: string;
fax: string;
website: string;
language_code: string;
currency_code: string;
metadata?: Record<string, string>;
};