UNPKG

identity-admin-api-client-typescript

Version:
103 lines (98 loc) 1.99 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. */ /** * * @export * @interface UserProfileApiDto */ export interface UserProfileApiDto { /** * * @type {string} * @memberof UserProfileApiDto */ 'username'?: string | null; /** * * @type {boolean} * @memberof UserProfileApiDto */ 'isEmailConfirmed'?: boolean; /** * * @type {boolean} * @memberof UserProfileApiDto */ 'isPhoneNumberConfirmed'?: boolean; /** * * @type {string} * @memberof UserProfileApiDto */ 'email': string; /** * * @type {string} * @memberof UserProfileApiDto */ 'phoneNumber'?: string | null; /** * * @type {string} * @memberof UserProfileApiDto */ 'name'?: string | null; /** * * @type {string} * @memberof UserProfileApiDto */ 'website'?: string | null; /** * * @type {string} * @memberof UserProfileApiDto */ 'profile'?: string | null; /** * * @type {string} * @memberof UserProfileApiDto */ 'streetAddress'?: string | null; /** * * @type {string} * @memberof UserProfileApiDto */ 'locality'?: string | null; /** * * @type {string} * @memberof UserProfileApiDto */ 'region'?: string | null; /** * * @type {string} * @memberof UserProfileApiDto */ 'postalCode'?: string | null; /** * * @type {string} * @memberof UserProfileApiDto */ 'country'?: string | null; }