/** * Represents a ClassificationIcons in Autotask. * Corresponds to the Autotask entity "ClassificationIcons". */ export interface ClassificationIcons { /** * Autotask field: description * Data Type: string * Length: 100 * Required: false * Readonly: true */ readonly description?: string; /** * Autotask field: id * Data Type: long * Required: true * Readonly: true */ readonly id: number; /** * Autotask field: isActive * Data Type: boolean * Required: true * Readonly: true */ readonly isActive: boolean; /** * Autotask field: isSystem * Data Type: boolean * Required: true * Readonly: true */ readonly isSystem: boolean; /** * Autotask field: name * Data Type: string * Length: 35 * Required: true * Readonly: true */ readonly name: string; /** * Autotask field: relativeUrl * Data Type: string * Length: 100 * Required: true * Readonly: true */ readonly relativeUrl: string; } //# sourceMappingURL=ClassificationIcons.d.ts.map