UNPKG

ch-admin-api-client-typescript

Version:
155 lines 3.6 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 { AppointmentOptionInputModel } from './appointment-option-input-model'; import { DoctorPrefix } from './doctor-prefix'; import { FeatureInputModel } from './feature-input-model'; import { MediaModel } from './media-model'; /** * * @export * @interface PatchDoctorAffiliationCommand */ export interface PatchDoctorAffiliationCommand { /** * * @type {string} * @memberof PatchDoctorAffiliationCommand */ 'languageCode'?: string | null; /** * * @type {string} * @memberof PatchDoctorAffiliationCommand */ 'name'?: string | null; /** * * @type {string} * @memberof PatchDoctorAffiliationCommand */ 'slug'?: string | null; /** * * @type {string} * @memberof PatchDoctorAffiliationCommand */ 'title'?: string | null; /** * * @type {string} * @memberof PatchDoctorAffiliationCommand */ 'description'?: string | null; /** * * @type {string} * @memberof PatchDoctorAffiliationCommand */ 'overview'?: string | null; /** * * @type {string} * @memberof PatchDoctorAffiliationCommand */ 'content'?: string | null; /** * * @type {string} * @memberof PatchDoctorAffiliationCommand */ 'markdown'?: string | null; /** * * @type {string} * @memberof PatchDoctorAffiliationCommand */ 'customStyle'?: string | null; /** * * @type {number} * @memberof PatchDoctorAffiliationCommand */ 'order'?: number | null; /** * * @type {string} * @memberof PatchDoctorAffiliationCommand */ 'photo'?: string | null; /** * * @type {string} * @memberof PatchDoctorAffiliationCommand */ 'photoThumbnail'?: string | null; /** * * @type {string} * @memberof PatchDoctorAffiliationCommand */ 'background'?: string | null; /** * * @type {string} * @memberof PatchDoctorAffiliationCommand */ 'backgroundThumbnail'?: string | null; /** * * @type {string} * @memberof PatchDoctorAffiliationCommand */ 'signature'?: string | null; /** * * @type {boolean} * @memberof PatchDoctorAffiliationCommand */ 'confirmed'?: boolean | null; /** * * @type {FeatureInputModel} * @memberof PatchDoctorAffiliationCommand */ 'feature'?: FeatureInputModel; /** * * @type {string} * @memberof PatchDoctorAffiliationCommand */ 'jobTitle'?: string | null; /** * * @type {string} * @memberof PatchDoctorAffiliationCommand */ 'jobPosition'?: string | null; /** * * @type {DoctorPrefix} * @memberof PatchDoctorAffiliationCommand */ 'prefix'?: DoctorPrefix; /** * * @type {Array<MediaModel>} * @memberof PatchDoctorAffiliationCommand */ 'medias'?: Array<MediaModel> | null; /** * * @type {AppointmentOptionInputModel} * @memberof PatchDoctorAffiliationCommand */ 'appointmentOption'?: AppointmentOptionInputModel; } //# sourceMappingURL=patch-doctor-affiliation-command.d.ts.map