UNPKG

ch-admin-api-client-typescript

Version:
111 lines 2.28 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 { AuditableEntityModel } from './auditable-entity-model'; import { Gender } from './gender'; /** * * @export * @interface ManagerItemModel */ export interface ManagerItemModel { /** * * @type {string} * @memberof ManagerItemModel */ 'id'?: string; /** * * @type {string} * @memberof ManagerItemModel */ 'userName'?: string | null; /** * * @type {string} * @memberof ManagerItemModel */ 'firstName'?: string | null; /** * * @type {string} * @memberof ManagerItemModel */ 'lastName'?: string | null; /** * * @type {string} * @memberof ManagerItemModel */ 'fullname'?: string | null; /** * * @type {string} * @memberof ManagerItemModel */ 'phone'?: string | null; /** * * @type {string} * @memberof ManagerItemModel */ 'email'?: string | null; /** * * @type {string} * @memberof ManagerItemModel */ 'photo'?: string | null; /** * * @type {string} * @memberof ManagerItemModel */ 'photoThumbnail'?: string | null; /** * * @type {Gender} * @memberof ManagerItemModel */ 'gender'?: Gender; /** * * @type {Date} * @memberof ManagerItemModel */ 'dateOfBirth'?: Date | null; /** * * @type {string} * @memberof ManagerItemModel */ 'timeZone'?: string | null; /** * * @type {string} * @memberof ManagerItemModel */ 'communicationUserId'?: string | null; /** * * @type {AuditableEntityModel} * @memberof ManagerItemModel */ 'auditableEntity'?: AuditableEntityModel; /** * * @type {number} * @memberof ManagerItemModel */ 'affiliationsCount'?: number; } //# sourceMappingURL=manager-item-model.d.ts.map