ch-admin-api-client-typescript
Version:
Openapi generated typescript-axios client for CloudHospital admin
284 lines • 6.26 kB
TypeScript
/**
* 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 { AppointmentOptionInputModel } from './appointment-option-input-model';
import { FeatureInputModel } from './feature-input-model';
import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
import { HospitalTagItemModel } from './hospital-tag-item-model';
import { LocationOptionalInputModel } from './location-optional-input-model';
import { MarketingType } from './marketing-type';
/**
*
* @export
* @interface PatchHospitalCommand
*/
export interface PatchHospitalCommand {
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'languageCode'?: string | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'name'?: string | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'title'?: string | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'slug'?: string | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'description'?: string | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'slogan'?: string | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'logo'?: string | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'logoTransparent'?: string | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'logoWhite'?: string | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'overview'?: string | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'content'?: string | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'markdown'?: string | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'customStyle'?: string | null;
/**
*
* @type {number}
* @memberof PatchHospitalCommand
*/
'bedsCount'?: number | null;
/**
*
* @type {number}
* @memberof PatchHospitalCommand
*/
'operationsPerYear'?: number | null;
/**
*
* @type {number}
* @memberof PatchHospitalCommand
*/
'foundationYear'?: number | null;
/**
*
* @type {number}
* @memberof PatchHospitalCommand
*/
'medicalStaffCount'?: number | null;
/**
*
* @type {number}
* @memberof PatchHospitalCommand
*/
'doctorCount'?: number | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
* @deprecated
*/
'countryId'?: string | null;
/**
*
* @type {MarketingType}
* @memberof PatchHospitalCommand
*/
'marketingType'?: MarketingType;
/**
*
* @type {boolean}
* @memberof PatchHospitalCommand
*/
'consultationEnabled'?: boolean | null;
/**
*
* @type {number}
* @memberof PatchHospitalCommand
*/
'consultationFee'?: number | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'timeZone'?: string | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'websiteUrl'?: string | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'contactTel'?: string | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'contactEmail'?: string | null;
/**
*
* @type {boolean}
* @memberof PatchHospitalCommand
*/
'paymentEnabled'?: boolean | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'appointmentCurrency'?: string | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'corporateIdentificationNumber'?: string | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'gstRegistrationNumber'?: string | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'permanentAccountNumber'?: string | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'hospitalRegistrationNumber'?: string | null;
/**
*
* @type {boolean}
* @memberof PatchHospitalCommand
*/
'isCertified'?: boolean | null;
/**
*
* @type {boolean}
* @memberof PatchHospitalCommand
*/
'confirmed'?: boolean | null;
/**
*
* @type {boolean}
* @memberof PatchHospitalCommand
*/
'hideFromIch'?: boolean | null;
/**
*
* @type {number}
* @memberof PatchHospitalCommand
*/
'engagementFeeRate'?: number | null;
/**
*
* @type {number}
* @memberof PatchHospitalCommand
*/
'translationFeeRate'?: number | null;
/**
*
* @type {string}
* @memberof PatchHospitalCommand
*/
'gradeId'?: string | null;
/**
*
* @type {AppointmentOptionInputModel}
* @memberof PatchHospitalCommand
*/
'appointmentOption'?: AppointmentOptionInputModel;
/**
*
* @type {LocationOptionalInputModel}
* @memberof PatchHospitalCommand
*/
'location'?: LocationOptionalInputModel;
/**
*
* @type {HospitalConsultationOptionModel}
* @memberof PatchHospitalCommand
*/
'consultationOption'?: HospitalConsultationOptionModel;
/**
*
* @type {FeatureInputModel}
* @memberof PatchHospitalCommand
*/
'feature'?: FeatureInputModel;
/**
*
* @type {Array<HospitalTagItemModel>}
* @memberof PatchHospitalCommand
*/
'tags'?: Array<HospitalTagItemModel> | null;
}
//# sourceMappingURL=patch-hospital-command.d.ts.map