UNPKG

@veeroute/lss-account-angular

Version:

OpenAPI client for @veeroute/lss-account-angular

33 lines (32 loc) 1.04 kB
/** * VRt.Account [AC] * * The version of the OpenAPI document: 7.23.2926 * 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>; }