UNPKG

ch-admin-api-client-typescript

Version:
74 lines 1.68 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 { DealPriceOptionRequestModel } from './deal-price-option-request-model'; /** * * @export * @interface DealPriceRequestModel */ export interface DealPriceRequestModel { /** * * @type {string} * @memberof DealPriceRequestModel */ 'currencyId'?: string; /** * * @type {string} * @memberof DealPriceRequestModel */ 'countryId'?: string | null; /** * * @type {number} * @memberof DealPriceRequestModel */ 'regularPrice'?: number; /** * * @type {number} * @memberof DealPriceRequestModel */ 'currentPrice'?: number; /** * * @type {number} * @memberof DealPriceRequestModel */ 'discountRate'?: number; /** * * @type {boolean} * @memberof DealPriceRequestModel */ 'isStandardPrice'?: boolean; /** * * @type {number} * @memberof DealPriceRequestModel */ 'order'?: number; /** * * @type {string} * @memberof DealPriceRequestModel */ 'id'?: string | null; /** * * @type {Array<DealPriceOptionRequestModel>} * @memberof DealPriceRequestModel */ 'dealPriceOptions'?: Array<DealPriceOptionRequestModel> | null; } //# sourceMappingURL=deal-price-request-model.d.ts.map