/**
* apaleo Booking API - not safe for work
* Continuously evolving version - use at your own risk! Resources and methods to manage guest journeys.
*
* OpenAPI spec version: v0-nsfw
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
import { TaxesModel } from './taxesModel';
import { ClassMetaData } from '@apaleo/angular-api-proxy-common';
export interface PriceModel {
/**
* Price including all included services and VAT - DEPRECATED: This field will be removed soon, use BeforeTax + Taxes.Tax instead
*/
grossAmount: number;
/**
* Price including all included services without VAT or any other taxes like city tax
*/
beforeTax: number;
/**
* Price including all included services, VAT and any other taxes like city tax
*/
afterTax: number;
taxes: TaxesModel;
/**
* The currency for all prices and tax details
*/
currency: string;
}
export declare namespace PriceModel {
const $metaData: ClassMetaData;
}