/** * Solidex.Order, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null * 1.0 * undefined */ import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import * as __model from '../model'; import * as i0 from "@angular/core"; export interface GetOrderAppByInstalledIdParams { /** * Installed application identifier of the order application to be received * format: uuid */ installedAppId: string; /** * The requested API version * default: 1.0 */ apiVersion?: string; } export declare class OrderApplicationService { private http; constructor(http: HttpClient); /** * The method provider possibility to get the order application by installed application id * http://undefined/swagger/swagger-ui.html#!/OrderApplication/GetOrderAppByInstalledId */ GetOrderAppByInstalledId(params: GetOrderAppByInstalledIdParams): Observable<__model.GetOrderApplicationByInstalledAppIdResponse>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }