UNPKG

identity-admin-api-client-typescript

Version:
88 lines (83 loc) 1.79 kB
/* tslint:disable */ /* eslint-disable */ /** * CloudHospital IdentityServer Admin Api INT * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * 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. */ // May contain unused imports in some cases // @ts-ignore import { ApiScopePropertyApiDto } from './api-scope-property-api-dto'; /** * * @export * @interface ApiScopeApiDto */ export interface ApiScopeApiDto { /** * * @type {boolean} * @memberof ApiScopeApiDto */ 'showInDiscoveryDocument'?: boolean; /** * * @type {number} * @memberof ApiScopeApiDto */ 'id'?: number; /** * * @type {string} * @memberof ApiScopeApiDto */ 'name': string; /** * * @type {string} * @memberof ApiScopeApiDto */ 'displayName'?: string | null; /** * * @type {string} * @memberof ApiScopeApiDto */ 'description'?: string | null; /** * * @type {boolean} * @memberof ApiScopeApiDto */ 'required'?: boolean; /** * * @type {boolean} * @memberof ApiScopeApiDto */ 'emphasize'?: boolean; /** * * @type {boolean} * @memberof ApiScopeApiDto */ 'enabled'?: boolean; /** * * @type {Array<string>} * @memberof ApiScopeApiDto */ 'userClaims'?: Array<string> | null; /** * * @type {Array<ApiScopePropertyApiDto>} * @memberof ApiScopeApiDto */ 'apiScopeProperties'?: Array<ApiScopePropertyApiDto> | null; }