/** * apaleo Rate Plan API - not safe for work * Continuously evolving version - use at your own risk! Manage the rate plans and rates to rent out your inventory and extra services. * * 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 { ClassMetaData } from '@apaleo/angular-api-proxy-common'; export interface PercentValueModel { /** * Percent to take from the base. Must be between 0 and 100. */ percent: number; /** * If set, limits the calculation base to the specified number of time slices, starting from the beginning. If not set, the entire stay will be used as a base. */ limit?: number; /** * Services included in the calculation base. If none are set, only charges for the unit will be used. The services are only included, if they are part of the rate plan. Extra services are ignored. */ includeServiceIds?: Array; } export declare namespace PercentValueModel { const $metaData: ClassMetaData; }