/* tslint:disable */ /* eslint-disable */ /** * EMIL AuthService * The EMIL AuthService API description * * The version of the OpenAPI document: 1.0 * Contact: kontakt@emil.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface WorkspaceClass */ export interface WorkspaceClass { /** * The name of the workspace * @type {string} * @memberof WorkspaceClass */ 'name': string; /** * The slug of the workspace * @type {string} * @memberof WorkspaceClass */ 'slug': string; /** * The name of the tenant * @type {string} * @memberof WorkspaceClass */ 'tenantName': string; /** * Whether the workspace is the default workspace * @type {boolean} * @memberof WorkspaceClass */ 'isDefault': boolean; /** * Whether the workspace is the disabled for the user * @type {boolean} * @memberof WorkspaceClass */ 'isDisabled': boolean; }