UNPKG

ch-admin-api-client-typescript

Version:
159 lines 3.35 kB
/** * CloudHospital Admin Api * CloudHospital application with Swagger, Swashbuckle, and API versioning. * * The version of the OpenAPI document: 1 * Contact: developer@icloudhospital.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Gender } from './gender'; import { UserLanguageInputModel } from './user-language-input-model'; /** * * @export * @interface CreateUserCommand */ export interface CreateUserCommand { /** * * @type {string} * @memberof CreateUserCommand */ 'email'?: string | null; /** * * @type {string} * @memberof CreateUserCommand */ 'firstName'?: string | null; /** * * @type {string} * @memberof CreateUserCommand */ 'lastName'?: string | null; /** * * @type {string} * @memberof CreateUserCommand */ 'phone'?: string | null; /** * * @type {string} * @memberof CreateUserCommand */ 'photo'?: string | null; /** * * @type {string} * @memberof CreateUserCommand */ 'photoThumbnail'?: string | null; /** * * @type {Gender} * @memberof CreateUserCommand */ 'gender'?: Gender; /** * * @type {Date} * @memberof CreateUserCommand */ 'dateOfBirth'?: Date | null; /** * * @type {string} * @memberof CreateUserCommand */ 'timeZone'?: string | null; /** * * @type {string} * @memberof CreateUserCommand */ 'languageCode'?: string | null; /** * * @type {string} * @memberof CreateUserCommand */ 'name'?: string | null; /** * * @type {string} * @memberof CreateUserCommand */ 'jobTitle'?: string | null; /** * * @type {string} * @memberof CreateUserCommand */ 'jobPosition'?: string | null; /** * * @type {Date} * @memberof CreateUserCommand */ 'startPracticeDate'?: Date | null; /** * * @type {boolean} * @memberof CreateUserCommand */ 'consultationEnabled'?: boolean | null; /** * * @type {number} * @memberof CreateUserCommand */ 'consultationFee'?: number | null; /** * * @type {string} * @memberof CreateUserCommand */ 'license'?: string | null; /** * * @type {Array<string>} * @memberof CreateUserCommand */ 'roles'?: Array<string> | null; /** * * @type {Array<UserLanguageInputModel>} * @memberof CreateUserCommand */ 'userLanguages'?: Array<UserLanguageInputModel> | null; /** * * @type {boolean} * @memberof CreateUserCommand */ 'createIdentityAccount'?: boolean | null; /** * * @type {Array<string>} * @memberof CreateUserCommand */ 'managerAffiliations'?: Array<string> | null; /** * * @type {Array<string>} * @memberof CreateUserCommand */ 'patientAffiliations'?: Array<string> | null; /** * * @type {Array<string>} * @memberof CreateUserCommand */ 'doctorAffiliations'?: Array<string> | null; } //# sourceMappingURL=create-user-command.d.ts.map