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 accountAccountActionsCurrentSetLivePut {
interface Params {
/**
* 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 namespace accountAccountActionsCurrentSuspendPut {
interface Params {
/**
* 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 AccountActionsService {
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;
/**
* Move the account to live.
* Move the current account to live. This changes the account type to 'Live'.<br>You must have this scope: 'account.manage'.
* @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.
*/
accountAccountActionsCurrentSetLivePut($params: accountAccountActionsCurrentSetLivePut.Params, observe?: 'body', reportProgress?: boolean): Observable;
accountAccountActionsCurrentSetLivePut($params: accountAccountActionsCurrentSetLivePut.Params, observe?: 'response', reportProgress?: boolean): Observable>;
accountAccountActionsCurrentSetLivePut($params: accountAccountActionsCurrentSetLivePut.Params, observe?: 'events', reportProgress?: boolean): Observable>;
/**
* Suspend the account.
* Suspends the current account. This changes the account type to 'Suspended'.<br>You must have this scope: 'account.manage'.
* @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.
*/
accountAccountActionsCurrentSuspendPut($params: accountAccountActionsCurrentSuspendPut.Params, observe?: 'body', reportProgress?: boolean): Observable;
accountAccountActionsCurrentSuspendPut($params: accountAccountActionsCurrentSuspendPut.Params, observe?: 'response', reportProgress?: boolean): Observable>;
accountAccountActionsCurrentSuspendPut($params: accountAccountActionsCurrentSuspendPut.Params, observe?: 'events', reportProgress?: boolean): Observable>;
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵprov: i0.ɵɵInjectableDeclaration;
}