/**
 * 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 { AuditableEntityModel } from './auditable-entity-model';
import { MediaModel } from './media-model';
import { ReviewType } from './review-type';
/**
 *
 * @export
 * @interface ServiceReviewModel
 */
export interface ServiceReviewModel {
    /**
     *
     * @type {string}
     * @memberof ServiceReviewModel
     */
    'id'?: string;
    /**
     *
     * @type {string}
     * @memberof ServiceReviewModel
     */
    'languageCode'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ServiceReviewModel
     */
    'name'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ServiceReviewModel
     */
    'slug'?: string | null;
    /**
     *
     * @type {boolean}
     * @memberof ServiceReviewModel
     */
    'confirmed'?: boolean;
    /**
     *
     * @type {string}
     * @memberof ServiceReviewModel
     */
    'serviceId'?: string;
    /**
     *
     * @type {string}
     * @memberof ServiceReviewModel
     */
    'serviceName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ServiceReviewModel
     */
    'serviceSlug'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ServiceReviewModel
     */
    'hospitalId'?: string;
    /**
     *
     * @type {string}
     * @memberof ServiceReviewModel
     */
    'hospitalName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ServiceReviewModel
     */
    'patientId'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ServiceReviewModel
     */
    'patientName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ServiceReviewModel
     */
    'displayPatientName'?: string | null;
    /**
     *
     * @type {boolean}
     * @memberof ServiceReviewModel
     */
    'recommended'?: boolean;
    /**
     *
     * @type {number}
     * @memberof ServiceReviewModel
     */
    'rate'?: number;
    /**
     *
     * @type {number}
     * @memberof ServiceReviewModel
     */
    'order'?: number;
    /**
     *
     * @type {Date}
     * @memberof ServiceReviewModel
     */
    'surgeryDate'?: Date | null;
    /**
     *
     * @type {ReviewType}
     * @memberof ServiceReviewModel
     */
    'reviewType'?: ReviewType;
    /**
     *
     * @type {Array<MediaModel>}
     * @memberof ServiceReviewModel
     */
    'medias'?: Array<MediaModel> | null;
    /**
     *
     * @type {AuditableEntityModel}
     * @memberof ServiceReviewModel
     */
    'auditableEntity'?: AuditableEntityModel;
    /**
     *
     * @type {string}
     * @memberof ServiceReviewModel
     */
    'description'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ServiceReviewModel
     */
    'overview'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ServiceReviewModel
     */
    'content'?: string | null;
}
//# sourceMappingURL=service-review-model.d.ts.map