UNPKG

ch-api-client-typescript2

Version:
242 lines 5.62 kB
/** * CloudHospital Api * CloudHospital application with Swagger, Swashbuckle, and API versioning. * * The version of the OpenAPI document: 2 * 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 { AppointmentOptionModel } from './appointment-option-model'; import { FeatureModel } from './feature-model'; import { GradeModel } from './grade-model'; import { HospitalAccreditationItemModel } from './hospital-accreditation-item-model'; import { HospitalContactItemModel } from './hospital-contact-item-model'; import { HospitalRatingItemModel } from './hospital-rating-item-model'; import { HospitalSpecialtySimpleItemModel } from './hospital-specialty-simple-item-model'; import { HospitalTagItemModel } from './hospital-tag-item-model'; import { LocationModel } from './location-model'; import { MarketingType } from './marketing-type'; import { MediaModel } from './media-model'; import { PaymentMethod } from './payment-method'; /** * * @export * @interface HospitalItemModel */ export interface HospitalItemModel { /** * * @type {string} * @memberof HospitalItemModel */ 'id'?: string; /** * * @type {string} * @memberof HospitalItemModel */ 'languageCode'?: string | null; /** * * @type {string} * @memberof HospitalItemModel */ 'name'?: string | null; /** * * @type {string} * @memberof HospitalItemModel */ 'slug'?: string | null; /** * * @type {string} * @memberof HospitalItemModel */ 'slogan'?: string | null; /** * * @type {boolean} * @memberof HospitalItemModel */ 'confirmed'?: boolean; /** * * @type {string} * @memberof HospitalItemModel */ 'logo'?: string | null; /** * * @type {string} * @memberof HospitalItemModel */ 'logoTransparent'?: string | null; /** * * @type {string} * @memberof HospitalItemModel */ 'logoWhite'?: string | null; /** * * @type {MarketingType} * @memberof HospitalItemModel */ 'marketingType'?: MarketingType; /** * * @type {number} * @memberof HospitalItemModel */ 'bedsCount'?: number | null; /** * * @type {number} * @memberof HospitalItemModel */ 'operationsPerYear'?: number | null; /** * * @type {number} * @memberof HospitalItemModel */ 'foundationYear'?: number | null; /** * * @type {number} * @memberof HospitalItemModel */ 'medicalStaffCount'?: number | null; /** * * @type {number} * @memberof HospitalItemModel */ 'doctorCount'?: number | null; /** * * @type {boolean} * @memberof HospitalItemModel */ 'consultationEnabled'?: boolean | null; /** * * @type {number} * @memberof HospitalItemModel */ 'consultationFee'?: number | null; /** * * @type {string} * @memberof HospitalItemModel */ 'timeZone'?: string | null; /** * * @type {string} * @memberof HospitalItemModel */ 'websiteUrl'?: string | null; /** * * @type {boolean} * @memberof HospitalItemModel */ 'paymentEnabled'?: boolean; /** * * @type {string} * @memberof HospitalItemModel */ 'appointmentCurrency'?: string | null; /** * * @type {boolean} * @memberof HospitalItemModel */ 'isCertified'?: boolean; /** * * @type {string} * @memberof HospitalItemModel * @deprecated */ 'countryId'?: string; /** * * @type {string} * @memberof HospitalItemModel */ 'specialtiesSummerized'?: string | null; /** * * @type {Array<HospitalSpecialtySimpleItemModel>} * @memberof HospitalItemModel */ 'specialties'?: Array<HospitalSpecialtySimpleItemModel> | null; /** * * @type {AppointmentOptionModel} * @memberof HospitalItemModel */ 'appointmentOption'?: AppointmentOptionModel; /** * * @type {Array<PaymentMethod>} * @memberof HospitalItemModel */ 'paymentMethods'?: Array<PaymentMethod> | null; /** * * @type {FeatureModel} * @memberof HospitalItemModel */ 'feature'?: FeatureModel; /** * * @type {GradeModel} * @memberof HospitalItemModel */ 'grade'?: GradeModel; /** * * @type {Array<HospitalAccreditationItemModel>} * @memberof HospitalItemModel */ 'accreditations'?: Array<HospitalAccreditationItemModel> | null; /** * * @type {Array<HospitalContactItemModel>} * @memberof HospitalItemModel */ 'contacts'?: Array<HospitalContactItemModel> | null; /** * * @type {Array<MediaModel>} * @memberof HospitalItemModel */ 'medias'?: Array<MediaModel> | null; /** * * @type {Array<HospitalTagItemModel>} * @memberof HospitalItemModel */ 'tags'?: Array<HospitalTagItemModel> | null; /** * * @type {Array<HospitalRatingItemModel>} * @memberof HospitalItemModel */ 'hospitalRatings'?: Array<HospitalRatingItemModel> | null; /** * * @type {LocationModel} * @memberof HospitalItemModel */ 'location'?: LocationModel; } //# sourceMappingURL=hospital-item-model.d.ts.map