/** * Represents a ResourceRoleQueues in Autotask. * Corresponds to the Autotask entity "ResourceRoleQueues". */ export interface ResourceRoleQueues { /** * Autotask field: id * Data Type: long * Required: true * Readonly: true */ readonly id: number; /** * Autotask field: queueID * Data Type: integer * Required: true * Readonly: false * Picklist Values: * - 5: Client Portal * - 6: Post Sale * - 8: Monitoring Alert * - 29682833: Level I Support * - 29683378: Administration * - 29683479: Cloud Services * - 29683480: Sales * - 29683481: Triage * - 29683482: Digital Card Support * - 29683483: Onsite Installation * - 29683484: Billing * - 29683485: Onboarding/Offboarding * - 29683486: Daily Service Administration */ queueID: 5 | 6 | 8 | 29682833 | 29683378 | 29683479 | 29683480 | 29683481 | 29683482 | 29683483 | 29683484 | 29683485 | 29683486; /** * Autotask field: resourceID * Data Type: integer * Required: true * Readonly: true * Reference to: Resource */ readonly resourceID: number; } //# sourceMappingURL=ResourceRoleQueues.d.ts.map