UNPKG

ch-api-client-typescript2

Version:
193 lines 4.14 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 { AuditableEntityModel } from './auditable-entity-model'; import { DealPackageMappingModel } from './deal-package-mapping-model'; import { DealServiceMappingModel } from './deal-service-mapping-model'; import { LocationModel } from './location-model'; import { MarketingType } from './marketing-type'; /** * * @export * @interface DealItemModel */ export interface DealItemModel { /** * * @type {string} * @memberof DealItemModel */ 'id'?: string; /** * * @type {string} * @memberof DealItemModel */ 'languageCode'?: string | null; /** * * @type {string} * @memberof DealItemModel */ 'name'?: string | null; /** * * @type {string} * @memberof DealItemModel */ 'slug'?: string | null; /** * * @type {string} * @memberof DealItemModel */ 'description'?: string | null; /** * * @type {boolean} * @memberof DealItemModel */ 'confirmed'?: boolean; /** * * @type {string} * @memberof DealItemModel */ 'hospitalId'?: string; /** * * @type {string} * @memberof DealItemModel */ 'hospitalName'?: string | null; /** * * @type {string} * @memberof DealItemModel */ 'hospitalSlug'?: string | null; /** * * @type {string} * @memberof DealItemModel */ 'hospitalLogo'?: string | null; /** * * @type {number} * @memberof DealItemModel */ 'hospitalBedsCount'?: number | null; /** * * @type {number} * @memberof DealItemModel */ 'hospitalOperationsPerYear'?: number | null; /** * * @type {number} * @memberof DealItemModel */ 'hospitalFoundationYear'?: number | null; /** * * @type {number} * @memberof DealItemModel */ 'hospitalMedicalStaffCount'?: number | null; /** * * @type {number} * @memberof DealItemModel */ 'hospitalDoctorCount'?: number | null; /** * * @type {string} * @memberof DealItemModel */ 'hospitalWebsiteUrl'?: string | null; /** * * @type {LocationModel} * @memberof DealItemModel */ 'hospitalLocation'?: LocationModel; /** * * @type {MarketingType} * @memberof DealItemModel */ 'marketingType'?: MarketingType; /** * * @type {string} * @memberof DealItemModel */ 'photo'?: string | null; /** * * @type {string} * @memberof DealItemModel */ 'photoThumbnail'?: string | null; /** * * @type {Array<DealPackageMappingModel>} * @memberof DealItemModel */ 'dealPackages'?: Array<DealPackageMappingModel> | null; /** * * @type {number} * @memberof DealItemModel */ 'dealPackagesCount'?: number; /** * * @type {number} * @memberof DealItemModel */ 'lowestPrice'?: number; /** * * @type {Array<DealServiceMappingModel>} * @memberof DealItemModel */ 'dealServices'?: Array<DealServiceMappingModel> | null; /** * * @type {number} * @memberof DealItemModel */ 'dealServicesCount'?: number; /** * * @type {number} * @memberof DealItemModel */ 'order'?: number; /** * * @type {AppointmentOptionModel} * @memberof DealItemModel */ 'appointmentOption'?: AppointmentOptionModel; /** * * @type {AuditableEntityModel} * @memberof DealItemModel */ 'auditableEntity'?: AuditableEntityModel; } //# sourceMappingURL=deal-item-model.d.ts.map