/**
 * 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';
/**
 *
 * @export
 * @interface CountryItemModel
 */
export interface CountryItemModel {
    /**
     *
     * @type {string}
     * @memberof CountryItemModel
     */
    'id'?: string;
    /**
     *
     * @type {string}
     * @memberof CountryItemModel
     */
    'languageCode'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CountryItemModel
     */
    'name'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CountryItemModel
     */
    'slug'?: string | null;
    /**
     *
     * @type {boolean}
     * @memberof CountryItemModel
     */
    'confirmed'?: boolean;
    /**
     *
     * @type {boolean}
     * @memberof CountryItemModel
     */
    'isTranslating'?: boolean;
    /**
     *
     * @type {number}
     * @memberof CountryItemModel
     */
    'order'?: number;
    /**
     *
     * @type {string}
     * @memberof CountryItemModel
     */
    'countryCode'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CountryItemModel
     */
    'logo'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CountryItemModel
     */
    'background'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CountryItemModel
     */
    'backgroundThumbnail'?: string | null;
    /**
     *
     * @type {AuditableEntityModel}
     * @memberof CountryItemModel
     */
    'auditableEntity'?: AuditableEntityModel;
}
//# sourceMappingURL=country-item-model.d.ts.map