UNPKG

ch-admin-api-client-typescript

Version:
229 lines 4.94 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 { AppointmentOptionModel } from './appointment-option-model'; import { AuditableEntityModel } from './auditable-entity-model'; import { DoctorPrefix } from './doctor-prefix'; import { FeatureModel } from './feature-model'; import { MarketingType } from './marketing-type'; import { MediaModel } from './media-model'; /** * * @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 */ 'hospitalId'?: string; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'hospitalName'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'hospitalSlug'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'countryId'?: string; /** * * @type {MarketingType} * @memberof DoctorAffiliationModel */ 'marketingType'?: MarketingType; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'doctorId'?: string; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'doctorLicense'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'name'?: 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 */ 'photo'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'photoThumbnail'?: string | null; /** * * @type {boolean} * @memberof DoctorAffiliationModel */ 'consultationEnabled'?: boolean | null; /** * * @type {number} * @memberof DoctorAffiliationModel */ 'consultationFee'?: number | null; /** * * @type {number} * @memberof DoctorAffiliationModel */ 'order'?: number; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'appointmentCurrency'?: string | null; /** * * @type {AppointmentOptionModel} * @memberof DoctorAffiliationModel */ 'appointmentOption'?: AppointmentOptionModel; /** * * @type {AuditableEntityModel} * @memberof DoctorAffiliationModel */ 'auditableEntity'?: AuditableEntityModel; /** * * @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 {boolean} * @memberof DoctorAffiliationModel */ 'isTranslating'?: boolean; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'background'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'backgroundThumbnail'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'signature'?: string | null; /** * * @type {string} * @memberof DoctorAffiliationModel */ 'customStyle'?: string | null; /** * * @type {Array<MediaModel>} * @memberof DoctorAffiliationModel */ 'medias'?: Array<MediaModel> | null; /** * * @type {FeatureModel} * @memberof DoctorAffiliationModel */ 'feature'?: FeatureModel; } //# sourceMappingURL=doctor-affiliation-model.d.ts.map