/** * CloudHospital Api * CloudHospital application with Swagger, Swashbuckle, and API versioning. * * The version of the OpenAPI document: 2 * 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 { CountrySubDocumentModel } from './country-sub-document-model'; import { DealPriceOptionDocumentModel } from './deal-price-option-document-model'; /** * * @export * @interface DealPriceDocumentModel */ export interface DealPriceDocumentModel { /** * * @type {string} * @memberof DealPriceDocumentModel */ 'Id'?: string | null; /** * * @type {string} * @memberof DealPriceDocumentModel */ 'CurrencyId'?: string | null; /** * * @type {string} * @memberof DealPriceDocumentModel */ 'CountryId'?: string | null; /** * * @type {number} * @memberof DealPriceDocumentModel */ 'RegularPrice'?: number; /** * * @type {number} * @memberof DealPriceDocumentModel */ 'CurrentPrice'?: number; /** * * @type {number} * @memberof DealPriceDocumentModel */ 'DiscountRate'?: number; /** * * @type {boolean} * @memberof DealPriceDocumentModel */ 'IsStandardPrice'?: boolean; /** * * @type {number} * @memberof DealPriceDocumentModel */ 'Order'?: number; /** * * @type {string} * @memberof DealPriceDocumentModel */ 'CurrencyCode'?: string | null; /** * * @type {string} * @memberof DealPriceDocumentModel */ 'CurrencySymbol'?: string | null; /** * * @type {CountrySubDocumentModel} * @memberof DealPriceDocumentModel */ 'Country'?: CountrySubDocumentModel; /** * * @type {Array} * @memberof DealPriceDocumentModel */ 'DealPriceOptions'?: Array | null; } //# sourceMappingURL=deal-price-document-model.d.ts.map