/**
 * 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 { AuditableEntityModel } from './auditable-entity-model';
import { DeployStatus } from './deploy-status';
import { FeatureModel } from './feature-model';
import { GradeModel } from './grade-model';
import { HospitalContactItemModel } from './hospital-contact-item-model';
import { HospitalLanguageItemModel } from './hospital-language-item-model';
import { HospitalTagItemModel } from './hospital-tag-item-model';
import { LocationModel } from './location-model';
import { MarketingType } from './marketing-type';
import { MediaModel } from './media-model';
import { PaymentMethod } from './payment-method';
/**
 *
 * @export
 * @interface HospitalModel
 */
export interface HospitalModel {
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'id'?: string;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'languageCode'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     * @deprecated
     */
    'countryId'?: string;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'name'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'slug'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'slogan'?: string | null;
    /**
     *
     * @type {boolean}
     * @memberof HospitalModel
     */
    'confirmed'?: boolean;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'logo'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'logoTransparent'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'logoWhite'?: string | null;
    /**
     *
     * @type {MarketingType}
     * @memberof HospitalModel
     */
    'marketingType'?: MarketingType;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'timeZone'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'websiteUrl'?: string | null;
    /**
     *
     * @type {boolean}
     * @memberof HospitalModel
     */
    'isCertified'?: boolean;
    /**
     *
     * @type {AuditableEntityModel}
     * @memberof HospitalModel
     */
    'auditableEntity'?: AuditableEntityModel;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'description'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'overview'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'content'?: string | null;
    /**
     *
     * @type {boolean}
     * @memberof HospitalModel
     */
    'isTranslating'?: boolean;
    /**
     *
     * @type {number}
     * @memberof HospitalModel
     */
    'bedsCount'?: number | null;
    /**
     *
     * @type {number}
     * @memberof HospitalModel
     */
    'operationsPerYear'?: number | null;
    /**
     *
     * @type {number}
     * @memberof HospitalModel
     */
    'foundationYear'?: number | null;
    /**
     *
     * @type {number}
     * @memberof HospitalModel
     */
    'medicalStaffCount'?: number | null;
    /**
     *
     * @type {number}
     * @memberof HospitalModel
     */
    'doctorCount'?: number | null;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'contactTel'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'contactEmail'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'customStyle'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'corporateIdentificationNumber'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'gstRegistrationNumber'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'permanentAccountNumber'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'hospitalRegistrationNumber'?: string | null;
    /**
     *
     * @type {Array<HospitalLanguageItemModel>}
     * @memberof HospitalModel
     */
    'languages'?: Array<HospitalLanguageItemModel> | null;
    /**
     *
     * @type {FeatureModel}
     * @memberof HospitalModel
     */
    'feature'?: FeatureModel;
    /**
     *
     * @type {Array<MediaModel>}
     * @memberof HospitalModel
     */
    'medias'?: Array<MediaModel> | null;
    /**
     *
     * @type {LocationModel}
     * @memberof HospitalModel
     */
    'location'?: LocationModel;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'countryName'?: string | null;
    /**
     *
     * @type {Array<HospitalTagItemModel>}
     * @memberof HospitalModel
     */
    'tags'?: Array<HospitalTagItemModel> | null;
    /**
     *
     * @type {AppointmentOptionModel}
     * @memberof HospitalModel
     */
    'appointmentOption'?: AppointmentOptionModel;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'gradeId'?: string | null;
    /**
     *
     * @type {GradeModel}
     * @memberof HospitalModel
     */
    'grade'?: GradeModel;
    /**
     *
     * @type {boolean}
     * @memberof HospitalModel
     */
    'paymentEnabled'?: boolean;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'appointmentCurrency'?: string | null;
    /**
     *
     * @type {Array<PaymentMethod>}
     * @memberof HospitalModel
     */
    'paymentMethods'?: Array<PaymentMethod> | null;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'webAppId'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'appName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof HospitalModel
     */
    'hostName'?: string | null;
    /**
     *
     * @type {DeployStatus}
     * @memberof HospitalModel
     */
    'deployStatus'?: DeployStatus;
    /**
     *
     * @type {Array<string>}
     * @memberof HospitalModel
     */
    'translatedLanguages'?: Array<string> | null;
    /**
     *
     * @type {Array<HospitalContactItemModel>}
     * @memberof HospitalModel
     */
    'contacts'?: Array<HospitalContactItemModel> | null;
}
//# sourceMappingURL=hospital-model.d.ts.map