/**
* 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 { FormBuilder, FormGroup } from '@angular/forms';
import { ApaleoPropertyMetaData, BuildFormOptions, ResponseModel } from '@apaleo/angular-api-proxy-common';
export interface BookingPeriodModel {
/**
* Start of booking period
Specify a date and time (without fractional second part) in UTC or with UTC offset as defined in the ISO8601:2004
*/
from: Date;
/**
* End of booking period
Specify a date and time (without fractional second part) in UTC or with UTC offset as defined in the ISO8601:2004
*/
to: Date;
}
export declare type BookingPeriodModelWithRawHttp = BookingPeriodModel & ResponseModel;
export declare namespace BookingPeriodModel {
const $metaData: {
from: Readonly;
to: Readonly;
};
function $buildForm(fb: FormBuilder, options?: BuildFormOptions): FormGroup;
}