21 lines
585 B
TypeScript
21 lines
585 B
TypeScript
import { Address } from "./Address";
|
|
import { Customer } from "./Customer";
|
|
import { User } from "./User";
|
|
export declare namespace Contact {
|
|
class IContact {
|
|
uuid: string;
|
|
first_name: string;
|
|
last_name: string;
|
|
email: string;
|
|
phone_number: string;
|
|
cell_phone_number: string;
|
|
civility: ECivility;
|
|
address: Address.IAddress;
|
|
created_at: Date | null;
|
|
updated_at: Date | null;
|
|
users?: User.IUser;
|
|
customers?: Customer.ICustomer;
|
|
}
|
|
type ECivility = "MALE" | "FEMALE" | "OTHERS";
|
|
}
|