/** * Represents a TicketChecklistLibraries in Autotask. * Corresponds to the Autotask entity "TicketChecklistLibraries". */ export interface TicketChecklistLibraries { /** * Autotask field: checklistLibraryID * Data Type: integer * Required: true * Readonly: false * Reference to: ChecklistLibrary */ checklistLibraryID: number; /** * Autotask field: id * Data Type: long * Required: false * Readonly: true */ readonly id?: number; /** * Autotask field: ticketID * Data Type: integer * Required: true * Readonly: false * Reference to: Ticket */ ticketID: number; } //# sourceMappingURL=TicketChecklistLibraries.d.ts.map