/**
 * 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 { FeatureInputModel } from './feature-input-model';
import { MediaModel } from './media-model';
import { Procedure } from './procedure';
import { TranslationRedirectOptionModel } from './translation-redirect-option-model';
/**
 *
 * @export
 * @interface CreateHospitalServiceCommand
 */
export interface CreateHospitalServiceCommand {
    /**
     *
     * @type {string}
     * @memberof CreateHospitalServiceCommand
     */
    'languageCode'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateHospitalServiceCommand
     */
    'name'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateHospitalServiceCommand
     */
    'title'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateHospitalServiceCommand
     */
    'description'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateHospitalServiceCommand
     */
    'overview'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateHospitalServiceCommand
     */
    'content'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateHospitalServiceCommand
     */
    'markdown'?: string | null;
    /**
     *
     * @type {TranslationRedirectOptionModel}
     * @memberof CreateHospitalServiceCommand
     */
    'redirectOption'?: TranslationRedirectOptionModel;
    /**
     *
     * @type {string}
     * @memberof CreateHospitalServiceCommand
     */
    'customStyle'?: string | null;
    /**
     *
     * @type {number}
     * @memberof CreateHospitalServiceCommand
     */
    'minPrice'?: number;
    /**
     *
     * @type {number}
     * @memberof CreateHospitalServiceCommand
     */
    'maxPrice'?: number;
    /**
     *
     * @type {boolean}
     * @memberof CreateHospitalServiceCommand
     */
    'priceRequest'?: boolean;
    /**
     *
     * @type {Procedure}
     * @memberof CreateHospitalServiceCommand
     */
    'procedure'?: Procedure;
    /**
     *
     * @type {string}
     * @memberof CreateHospitalServiceCommand
     */
    'serviceCategoryId'?: string | null;
    /**
     *
     * @type {number}
     * @memberof CreateHospitalServiceCommand
     */
    'order'?: number | null;
    /**
     *
     * @type {string}
     * @memberof CreateHospitalServiceCommand
     */
    'photo'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateHospitalServiceCommand
     */
    'photoThumbnail'?: string | null;
    /**
     *
     * @type {FeatureInputModel}
     * @memberof CreateHospitalServiceCommand
     */
    'feature'?: FeatureInputModel;
    /**
     *
     * @type {AppointmentOptionModel}
     * @memberof CreateHospitalServiceCommand
     */
    'appointmentOption'?: AppointmentOptionModel;
    /**
     *
     * @type {Array<MediaModel>}
     * @memberof CreateHospitalServiceCommand
     */
    'medias'?: Array<MediaModel> | null;
}
//# sourceMappingURL=create-hospital-service-command.d.ts.map