/**
 * VRt.Account [AC]
 *
 * The version of the OpenAPI document: 7.16.2673
 * Contact: servicedesk@veeroute.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator.
 * Do not edit the class manually.
 */
import { HttpHeaders } from '@angular/common/http';
import { Observable } from 'rxjs';
import { InfoChangeRequestAccount } from '../model/models';
import { UserAccount } from '../model/models';
import { Configuration } from '../configuration';
export interface UpdateInfoRequestParams {
    infoChangeRequestAccount: InfoChangeRequestAccount;
}
export interface InfoServiceInterface {
    defaultHeaders: HttpHeaders;
    configuration: Configuration;
    /**
     * Account information
     * Getting a account information.
*/
    readInfo(extraHttpRequestParams?: any): Observable<UserAccount>;
    /**
     * Account update
     * Updating the account information.
* @param requestParameters
     */
    updateInfo(requestParameters: UpdateInfoRequestParams, extraHttpRequestParams?: any): Observable<UserAccount>;
}
