UNPKG

ch-admin-api-client-typescript

Version:
124 lines 2.93 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 { FeatureInputModel } from './feature-input-model'; import { MediaModel } from './media-model'; /** * * @export * @interface UpdateHospitalSpecialtyCommand */ export interface UpdateHospitalSpecialtyCommand { /** * * @type {string} * @memberof UpdateHospitalSpecialtyCommand */ 'languageCode'?: string | null; /** * * @type {string} * @memberof UpdateHospitalSpecialtyCommand */ 'name'?: string | null; /** * * @type {string} * @memberof UpdateHospitalSpecialtyCommand */ 'slug'?: string | null; /** * * @type {string} * @memberof UpdateHospitalSpecialtyCommand */ 'description'?: string | null; /** * * @type {string} * @memberof UpdateHospitalSpecialtyCommand */ 'overview'?: string | null; /** * * @type {string} * @memberof UpdateHospitalSpecialtyCommand */ 'content'?: string | null; /** * * @type {string} * @memberof UpdateHospitalSpecialtyCommand */ 'markdown'?: string | null; /** * * @type {string} * @memberof UpdateHospitalSpecialtyCommand */ 'customStyle'?: string | null; /** * * @type {number} * @memberof UpdateHospitalSpecialtyCommand */ 'order'?: number; /** * * @type {string} * @memberof UpdateHospitalSpecialtyCommand */ 'photo'?: string | null; /** * * @type {string} * @memberof UpdateHospitalSpecialtyCommand */ 'photoThumbnail'?: string | null; /** * * @type {string} * @memberof UpdateHospitalSpecialtyCommand */ 'background'?: string | null; /** * * @type {string} * @memberof UpdateHospitalSpecialtyCommand */ 'backgroundThumbnail'?: string | null; /** * * @type {boolean} * @memberof UpdateHospitalSpecialtyCommand */ 'confirmed'?: boolean; /** * * @type {FeatureInputModel} * @memberof UpdateHospitalSpecialtyCommand */ 'feature'?: FeatureInputModel; /** * * @type {AppointmentOptionInputModel} * @memberof UpdateHospitalSpecialtyCommand */ 'appointmentOption'?: AppointmentOptionInputModel; /** * * @type {Array<MediaModel>} * @memberof UpdateHospitalSpecialtyCommand */ 'medias'?: Array<MediaModel> | null; } //# sourceMappingURL=update-hospital-specialty-command.d.ts.map