/* tslint:disable */ /* eslint-disable */ /** * userroles * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ // May contain unused imports in some cases // @ts-ignore import type { BaseUserAccess } from './base-user-access'; /** * Represents a user role. */ export interface Role { access?: BaseUserAccess; /** * The date when the role was created in UTC. */ creationDate?: string; /** * The encoded key of the entity, generated automatically, globally unique. */ encodedKey?: string; /** * The ID of the role, which can be generated and customized, but must be unique. */ id?: string; /** * The last time the role was modified in UTC. */ lastModifiedDate?: string; /** * The unique name of the role. */ name: string; /** * The notes about the role. */ notes?: string; }