/**
 * CloudHospital Api
 * CloudHospital application with Swagger, Swashbuckle, and API versioning.
 *
 * The version of the OpenAPI document: 2
 * 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 { FeatureModel } from './feature-model';
import { FrequentlyAskedQuestionsModel } from './frequently-asked-questions-model';
import { HospitalContactItemModel } from './hospital-contact-item-model';
import { HospitalRatingItemModel } from './hospital-rating-item-model';
import { HospitalSpecialtySimpleItemModel } from './hospital-specialty-simple-item-model';
import { HospitalTagItemModel } from './hospital-tag-item-model';
import { LocationModel } from './location-model';
import { MediaModel } from './media-model';
import { WorkingDayModel } from './working-day-model';
/**
 *
 * @export
 * @interface HospitalSummaryModel
 */
export interface HospitalSummaryModel {
    /**
     *
     * @type {string}
     * @memberof HospitalSummaryModel
     */
    'id'?: string;
    /**
     *
     * @type {string}
     * @memberof HospitalSummaryModel
     */
    'languageCode'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalSummaryModel
     */
    'name'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalSummaryModel
     */
    'slug'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalSummaryModel
     */
    'slogan'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalSummaryModel
     */
    'description'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalSummaryModel
     */
    'logo'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalSummaryModel
     */
    'websiteUrl'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalSummaryModel
     */
    'timeZone'?: string | null;
    /**
     *
     * @type {LocationModel}
     * @memberof HospitalSummaryModel
     */
    'location'?: LocationModel;
    /**
     *
     * @type {Array<HospitalContactItemModel>}
     * @memberof HospitalSummaryModel
     */
    'contacts'?: Array<HospitalContactItemModel> | null;
    /**
     *
     * @type {Array<WorkingDayModel>}
     * @memberof HospitalSummaryModel
     */
    'hospitalWorkingDays'?: Array<WorkingDayModel> | null;
    /**
     *
     * @type {Array<HospitalSpecialtySimpleItemModel>}
     * @memberof HospitalSummaryModel
     */
    'specialties'?: Array<HospitalSpecialtySimpleItemModel> | null;
    /**
     *
     * @type {Array<MediaModel>}
     * @memberof HospitalSummaryModel
     */
    'medias'?: Array<MediaModel> | null;
    /**
     *
     * @type {Array<HospitalTagItemModel>}
     * @memberof HospitalSummaryModel
     */
    'tags'?: Array<HospitalTagItemModel> | null;
    /**
     *
     * @type {FeatureModel}
     * @memberof HospitalSummaryModel
     */
    'feature'?: FeatureModel;
    /**
     *
     * @type {FrequentlyAskedQuestionsModel}
     * @memberof HospitalSummaryModel
     */
    'hospitalFaqs'?: FrequentlyAskedQuestionsModel;
    /**
     *
     * @type {Array<HospitalRatingItemModel>}
     * @memberof HospitalSummaryModel
     */
    'hospitalRatings'?: Array<HospitalRatingItemModel> | null;
}
//# sourceMappingURL=hospital-summary-model.d.ts.map