UNPKG

ch-api-client-typescript2

Version:
371 lines 8.77 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 { BankAccountInfoModel } from './bank-account-info-model'; import { DoctorLanguageModel } from './doctor-language-model'; import { DoctorPrefix } from './doctor-prefix'; import { DoctorSpecialtyItemModel } from './doctor-specialty-item-model'; import { FeatureModel } from './feature-model'; import { FrequentlyAskedQuestionsModel } from './frequently-asked-questions-model'; import { Gender } from './gender'; import { HospitalContactItemModel } from './hospital-contact-item-model'; import { HospitalLanguageItemModel } from './hospital-language-item-model'; import { LocalizedUrlMetadataModel } from './localized-url-metadata-model'; import { LocalizedUrlModel } from './localized-url-model'; import { LocationModel } from './location-model'; import { MarketingType } from './marketing-type'; import { MediaModel } from './media-model'; import { PaymentMethod } from './payment-method'; /** * * @export * @interface DoctorAffiliationModel */ export interface DoctorAffiliationModel { /** * * @type {string} * @memberof DoctorAffiliationModel */ 'id'?: string; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'languageCode'?: string | null; /** * * @type {DoctorPrefix} * @memberof DoctorAffiliationModel */ 'prefix'?: DoctorPrefix; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'photo'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'photoThumbnail'?: string | null; /** * * @type {number} * @memberof DoctorAffiliationModel */ 'order'?: number; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'name'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'title'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'slug'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'jobTitle'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'jobPosition'?: string | null; /** * * @type {boolean} * @memberof DoctorAffiliationModel */ 'confirmed'?: boolean; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'hospitalId'?: string; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'hospitalName'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'hospitalSlug'?: string | null; /** * * @type {Array<DoctorSpecialtyItemModel>} * @memberof DoctorAffiliationModel */ 'specialties'?: Array<DoctorSpecialtyItemModel> | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'specialtiesSummarized'?: string | null; /** * * @type {FeatureModel} * @memberof DoctorAffiliationModel */ 'feature'?: FeatureModel; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'countryId'?: string | null; /** * * @type {MarketingType} * @memberof DoctorAffiliationModel */ 'marketingType'?: MarketingType; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'appointmentCurrency'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'hospitalLogo'?: string | null; /** * * @type {number} * @memberof DoctorAffiliationModel */ 'hospitalBedsCount'?: number | null; /** * * @type {number} * @memberof DoctorAffiliationModel */ 'hospitalOperationsPerYear'?: number | null; /** * * @type {number} * @memberof DoctorAffiliationModel */ 'hospitalFoundationYear'?: number | null; /** * * @type {number} * @memberof DoctorAffiliationModel */ 'hospitalMedicalStaffCount'?: number | null; /** * * @type {number} * @memberof DoctorAffiliationModel */ 'hospitalDoctorCount'?: number | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'hospitalWebsiteUrl'?: string | null; /** * * @type {LocationModel} * @memberof DoctorAffiliationModel */ 'hospitalLocation'?: LocationModel; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'doctorId'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'doctorLicense'?: string | null; /** * * @type {Gender} * @memberof DoctorAffiliationModel */ 'gender'?: Gender; /** * * @type {boolean} * @memberof DoctorAffiliationModel */ 'consultationEnabled'?: boolean | null; /** * * @type {number} * @memberof DoctorAffiliationModel */ 'consultationFee'?: number | null; /** * * @type {Date} * @memberof DoctorAffiliationModel */ 'startPracticeDate'?: Date | null; /** * * @type {number} * @memberof DoctorAffiliationModel */ 'yearOfExperience'?: number | null; /** * * @type {AppointmentOptionModel} * @memberof DoctorAffiliationModel */ 'appointmentOption'?: AppointmentOptionModel; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'description'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'overview'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'content'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'markdown'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'background'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'backgroundThumbnail'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'customStyle'?: string | null; /** * * @type {Array<LocalizedUrlModel>} * @memberof DoctorAffiliationModel */ 'localizedUrls'?: Array<LocalizedUrlModel> | null; /** * * @type {Array<LocalizedUrlMetadataModel>} * @memberof DoctorAffiliationModel */ 'localizedMetadatas'?: Array<LocalizedUrlMetadataModel> | null; /** * * @type {Array<MediaModel>} * @memberof DoctorAffiliationModel */ 'medias'?: Array<MediaModel> | null; /** * * @type {Array<DoctorLanguageModel>} * @memberof DoctorAffiliationModel */ 'doctorLanguages'?: Array<DoctorLanguageModel> | null; /** * * @type {Array<HospitalContactItemModel>} * @memberof DoctorAffiliationModel */ 'hospitalContacts'?: Array<HospitalContactItemModel> | null; /** * * @type {Array<BankAccountInfoModel>} * @memberof DoctorAffiliationModel */ 'hospitalBankAccountInfos'?: Array<BankAccountInfoModel> | null; /** * * @type {Array<PaymentMethod>} * @memberof DoctorAffiliationModel */ 'hospitalPaymentMethods'?: Array<PaymentMethod> | null; /** * * @type {FeatureModel} * @memberof DoctorAffiliationModel */ 'hospitalFeature'?: FeatureModel; /** * * @type {Array<HospitalLanguageItemModel>} * @memberof DoctorAffiliationModel */ 'hospitalLanguages'?: Array<HospitalLanguageItemModel> | null; /** * * @type {FrequentlyAskedQuestionsModel} * @memberof DoctorAffiliationModel */ 'platformFaqs'?: FrequentlyAskedQuestionsModel; /** * * @type {FrequentlyAskedQuestionsModel} * @memberof DoctorAffiliationModel */ 'hospitalFaqs'?: FrequentlyAskedQuestionsModel; /** * * @type {boolean} * @memberof DoctorAffiliationModel */ 'isMarkedAsFavorite'?: boolean; } //# sourceMappingURL=doctor-affiliation-model.d.ts.map