/* 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 CreateUserGroupRequestDto */ export interface CreateUserGroupRequestDto { /** * Human-readable, renameable identifier for the user group. Unique per tenant. Must match /^[a-z0-9-]+$/. * @type {string} * @memberof CreateUserGroupRequestDto */ 'slug': string; /** * Display name for the user group. * @type {string} * @memberof CreateUserGroupRequestDto */ 'name': string; /** * Optional free-text description. * @type {string} * @memberof CreateUserGroupRequestDto */ 'description'?: string; }