UNPKG

ch-api-client-typescript2

Version:
118 lines 2.61 kB
/** * 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'; /** * * @export * @interface CountryItemModel */ export interface CountryItemModel { /** * * @type {string} * @memberof CountryItemModel */ 'id'?: string; /** * * @type {string} * @memberof CountryItemModel */ 'languageCode'?: string | null; /** * * @type {number} * @memberof CountryItemModel */ 'hospitalsCount'?: number; /** * * @type {number} * @memberof CountryItemModel */ 'doctorsCount'?: number; /** * * @type {number} * @memberof CountryItemModel */ 'dealsCount'?: number; /** * * @type {string} * @memberof CountryItemModel */ 'name'?: string | null; /** * * @type {string} * @memberof CountryItemModel */ 'slug'?: string | null; /** * * @type {string} * @memberof CountryItemModel */ 'overview'?: string | null; /** * * @type {boolean} * @memberof CountryItemModel */ 'confirmed'?: boolean; /** * * @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 {Array<CountryLanguageItemModel>} * @memberof CountryItemModel */ 'countryLanguages'?: Array<CountryLanguageItemModel> | null; /** * * @type {Array<CountryCurrencyItemModel>} * @memberof CountryItemModel */ 'countryCurrencies'?: Array<CountryCurrencyItemModel> | null; /** * * @type {AuditableEntityModel} * @memberof CountryItemModel */ 'auditableEntity'?: AuditableEntityModel; } //# sourceMappingURL=country-item-model.d.ts.map