UNPKG

ch-admin-api-client-typescript

Version:
143 lines 3.31 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'; import { Procedure } from './procedure'; /** * * @export * @interface UpdateHospitalServiceCommand */ export interface UpdateHospitalServiceCommand { /** * * @type {string} * @memberof UpdateHospitalServiceCommand */ 'name'?: string | null; /** * * @type {string} * @memberof UpdateHospitalServiceCommand */ 'slug'?: string | null; /** * * @type {string} * @memberof UpdateHospitalServiceCommand */ 'description'?: string | null; /** * * @type {string} * @memberof UpdateHospitalServiceCommand */ 'overview'?: string | null; /** * * @type {string} * @memberof UpdateHospitalServiceCommand */ 'content'?: string | null; /** * * @type {string} * @memberof UpdateHospitalServiceCommand */ 'markdown'?: string | null; /** * * @type {string} * @memberof UpdateHospitalServiceCommand */ 'customStyle'?: string | null; /** * * @type {number} * @memberof UpdateHospitalServiceCommand */ 'minPrice'?: number | null; /** * * @type {number} * @memberof UpdateHospitalServiceCommand */ 'maxPrice'?: number | null; /** * * @type {boolean} * @memberof UpdateHospitalServiceCommand */ 'priceReuqest'?: boolean | null; /** * * @type {Procedure} * @memberof UpdateHospitalServiceCommand */ 'procedure'?: Procedure; /** * * @type {string} * @memberof UpdateHospitalServiceCommand */ 'serviceCategoryId'?: string | null; /** * * @type {number} * @memberof UpdateHospitalServiceCommand */ 'order'?: number; /** * * @type {string} * @memberof UpdateHospitalServiceCommand */ 'languageCode'?: string | null; /** * * @type {boolean} * @memberof UpdateHospitalServiceCommand */ 'confirmed'?: boolean; /** * * @type {string} * @memberof UpdateHospitalServiceCommand */ 'photo'?: string | null; /** * * @type {string} * @memberof UpdateHospitalServiceCommand */ 'photoThumbnail'?: string | null; /** * * @type {FeatureInputModel} * @memberof UpdateHospitalServiceCommand */ 'feature'?: FeatureInputModel; /** * * @type {AppointmentOptionInputModel} * @memberof UpdateHospitalServiceCommand */ 'appointmentOption'?: AppointmentOptionInputModel; /** * * @type {Array<MediaModel>} * @memberof UpdateHospitalServiceCommand */ 'medias'?: Array<MediaModel> | null; } //# sourceMappingURL=update-hospital-service-command.d.ts.map