/** * 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 GetPartyParams { /** * Application identifier of the party to be received * format: uuid */ appId: string; /** * Identifier of the party to be received * format: uuid */ id: string; /** * The requested API version * default: 1.0 */ apiVersion?: string; } export interface UpdatePartyParams { /** * Application identifier of the party to be received * format: uuid */ appId: string; /** * Identifier of the party to be received * format: uuid */ id: string; /** * The requested API version * default: 1.0 */ apiVersion?: string; model: __model.UpdatePartyRequest; } export interface DeletePartyParams { /** * Application identifier of the party to be received * format: uuid */ appId: string; /** * Identifier of the party to be received * format: uuid */ id: string; /** * The requested API version * default: 1.0 */ apiVersion?: string; } export interface GetPartyStatusesParams { /** * Application identifier of the party to be received * format: uuid */ appId: string; /** * The requested API version * default: 1.0 */ apiVersion?: string; model: __model.SettingQueryRequestFilterRequest; } export interface CreatePartyParams { /** * Application identifier of the party to be received * format: uuid */ appId: string; /** * The requested API version * default: 1.0 */ apiVersion?: string; model: __model.CreatePartyRequest; } export declare class PartyService { private http; constructor(http: HttpClient); /** * The method provider possibility to get a party by application id and id * http://undefined/swagger/swagger-ui.html#!/Party/GetParty */ GetParty(params: GetPartyParams): Observable<__model.GetPartyResponse>; /** * The method provider possibility to update a party by application id and id * http://undefined/swagger/swagger-ui.html#!/Party/UpdateParty */ UpdateParty(params: UpdatePartyParams): Observable<__model.UpdatePartyResponse>; /** * The method provider possibility to delete a party by application id and id * http://undefined/swagger/swagger-ui.html#!/Party/DeleteParty */ DeleteParty(params: DeletePartyParams): Observable<__model.DeletePartyResponse>; /** * The method provide information about how many parties we have with each status by application id * http://undefined/swagger/swagger-ui.html#!/Party/GetPartyStatuses */ GetPartyStatuses(params: GetPartyStatusesParams): Observable<__model.GetPartyStatusesResponse>; /** * The method provider possibility to create a party by application id and id * http://undefined/swagger/swagger-ui.html#!/Party/CreateParty */ CreateParty(params: CreatePartyParams): Observable<__model.CreatePartyResponse>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }