@veeroute/lss-account-angular
Version:
OpenAPI client for @veeroute/lss-account-angular
29 lines (28 loc) • 895 B
TypeScript
/**
* 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 { FlowTypeAccount } from '../model/models';
import { Configuration } from '../configuration';
export interface ReadDataRequestParams {
processCode: string;
dataFlowType?: FlowTypeAccount;
dataFlowStage?: 'RAW';
}
export interface DataServiceInterface {
defaultHeaders: HttpHeaders;
configuration: Configuration;
/**
* Reading input data
* Receiving an incoming request by `tracedata.process_code`.
* @param requestParameters
*/
readData(requestParameters: ReadDataRequestParams, extraHttpRequestParams?: any): Observable<string>;
}