@goboomtown/entities-nest
Version:
entities in typescript format. This includes: - CustomerDTO, CustomerLocationDTO, CasesDTO
32 lines (31 loc) • 809 B
TypeScript
import { CaseLogInteractionEventDTO } from '.';
export declare class CaseLogDTO {
constructor();
id?: string;
issueId: string;
usersFullName?: string;
usersNickname?: string;
usersCertifications?: string[];
diffLog?: string;
interactionEvent?: CaseLogInteractionEventDTO;
notes?: string;
created?: string;
eventCategory?: string;
eventCategoryLabel?: string;
eventType?: string;
eventTypeLabel?: string;
fromIssueSave?: boolean;
highlighted?: boolean;
highlightmap?: string;
}
export declare function caseLogFields(lang: string): {
index: number;
name: string;
label: string;
description: string;
isRequired: boolean;
dataType: string;
display: boolean;
isCustomField: boolean;
isDependent: boolean;
}[];