28 lines
436 B
TypeScript
28 lines
436 B
TypeScript
export interface IListCustomersResponseDTO {
|
|
id: string;
|
|
reference: string;
|
|
|
|
is_companyr: boolean;
|
|
name: string;
|
|
trade_name: string;
|
|
tin: string;
|
|
|
|
street: string;
|
|
city: string;
|
|
state: string;
|
|
postal_code: string;
|
|
country: string;
|
|
|
|
email: string;
|
|
phone: string;
|
|
fax: string;
|
|
website: string;
|
|
|
|
legal_record: string;
|
|
|
|
default_tax: number;
|
|
status: string;
|
|
lang_code: string;
|
|
currency_code: string;
|
|
}
|