36 lines
596 B
TypeScript
36 lines
596 B
TypeScript
|
|
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>;
|
||
|
|
};
|