import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http'; import { Observable } from 'rxjs'; import { ReservationChangeLogListModel } from '../model/reservationChangeLogListModel'; import { Configuration } from '../configuration'; import * as i0 from "@angular/core"; export declare namespace logsBookingReservationGet { interface Params { /** * Filter the log entries by reservation IDs */ reservationIds?: Array; /** * Filter the log entries by event types. */ eventTypes?: Array; /** * Filter the log entries by client IDs (which application triggered this event) */ clientIds?: Array; /** * Filter the log entries by property IDs */ propertyIds?: Array; /** * Filter the log entries by subject IDs (which user triggered this event) */ subjectIds?: Array; /** * Filter by event date and time
You can provide an array of string expressions which all need to apply.
Each expression has the form of 'OPERATION_VALUE' where VALUE needs to be of the valid format of the property type and OPERATION can be:
'eq' for equals
'neq' for not equals
'lt' for less than
'gt' for greater than
'lte' for less than or equals
'gte' for greater than or equals
For instance
'eq_5' would mean the value should equal 5
'lte_7' would mean the value should be less than or equal to 7 */ dateFilter?: Array; /** * Use this parameter to override the current date and time for the current request. Specify a date and time (without fractional second part) in UTC or with UTC offset as defined in the ISO8601:2004.This header will only take effect on development environments. */ apaleoCurrentDateTime?: Date; /** * Page number, 1-based. Default value is 1 (if this is not set or not positive). Results in 204 if there are no items on that page. */ pageNumber?: number; /** * Page size. If this is not set or not positive, the pageNumber is ignored and all items are returned. */ pageSize?: number; /** * List of all embedded resources that should be expanded in the response. Possible values are: changes. All other values will be silently ignored. */ expand?: Array; } type EventTypesEnum = 'Created' | 'Amended' | 'CheckedIn' | 'CheckedOut' | 'Canceled' | 'SetToNoShow' | 'CityTaxAdded' | 'CityTaxRemoved' | 'UnitAssigned' | 'UnitUnassigned' | 'PaymentAccountSet' | 'PaymentAccountRemoved' | 'InvoiceStatusChanged' | 'Changed' | 'CheckInReverted' | 'UnitLocked' | 'UnitUnlocked' | 'PickedUpFromBlock'; const EventTypesEnumValues: readonly EventTypesEnum[]; type ExpandEnum = 'changes'; const ExpandEnumValues: readonly "changes"[]; } export declare class BookingLogsService { protected httpClient: HttpClient; protected basePath: string; defaultHeaders: HttpHeaders; configuration: Configuration; constructor(httpClient: HttpClient, basePath: string, configuration: Configuration); /** * @param consumes string[] mime-types * @return true: consumes contains 'multipart/form-data', false: otherwise */ private canConsumeForm; /** * Returns reservation change log entries sorted by the timestamp. * <br>You must have this scope: 'logs.read'. * @param $params.reservationIds Filter the log entries by reservation IDs * @param $params.eventTypes Filter the log entries by event types. * @param $params.clientIds Filter the log entries by client IDs (which application triggered this event) * @param $params.propertyIds Filter the log entries by property IDs * @param $params.subjectIds Filter the log entries by subject IDs (which user triggered this event) * @param $params.dateFilter Filter by event date and time<br />You can provide an array of string expressions which all need to apply.<br />Each expression has the form of 'OPERATION_VALUE' where VALUE needs to be of the valid format of the property type and OPERATION can be:<br />'eq' for equals<br />'neq' for not equals<br />'lt' for less than<br />'gt' for greater than<br />'lte' for less than or equals<br />'gte' for greater than or equals<br />For instance<br />'eq_5' would mean the value should equal 5<br />'lte_7' would mean the value should be less than or equal to 7 * @param $params.apaleoCurrentDateTime Use this parameter to override the current date and time for the current request. Specify a date and time (without fractional second part) in UTC or with UTC offset as defined in the <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO8601:2004</a>.This header will only take effect on development environments. * @param $params.pageNumber Page number, 1-based. Default value is 1 (if this is not set or not positive). Results in 204 if there are no items on that page. * @param $params.pageSize Page size. If this is not set or not positive, the pageNumber is ignored and all items are returned. * @param $params.expand List of all embedded resources that should be expanded in the response. Possible values are: changes. All other values will be silently ignored. * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ logsBookingReservationGet($params: logsBookingReservationGet.Params, observe?: 'body', reportProgress?: boolean): Observable; logsBookingReservationGet($params: logsBookingReservationGet.Params, observe?: 'response', reportProgress?: boolean): Observable>; logsBookingReservationGet($params: logsBookingReservationGet.Params, observe?: 'events', reportProgress?: boolean): Observable>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }