/**
 * 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 { AuditableEntityModel } from './auditable-entity-model';
import { CountryCurrencyItemModel } from './country-currency-item-model';
import { CountryLanguageItemModel } from './country-language-item-model';
import { LocalizedUrlMetadataModel } from './localized-url-metadata-model';
import { LocalizedUrlModel } from './localized-url-model';
import { MediaModel } from './media-model';
/**
 *
 * @export
 * @interface CountryModel
 */
export interface CountryModel {
    /**
     *
     * @type {string}
     * @memberof CountryModel
     */
    'id'?: string;
    /**
     *
     * @type {string}
     * @memberof CountryModel
     */
    'languageCode'?: string | null;
    /**
     *
     * @type {number}
     * @memberof CountryModel
     */
    'hospitalsCount'?: number;
    /**
     *
     * @type {number}
     * @memberof CountryModel
     */
    'doctorsCount'?: number;
    /**
     *
     * @type {number}
     * @memberof CountryModel
     */
    'dealsCount'?: number;
    /**
     *
     * @type {string}
     * @memberof CountryModel
     */
    'name'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CountryModel
     */
    'slug'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CountryModel
     */
    'overview'?: string | null;
    /**
     *
     * @type {boolean}
     * @memberof CountryModel
     */
    'confirmed'?: boolean;
    /**
     *
     * @type {string}
     * @memberof CountryModel
     */
    'countryCode'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CountryModel
     */
    'logo'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CountryModel
     */
    'background'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CountryModel
     */
    'backgroundThumbnail'?: string | null;
    /**
     *
     * @type {Array<CountryLanguageItemModel>}
     * @memberof CountryModel
     */
    'countryLanguages'?: Array<CountryLanguageItemModel> | null;
    /**
     *
     * @type {Array<CountryCurrencyItemModel>}
     * @memberof CountryModel
     */
    'countryCurrencies'?: Array<CountryCurrencyItemModel> | null;
    /**
     *
     * @type {AuditableEntityModel}
     * @memberof CountryModel
     */
    'auditableEntity'?: AuditableEntityModel;
    /**
     *
     * @type {string}
     * @memberof CountryModel
     */
    'content'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CountryModel
     */
    'customStyle'?: string | null;
    /**
     *
     * @type {Array<MediaModel>}
     * @memberof CountryModel
     */
    'medias'?: Array<MediaModel> | null;
    /**
     *
     * @type {Array<LocalizedUrlModel>}
     * @memberof CountryModel
     */
    'localizedUrls'?: Array<LocalizedUrlModel> | null;
    /**
     *
     * @type {Array<LocalizedUrlMetadataModel>}
     * @memberof CountryModel
     */
    'localizedMetadatas'?: Array<LocalizedUrlMetadataModel> | null;
}
//# sourceMappingURL=country-model.d.ts.map