UNPKG

ch-admin-api-client-typescript

Version:
92 lines 1.9 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 CreateDealCommand */ export interface CreateDealCommand { /** * * @type {string} * @memberof CreateDealCommand */ 'languageCode'?: string | null; /** * * @type {string} * @memberof CreateDealCommand */ 'name'?: string | null; /** * * @type {string} * @memberof CreateDealCommand */ 'description'?: string | null; /** * * @type {string} * @memberof CreateDealCommand */ 'overview'?: string | null; /** * * @type {string} * @memberof CreateDealCommand */ 'content'?: string | null; /** * * @type {string} * @memberof CreateDealCommand */ 'markdown'?: string | null; /** * * @type {string} * @memberof CreateDealCommand */ 'hospitalId'?: string; /** * * @type {MarketingType} * @memberof CreateDealCommand */ 'marketingType'?: MarketingType; /** * * @type {string} * @memberof CreateDealCommand */ 'photo'?: string | null; /** * * @type {string} * @memberof CreateDealCommand */ 'photoThumbnail'?: string | null; /** * * @type {number} * @memberof CreateDealCommand */ 'serviceDuration'?: number; /** * * @type {number} * @memberof CreateDealCommand */ 'order'?: number; } //# sourceMappingURL=create-deal-command.d.ts.map