UNPKG

ch-admin-api-client-typescript

Version:
93 lines 2.11 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 { HospitalBranchItemMappingModel } from './hospital-branch-item-mapping-model'; /** * * @export * @interface HospitalBranchModel */ export interface HospitalBranchModel { /** * * @type {string} * @memberof HospitalBranchModel */ 'id'?: string; /** * * @type {string} * @memberof HospitalBranchModel */ 'languageCode'?: string | null; /** * * @type {string} * @memberof HospitalBranchModel */ 'hospitalGroupId'?: string; /** * * @type {number} * @memberof HospitalBranchModel */ 'order'?: number; /** * * @type {string} * @memberof HospitalBranchModel */ 'name'?: string | null; /** * * @type {boolean} * @memberof HospitalBranchModel */ 'isConfirmed'?: boolean; /** * * @type {AuditableEntityModel} * @memberof HospitalBranchModel */ 'auditableEntity'?: AuditableEntityModel; /** * * @type {string} * @memberof HospitalBranchModel */ 'hospitalGroupName'?: string | null; /** * * @type {string} * @memberof HospitalBranchModel */ 'description'?: string | null; /** * * @type {string} * @memberof HospitalBranchModel */ 'overview'?: string | null; /** * * @type {string} * @memberof HospitalBranchModel */ 'content'?: string | null; /** * * @type {Array<HospitalBranchItemMappingModel>} * @memberof HospitalBranchModel */ 'hospitals'?: Array<HospitalBranchItemMappingModel> | null; } //# sourceMappingURL=hospital-branch-model.d.ts.map