UNPKG

ch-admin-api-client-typescript

Version:
98 lines 2.01 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 { MarketingType } from './marketing-type'; /** * * @export * @interface UpdateDealCommand */ export interface UpdateDealCommand { /** * * @type {string} * @memberof UpdateDealCommand */ 'name'?: string | null; /** * * @type {string} * @memberof UpdateDealCommand */ 'slug'?: string | null; /** * * @type {string} * @memberof UpdateDealCommand */ 'description'?: string | null; /** * * @type {string} * @memberof UpdateDealCommand */ 'overview'?: string | null; /** * * @type {string} * @memberof UpdateDealCommand */ 'content'?: string | null; /** * * @type {string} * @memberof UpdateDealCommand */ 'markdown'?: string | null; /** * * @type {MarketingType} * @memberof UpdateDealCommand */ 'marketingType'?: MarketingType; /** * * @type {string} * @memberof UpdateDealCommand */ 'photo'?: string | null; /** * * @type {string} * @memberof UpdateDealCommand */ 'photoThumbnail'?: string | null; /** * * @type {number} * @memberof UpdateDealCommand */ 'serviceDuration'?: number; /** * * @type {number} * @memberof UpdateDealCommand */ 'order'?: number; /** * * @type {string} * @memberof UpdateDealCommand */ 'languageCode'?: string | null; /** * * @type {boolean} * @memberof UpdateDealCommand */ 'confirmed'?: boolean; } //# sourceMappingURL=update-deal-command.d.ts.map