UNPKG

ch-admin-api-client-typescript

Version:
105 lines 2.27 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 { HospitalContactItemModel } from './hospital-contact-item-model'; import { LocationModel } from './location-model'; /** * * @export * @interface HospitalSimpleModel */ export interface HospitalSimpleModel { /** * * @type {string} * @memberof HospitalSimpleModel */ 'id'?: string; /** * * @type {string} * @memberof HospitalSimpleModel */ 'languageCode'?: string | null; /** * * @type {string} * @memberof HospitalSimpleModel */ 'name'?: string | null; /** * * @type {string} * @memberof HospitalSimpleModel */ 'slug'?: string | null; /** * * @type {boolean} * @memberof HospitalSimpleModel */ 'confirmed'?: boolean; /** * * @type {boolean} * @memberof HospitalSimpleModel */ 'webAppDeployed'?: boolean; /** * * @type {string} * @memberof HospitalSimpleModel */ 'logo'?: string | null; /** * * @type {string} * @memberof HospitalSimpleModel */ 'logoTransparent'?: string | null; /** * * @type {string} * @memberof HospitalSimpleModel */ 'logoWhite'?: string | null; /** * * @type {string} * @memberof HospitalSimpleModel */ 'timeZone'?: string | null; /** * * @type {string} * @memberof HospitalSimpleModel */ 'websiteUrl'?: string | null; /** * * @type {boolean} * @memberof HospitalSimpleModel */ 'isCertified'?: boolean; /** * * @type {LocationModel} * @memberof HospitalSimpleModel */ 'location'?: LocationModel; /** * * @type {Array<HospitalContactItemModel>} * @memberof HospitalSimpleModel */ 'contacts'?: Array<HospitalContactItemModel> | null; } //# sourceMappingURL=hospital-simple-model.d.ts.map