@goboomtown/entities-nest
Version:
entities in typescript format. This includes: - CustomerDTO, CustomerLocationDTO, CasesDTO
29 lines (28 loc) • 611 B
TypeScript
export declare class CustomerDTO {
constructor();
id: string;
name: string;
nameLegal?: string;
street1?: string;
street2?: string;
city?: string;
state?: string;
zipcode: string;
email: string;
phone?: string;
externalId?: string;
industry?: string;
status?: string;
created?: Date;
}
export declare function customerFields(lang: string): {
index: number;
name: string;
label: string;
description: string;
isRequired: boolean;
dataType: string;
display: boolean;
isCustomField: boolean;
isDependent: boolean;
}[];