2025-08-25 17:42:56 +00:00
|
|
|
export type IListAccountsRequestDTO = {};
|
2025-03-04 17:08:33 +00:00
|
|
|
|
|
|
|
|
export interface ICreateAccountRequestDTO {
|
|
|
|
|
id: string;
|
2025-08-25 17:42:56 +00:00
|
|
|
is_companyr: boolean;
|
2025-03-04 17:08:33 +00:00
|
|
|
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;
|
2025-09-18 11:17:18 +00:00
|
|
|
language_code: string;
|
2025-03-04 17:08:33 +00:00
|
|
|
currency_code: string;
|
|
|
|
|
logo: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface IUpdateAccountRequestDTO {
|
2025-08-25 17:42:56 +00:00
|
|
|
is_companyr: boolean;
|
2025-03-04 17:08:33 +00:00
|
|
|
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;
|
2025-09-18 11:17:18 +00:00
|
|
|
language_code: string;
|
2025-03-04 17:08:33 +00:00
|
|
|
currency_code: string;
|
|
|
|
|
logo: string;
|
|
|
|
|
}
|