UNPKG

ch-admin-api-client-typescript

Version:
155 lines 3.61 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 { DoctorPrefix } from './doctor-prefix'; import { FeatureInputModel } from './feature-input-model'; import { MediaModel } from './media-model'; /** * * @export * @interface CreateDoctorAffiliationCommand */ export interface CreateDoctorAffiliationCommand { /** * * @type {string} * @memberof CreateDoctorAffiliationCommand */ 'doctorId'?: string; /** * * @type {string} * @memberof CreateDoctorAffiliationCommand */ 'hospitalId'?: string; /** * * @type {string} * @memberof CreateDoctorAffiliationCommand */ 'name'?: string | null; /** * * @type {string} * @memberof CreateDoctorAffiliationCommand */ 'languageCode'?: string | null; /** * * @type {string} * @memberof CreateDoctorAffiliationCommand */ 'description'?: string | null; /** * * @type {string} * @memberof CreateDoctorAffiliationCommand */ 'overview'?: string | null; /** * * @type {string} * @memberof CreateDoctorAffiliationCommand */ 'content'?: string | null; /** * * @type {string} * @memberof CreateDoctorAffiliationCommand */ 'customStyle'?: string | null; /** * * @type {number} * @memberof CreateDoctorAffiliationCommand */ 'order'?: number; /** * * @type {string} * @memberof CreateDoctorAffiliationCommand */ 'photo'?: string | null; /** * * @type {string} * @memberof CreateDoctorAffiliationCommand */ 'photoThumbnail'?: string | null; /** * * @type {string} * @memberof CreateDoctorAffiliationCommand */ 'background'?: string | null; /** * * @type {string} * @memberof CreateDoctorAffiliationCommand */ 'backgroundThumbnail'?: string | null; /** * * @type {string} * @memberof CreateDoctorAffiliationCommand */ 'signature'?: string | null; /** * * @type {boolean} * @memberof CreateDoctorAffiliationCommand */ 'consultationEnabled'?: boolean | null; /** * * @type {number} * @memberof CreateDoctorAffiliationCommand */ 'consultationFee'?: number | null; /** * * @type {FeatureInputModel} * @memberof CreateDoctorAffiliationCommand */ 'feature'?: FeatureInputModel; /** * * @type {string} * @memberof CreateDoctorAffiliationCommand */ 'jobTitle'?: string | null; /** * * @type {string} * @memberof CreateDoctorAffiliationCommand */ 'jobPosition'?: string | null; /** * * @type {DoctorPrefix} * @memberof CreateDoctorAffiliationCommand */ 'prefix'?: DoctorPrefix; /** * * @type {Array<MediaModel>} * @memberof CreateDoctorAffiliationCommand */ 'medias'?: Array<MediaModel> | null; /** * * @type {AppointmentOptionModel} * @memberof CreateDoctorAffiliationCommand */ 'appointmentOption'?: AppointmentOptionModel; } //# sourceMappingURL=create-doctor-affiliation-command.d.ts.map