/** * Represents a CompanySiteConfigurations in Autotask. * Corresponds to the Autotask entity "CompanySiteConfigurations". */ export interface CompanySiteConfigurations { /** * 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; /** * Autotask field: locationName * Data Type: string * Length: 100 * Required: false * Readonly: true */ readonly locationName?: string; } //# sourceMappingURL=CompanySiteConfigurations.d.ts.map