@goboomtown/entities-nest
Version:
entities in typescript format. This includes: - CustomerDTO, CustomerLocationDTO, CasesDTO
26 lines (25 loc) • 551 B
TypeScript
export declare class ServiceTaskDTO {
constructor();
id?: string;
orgId?: string;
caseId?: string;
name: string;
description?: string;
status?: string;
dueDate?: string;
createdAt?: string;
updatedAt?: string;
deleted: boolean;
links?: [];
}
export declare function taskFields(lang: string): {
index: number;
name: string;
label: string;
description: string;
isRequired: boolean;
dataType: string;
display: boolean;
isCustomField: boolean;
isDependent: boolean;
}[];