/** * 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 GetOrderParams { /** * Application identifier of the order to be received * format: uuid */ appId: string; /** * Identifier of the order to be received * format: uuid */ id: string; /** * The requested API version * default: 1.0 */ apiVersion?: string; } export interface UpdateOrderParams { /** * Application identifier of the order to be received * format: uuid */ appId: string; /** * Identifier of the order to be received * format: uuid */ id: string; /** * The requested API version * default: 1.0 */ apiVersion?: string; model: __model.UpdateOrderRequest; } export interface DeleteOrderParams { /** * Application identifier of the order to be received * format: uuid */ appId: string; /** * Identifier of the order to be received * format: uuid */ id: string; /** * The requested API version * default: 1.0 */ apiVersion?: string; } export interface SearchOrderLinesParams { /** * Identifier of the order to be received * format: uuid */ id: string; searchTerm?: string; appId: string; /** * The requested API version * default: 1.0 */ apiVersion?: string; } export interface FindOrdersParams { /** * Application identifier of the order to be received * format: uuid */ appId: string; /** * The requested API version * default: 1.0 */ apiVersion?: string; model: __model.OrderQueryRequestFilterRequest; } export interface CreateOrderParams { /** * Application identifier of the order to be received * format: uuid */ appId: string; /** * The requested API version * default: 1.0 */ apiVersion?: string; model: __model.CreateOrderRequest; } export declare class OrderService { private http; constructor(http: HttpClient); /** * The method provider possibility to receive a order by application id and id * http://undefined/swagger/swagger-ui.html#!/Order/GetOrder */ GetOrder(params: GetOrderParams): Observable<__model.GetOrderResponse>; /** * The method provider possibility to update a order by application id and id * http://undefined/swagger/swagger-ui.html#!/Order/UpdateOrder */ UpdateOrder(params: UpdateOrderParams): Observable<__model.UpdateOrderResponse>; /** * The method provider possibility to delete a order by application id and id * http://undefined/swagger/swagger-ui.html#!/Order/DeleteOrder */ DeleteOrder(params: DeleteOrderParams): Observable<__model.DeleteOrderResponse>; /** * The method provider possibility to receive a order by id * http://undefined/swagger/swagger-ui.html#!/Order/SearchOrderLines */ SearchOrderLines(params: SearchOrderLinesParams): Observable; /** * The method provider possibility to receive a search order by application id * http://undefined/swagger/swagger-ui.html#!/Order/FindOrders */ FindOrders(params: FindOrdersParams): Observable<__model.OrderViewModelPageViewResponseResponseViewModel>; /** * The method provider possibility to create a order by application id * http://undefined/swagger/swagger-ui.html#!/Order/CreateOrder */ CreateOrder(params: CreateOrderParams): Observable<__model.CreateOrderResponse>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }