UNPKG

ch-admin-api-client-typescript

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