UNPKG

ch-admin-api-client-typescript

Version:
86 lines 1.77 kB
/** * 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 { AuditableEntity } from './auditable-entity'; /** * * @export * @interface CountryItemModel */ export interface CountryItemModel { /** * * @type {string} * @memberof CountryItemModel */ 'id'?: string; /** * * @type {string} * @memberof CountryItemModel */ 'languageCode'?: string | null; /** * * @type {number} * @memberof CountryItemModel */ 'order'?: number; /** * * @type {string} * @memberof CountryItemModel */ 'name'?: string | null; /** * * @type {string} * @memberof CountryItemModel */ 'slug'?: 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 {AuditableEntity} * @memberof CountryItemModel */ 'auditableEntity'?: AuditableEntity; } //# sourceMappingURL=country-item-model.d.ts.map