/* tslint:disable */ /* eslint-disable */ /** * EMIL Tenant Service * The EMIL TenantService 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 UserGroupClass */ export interface UserGroupClass { /** * Internal numeric id. * @type {number} * @memberof UserGroupClass */ 'id': number; /** * Auto-generated immutable identifier. Used for cross-service references. * @type {string} * @memberof UserGroupClass */ 'code': string; /** * Human-readable, renameable identifier. Unique per tenant. * @type {string} * @memberof UserGroupClass */ 'slug': string; /** * Display name. * @type {string} * @memberof UserGroupClass */ 'name': string; /** * Free-text description. * @type {string} * @memberof UserGroupClass */ 'description'?: string; /** * Time at which the object was created. * @type {string} * @memberof UserGroupClass */ 'createdAt': string; /** * Time at which the object was updated. * @type {string} * @memberof UserGroupClass */ 'updatedAt': string; /** * Identifier of the user who created the record. * @type {string} * @memberof UserGroupClass */ 'createdBy': string; /** * Identifier of the user who last updated the record. * @type {string} * @memberof UserGroupClass */ 'updatedBy': string; }