/** * 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 { DoctorPrefix } from './doctor-prefix'; import { DoctorSpecialtyItemModel } from './doctor-specialty-item-model'; import { FeatureModel } from './feature-model'; import { Gender } from './gender'; import { LocationModel } from './location-model'; import { MarketingType } from './marketing-type'; /** * * @export * @interface DoctorAffiliationItemModel */ export interface DoctorAffiliationItemModel { /** * * @type {string} * @memberof DoctorAffiliationItemModel */ 'id'?: string; /** * * @type {string} * @memberof DoctorAffiliationItemModel */ 'languageCode'?: string | null; /** * * @type {DoctorPrefix} * @memberof DoctorAffiliationItemModel */ 'prefix'?: DoctorPrefix; /** * * @type {string} * @memberof DoctorAffiliationItemModel */ 'photo'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationItemModel */ 'photoThumbnail'?: string | null; /** * * @type {number} * @memberof DoctorAffiliationItemModel */ 'order'?: number; /** * * @type {string} * @memberof DoctorAffiliationItemModel */ 'name'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationItemModel */ 'title'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationItemModel */ 'slug'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationItemModel */ 'jobTitle'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationItemModel */ 'jobPosition'?: string | null; /** * * @type {boolean} * @memberof DoctorAffiliationItemModel */ 'confirmed'?: boolean; /** * * @type {string} * @memberof DoctorAffiliationItemModel */ 'hospitalId'?: string; /** * * @type {string} * @memberof DoctorAffiliationItemModel */ 'hospitalName'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationItemModel */ 'hospitalSlug'?: string | null; /** * * @type {Array} * @memberof DoctorAffiliationItemModel */ 'specialties'?: Array | null; /** * * @type {string} * @memberof DoctorAffiliationItemModel */ 'specialtiesSummarized'?: string | null; /** * * @type {FeatureModel} * @memberof DoctorAffiliationItemModel */ 'feature'?: FeatureModel; /** * * @type {string} * @memberof DoctorAffiliationItemModel */ 'countryId'?: string | null; /** * * @type {MarketingType} * @memberof DoctorAffiliationItemModel */ 'marketingType'?: MarketingType; /** * * @type {string} * @memberof DoctorAffiliationItemModel */ 'appointmentCurrency'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationItemModel */ 'hospitalLogo'?: string | null; /** * * @type {number} * @memberof DoctorAffiliationItemModel */ 'hospitalBedsCount'?: number | null; /** * * @type {number} * @memberof DoctorAffiliationItemModel */ 'hospitalOperationsPerYear'?: number | null; /** * * @type {number} * @memberof DoctorAffiliationItemModel */ 'hospitalFoundationYear'?: number | null; /** * * @type {number} * @memberof DoctorAffiliationItemModel */ 'hospitalMedicalStaffCount'?: number | null; /** * * @type {number} * @memberof DoctorAffiliationItemModel */ 'hospitalDoctorCount'?: number | null; /** * * @type {string} * @memberof DoctorAffiliationItemModel */ 'hospitalWebsiteUrl'?: string | null; /** * * @type {LocationModel} * @memberof DoctorAffiliationItemModel */ 'hospitalLocation'?: LocationModel; /** * * @type {string} * @memberof DoctorAffiliationItemModel */ 'doctorId'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationItemModel */ 'doctorLicense'?: string | null; /** * * @type {Gender} * @memberof DoctorAffiliationItemModel */ 'gender'?: Gender; /** * * @type {boolean} * @memberof DoctorAffiliationItemModel */ 'consultationEnabled'?: boolean | null; /** * * @type {number} * @memberof DoctorAffiliationItemModel */ 'consultationFee'?: number | null; /** * * @type {Date} * @memberof DoctorAffiliationItemModel */ 'startPracticeDate'?: Date | null; /** * * @type {number} * @memberof DoctorAffiliationItemModel */ 'yearOfExperience'?: number | null; /** * * @type {AppointmentOptionModel} * @memberof DoctorAffiliationItemModel */ 'appointmentOption'?: AppointmentOptionModel; } //# sourceMappingURL=doctor-affiliation-item-model.d.ts.map