UNPKG

ch-admin-api-client-typescript

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