zgo/src/app/owner.model.ts

28 lines
455 B
TypeScript
Raw Normal View History

2021-10-20 20:51:14 +00:00
export interface Owner {
2021-10-21 16:22:48 +00:00
_id?: string;
2021-10-20 20:51:14 +00:00
address: string;
name: string;
2021-11-22 20:37:45 +00:00
currency: string;
tax: boolean;
taxValue: number;
vat: boolean;
vatValue: number;
2022-01-28 20:03:35 +00:00
first: string;
last: string;
email: string;
street: string;
city: string;
state: string;
postal: string;
phone: string;
2022-01-17 20:49:08 +00:00
paid: boolean;
2022-01-18 22:40:20 +00:00
website: string;
2022-01-19 16:26:25 +00:00
country: string;
2022-03-07 17:14:29 +00:00
zats: boolean;
2022-05-18 20:51:39 +00:00
invoices: boolean;
expiration: string;
2022-07-18 20:29:27 +00:00
payconf: boolean;
2022-07-14 16:11:04 +00:00
viewkey: string;
2022-08-31 13:56:06 +00:00
crmToken: string;
2021-10-20 20:51:14 +00:00
}