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