UNPKG

ch-admin-api-client-typescript

Version:
110 lines 2.3 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 { MediaModel } from './media-model'; /** * * @export * @interface UpdateCountryCommand */ export interface UpdateCountryCommand { /** * * @type {string} * @memberof UpdateCountryCommand */ 'name'?: string | null; /** * * @type {string} * @memberof UpdateCountryCommand */ 'slug'?: string | null; /** * * @type {string} * @memberof UpdateCountryCommand */ 'countryCode'?: string | null; /** * * @type {string} * @memberof UpdateCountryCommand */ 'logo'?: string | null; /** * * @type {string} * @memberof UpdateCountryCommand */ 'background'?: string | null; /** * * @type {string} * @memberof UpdateCountryCommand */ 'backgroundThumbnail'?: string | null; /** * * @type {number} * @memberof UpdateCountryCommand */ 'order'?: number; /** * * @type {string} * @memberof UpdateCountryCommand */ 'description'?: string | null; /** * * @type {string} * @memberof UpdateCountryCommand */ 'overview'?: string | null; /** * * @type {string} * @memberof UpdateCountryCommand */ 'content'?: string | null; /** * * @type {string} * @memberof UpdateCountryCommand */ 'markdown'?: string | null; /** * * @type {string} * @memberof UpdateCountryCommand */ 'customStyle'?: string | null; /** * * @type {string} * @memberof UpdateCountryCommand */ 'languageCode'?: string | null; /** * * @type {boolean} * @memberof UpdateCountryCommand */ 'confirmed'?: boolean; /** * * @type {Array<MediaModel>} * @memberof UpdateCountryCommand */ 'medias'?: Array<MediaModel> | null; } //# sourceMappingURL=update-country-command.d.ts.map