/**
 * 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 { AuditableEntity } from './auditable-entity';
import { MarketingType } from './marketing-type';
/**
 *
 * @export
 * @interface DealItemModel
 */
export interface DealItemModel {
    /**
     *
     * @type {string}
     * @memberof DealItemModel
     */
    'id'?: string;
    /**
     *
     * @type {string}
     * @memberof DealItemModel
     */
    'languageCode'?: string | null;
    /**
     *
     * @type {string}
     * @memberof DealItemModel
     */
    'name'?: string | null;
    /**
     *
     * @type {string}
     * @memberof DealItemModel
     */
    'slug'?: string | null;
    /**
     *
     * @type {boolean}
     * @memberof DealItemModel
     */
    'confirmed'?: boolean;
    /**
     *
     * @type {string}
     * @memberof DealItemModel
     */
    'hospitalId'?: string;
    /**
     *
     * @type {string}
     * @memberof DealItemModel
     */
    'hospitalName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof DealItemModel
     */
    'hospitalSlug'?: string | null;
    /**
     *
     * @type {MarketingType}
     * @memberof DealItemModel
     */
    'marketingType'?: MarketingType;
    /**
     *
     * @type {string}
     * @memberof DealItemModel
     */
    'photo'?: string | null;
    /**
     *
     * @type {string}
     * @memberof DealItemModel
     */
    'photoThumbnail'?: string | null;
    /**
     *
     * @type {number}
     * @memberof DealItemModel
     */
    'lowestPrice'?: number;
    /**
     *
     * @type {number}
     * @memberof DealItemModel
     */
    'dealServicesCount'?: number;
    /**
     *
     * @type {number}
     * @memberof DealItemModel
     */
    'order'?: number;
    /**
     *
     * @type {AppointmentOptionModel}
     * @memberof DealItemModel
     */
    'appointmentOption'?: AppointmentOptionModel;
    /**
     *
     * @type {AuditableEntity}
     * @memberof DealItemModel
     */
    'auditableEntity'?: AuditableEntity;
}
//# sourceMappingURL=deal-item-model.d.ts.map