/**
 * 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 &#x60;tracedata.process_code&#x60;.
* @param requestParameters
     */
    readData(requestParameters: ReadDataRequestParams, extraHttpRequestParams?: any): Observable<string>;
}
