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