/** * Apaleo Rates API * Manage the rate plans and rates to rent out your inventory at the best price. * * OpenAPI spec version: 1.0.0 * * * 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 { RateItemModel } from './rateItemModel'; import { FormBuilder, FormGroup } from '@angular/forms'; import { ApaleoPropertyMetaData, BuildFormOptions, ResponseModel } from '@apaleo/angular-api-proxy-common'; export interface RateListModel { /** * List of rates */ rates: Array; /** * Total count of items */ count: number; } export declare type RateListModelWithRawHttp = RateListModel & ResponseModel; export declare namespace RateListModel { const $metaData: { rates: Readonly; count: Readonly; }; function $buildForm(fb: FormBuilder, options?: BuildFormOptions): FormGroup; }