20 lines
554 B
TypeScript
20 lines
554 B
TypeScript
import { Contact, Document, OfficeFolder } from ".";
|
|
import Resource from "../Resource";
|
|
export default class Customer extends Resource {
|
|
uid?: string;
|
|
status: ECustomerStatus | string;
|
|
contact?: Contact;
|
|
created_at: Date | null;
|
|
updated_at: Date | null;
|
|
office_folders?: OfficeFolder[];
|
|
documents?: Document[];
|
|
totpCode?: string | null;
|
|
totpCodeExpire?: Date | null;
|
|
password?: string | null;
|
|
}
|
|
export declare enum ECustomerStatus {
|
|
VALIDATED = "VALIDATED",
|
|
PENDING = "PENDING",
|
|
ERRONED = "ERRONED"
|
|
}
|