UNPKG

ch-admin-api-client-typescript

Version:
207 lines 4.76 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 { DealPriceRequestModel } from './deal-price-request-model'; import { DealPricingInformationRequestModel } from './deal-pricing-information-request-model'; import { DealServiceRequestModel } from './deal-service-request-model'; import { DealTagRequestModel } from './deal-tag-request-model'; import { DealTargetGender } from './deal-target-gender'; import { DealTargetPlatform } from './deal-target-platform'; import { FeatureInputModel } from './feature-input-model'; import { MarketingType } from './marketing-type'; /** * * @export * @interface PatchDealCommand */ export interface PatchDealCommand { /** * * @type {string} * @memberof PatchDealCommand */ 'languageCode'?: string | null; /** * * @type {string} * @memberof PatchDealCommand */ 'name'?: string | null; /** * * @type {string} * @memberof PatchDealCommand */ 'title'?: string | null; /** * * @type {string} * @memberof PatchDealCommand */ 'description'?: string | null; /** * * @type {string} * @memberof PatchDealCommand */ 'overview'?: string | null; /** * * @type {string} * @memberof PatchDealCommand */ 'content'?: string | null; /** * * @type {string} * @memberof PatchDealCommand */ 'markdown'?: string | null; /** * * @type {string} * @memberof PatchDealCommand */ 'dealName'?: string | null; /** * * @type {string} * @memberof PatchDealCommand */ 'precautions'?: string | null; /** * * @type {MarketingType} * @memberof PatchDealCommand */ 'marketingType'?: MarketingType; /** * * @type {string} * @memberof PatchDealCommand */ 'photo'?: string | null; /** * * @type {string} * @memberof PatchDealCommand */ 'photoThumbnail'?: string | null; /** * * @type {number} * @memberof PatchDealCommand */ 'serviceDuration'?: number | null; /** * * @type {number} * @memberof PatchDealCommand */ 'order'?: number | null; /** * * @type {boolean} * @memberof PatchDealCommand */ 'confirmed'?: boolean | null; /** * * @type {boolean} * @memberof PatchDealCommand */ 'resetCountriesToAll'?: boolean | null; /** * * @type {Date} * @memberof PatchDealCommand */ 'dealOpenDate'?: Date | null; /** * * @type {Date} * @memberof PatchDealCommand */ 'dealCloseDate'?: Date | null; /** * * @type {boolean} * @memberof PatchDealCommand */ 'published'?: boolean | null; /** * * @type {DealTargetGender} * @memberof PatchDealCommand */ 'targetGender'?: DealTargetGender; /** * * @type {number} * @memberof PatchDealCommand */ 'treatmentTimeMinimum'?: number | null; /** * * @type {number} * @memberof PatchDealCommand */ 'treatmentTimeMaximum'?: number | null; /** * * @type {number} * @memberof PatchDealCommand */ 'hospitalizationDays'?: number | null; /** * * @type {Array<DealServiceRequestModel>} * @memberof PatchDealCommand */ 'dealServices'?: Array<DealServiceRequestModel> | null; /** * * @type {FeatureInputModel} * @memberof PatchDealCommand */ 'dealFeature'?: FeatureInputModel; /** * * @type {Array<DealPricingInformationRequestModel>} * @memberof PatchDealCommand */ 'dealPricingInformationItems'?: Array<DealPricingInformationRequestModel> | null; /** * * @type {Array<DealTargetPlatform>} * @memberof PatchDealCommand */ 'dealPlatforms'?: Array<DealTargetPlatform> | null; /** * * @type {Array<string>} * @memberof PatchDealCommand */ 'dealCountries'?: Array<string> | null; /** * * @type {Array<DealTagRequestModel>} * @memberof PatchDealCommand */ 'dealTags'?: Array<DealTagRequestModel> | null; /** * * @type {Array<DealPriceRequestModel>} * @memberof PatchDealCommand */ 'dealPrices'?: Array<DealPriceRequestModel> | null; } //# sourceMappingURL=patch-deal-command.d.ts.map