import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http'; import { Observable } from 'rxjs'; import { Configuration } from '../configuration'; import * as i0 from "@angular/core"; export declare namespace rateplanRatePlanActionsByIdArchivePut { interface Params { /** * Id of the rate plan that should be archived. */ id: string; /** * 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; } } export declare class RatePlanActionsService { 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; /** * Archive a rate plan * Archive the specific rate plan. This action makes rate plan unavailable for all operations and cannot be undone.<br>You must have at least one of these scopes: 'rateplans.manage, setup.manage'. * @param $params.id Id of the rate plan that should be archived. * @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 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. */ rateplanRatePlanActionsByIdArchivePut($params: rateplanRatePlanActionsByIdArchivePut.Params, observe?: 'body', reportProgress?: boolean): Observable; rateplanRatePlanActionsByIdArchivePut($params: rateplanRatePlanActionsByIdArchivePut.Params, observe?: 'response', reportProgress?: boolean): Observable>; rateplanRatePlanActionsByIdArchivePut($params: rateplanRatePlanActionsByIdArchivePut.Params, observe?: 'events', reportProgress?: boolean): Observable>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }