/** * Represents a ContactGroupContacts in Autotask. * Corresponds to the Autotask entity "ContactGroupContacts". */ export interface ContactGroupContacts { /** * Autotask field: contactGroupId * Data Type: integer * Required: true * Readonly: false * Reference to: ContactGroup */ contactGroupId: number; /** * 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; } //# sourceMappingURL=ContactGroupContacts.d.ts.map