/**
* 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 { Operation } from './operation';
import { ClassMetaData } from '@apaleo/angular-api-proxy-common';
export interface RatePatchModel {
/**
* The start of the time range to filter the rates by. All rates where the from date and time is equal or later than the specified date and optional time will be affected
Specify either a pure date or a date and time (without fractional second part) in UTC or with UTC offset as defined in ISO8601:2004
*/
from: string;
/**
* The end of the time range to filter the rates by. All rates where the from date and time is earlier than the specified date and optional time will be affected
Specify either a pure date or a date and time (without fractional second part) in UTC or with UTC offset as defined in ISO8601:2004
*/
to: string;
/**
* The weekdays that will be patched. If not specified, all weekdays will be patched.
*/
weekDays?: Array;
operations?: Array;
}
export declare namespace RatePatchModel {
type WeekDaysEnum = 'Monday' | 'Tuesday' | 'Wednesday' | 'Thursday' | 'Friday' | 'Saturday' | 'Sunday';
const WeekDaysEnumValues: readonly WeekDaysEnum[];
}
export declare namespace RatePatchModel {
const $metaData: ClassMetaData;
}