/** * TrainX API * ### The TrainX API documentation In order to use the Swagger, please retrieve your JWT at the following link: [https://trainx.getcockpit.io/jwt](https://trainx.getcockpit.io/jwt) and add it to the bearer field in the authorization section. * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { UserLightDtoApi } from './userLightDto'; export interface CompanyDtoApi { domain?: string; name: string; connector?: CompanyDtoApiConnectorEnumApi; isConnectorActive?: boolean; isIntegrationEnabled?: boolean; connectorDays?: Array; connectorQuestionsPerQuiz?: number; connectorTimes?: Array; admins?: Array; usersHaveWebAccess: boolean; theOfficeId: string; licenseCount: number; id: string; createdAt: Date; createdBy?: string; createdByUser?: UserLightDtoApi; updatedAt: Date; deletedAt?: Date; } export declare enum CompanyDtoApiConnectorEnumApi { Web = "web", Slack = "slack", Teams = "teams", GoogleChat = "google-chat", Unknown = "unknown" } export declare enum CompanyDtoApiConnectorDaysEnumApi { Monday = "Monday", Tuesday = "Tuesday", Wednesday = "Wednesday", Thursday = "Thursday", Friday = "Friday" } export declare enum CompanyDtoApiConnectorTimesEnumApi { _10h = "10h", _13h30 = "13h30", _17h = "17h" }