ch-admin-api-client-typescript
Version:
Openapi generated typescript-axios client for CloudHospital admin
92 lines • 1.9 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 { DealPriceOptionModel } from './deal-price-option-model';
/**
*
* @export
* @interface DealPriceModel
*/
export interface DealPriceModel {
/**
*
* @type {string}
* @memberof DealPriceModel
*/
'currencyId'?: string;
/**
*
* @type {string}
* @memberof DealPriceModel
*/
'countryId'?: string | null;
/**
*
* @type {number}
* @memberof DealPriceModel
*/
'regularPrice'?: number;
/**
*
* @type {number}
* @memberof DealPriceModel
*/
'currentPrice'?: number;
/**
*
* @type {number}
* @memberof DealPriceModel
*/
'discountRate'?: number;
/**
*
* @type {boolean}
* @memberof DealPriceModel
*/
'isStandardPrice'?: boolean;
/**
*
* @type {number}
* @memberof DealPriceModel
*/
'order'?: number;
/**
*
* @type {string}
* @memberof DealPriceModel
*/
'id'?: string;
/**
*
* @type {Array<DealPriceOptionModel>}
* @memberof DealPriceModel
*/
'dealPriceOptions'?: Array<DealPriceOptionModel> | null;
/**
*
* @type {string}
* @memberof DealPriceModel
*/
'currencyCode'?: string | null;
/**
*
* @type {string}
* @memberof DealPriceModel
*/
'currencySymbol'?: string | null;
/**
*
* @type {string}
* @memberof DealPriceModel
*/
'countryName'?: string | null;
}
//# sourceMappingURL=deal-price-model.d.ts.map