/** * Represents a CompanyAlerts in Autotask. * Corresponds to the Autotask entity "CompanyAlerts". */ export interface CompanyAlerts { /** * Autotask field: alertText * Data Type: string * Length: 8000 * Required: true * Readonly: false */ alertText: string; /** * Autotask field: alertTypeID * Data Type: integer * Required: true * Readonly: true * Picklist Values: * - 1: Account Detail * - 2: New Ticket * - 3: Ticket Detail */ readonly alertTypeID: 1 | 2 | 3; /** * Autotask field: companyID * Data Type: integer * Required: true * Readonly: true * Reference to: Company */ readonly companyID: number; /** * Autotask field: id * Data Type: long * Required: true * Readonly: true */ readonly id: number; } //# sourceMappingURL=CompanyAlerts.d.ts.map