@finbourne/lusid-sdk-angular6
Version:
An angular (6+) SDK for secure access to the LUSID® by FINBOURNE web API
32 lines (31 loc) • 2.33 kB
TypeScript
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
import { Observable } from 'rxjs';
import { PortfoliosReconciliationRequest } from '../model/portfoliosReconciliationRequest';
import { ResourceListOfReconciliationBreak } from '../model/resourceListOfReconciliationBreak';
import { Configuration } from '../configuration';
export declare class ReconciliationsService {
protected httpClient: HttpClient;
protected basePath: string;
defaultHeaders: HttpHeaders;
configuration: Configuration;
constructor(httpClient: HttpClient, basePath: string, configuration: Configuration);
/**
* @param consumes string[] mime-types
* @return true: consumes contains 'multipart/form-data', false: otherwise
*/
private canConsumeForm(consumes);
/**
* Reconcile portfolio holdings
* Reconcile the holdings of two portfolios.
* @param request The specifications of the inputs to the reconciliation
* @param sortBy Optional. Order the results by these fields. Use use the '-' sign to denote descending order e.g. -MyFieldName
* @param start Optional. When paginating, skip this number of results
* @param limit Optional. When paginating, limit the number of returned results to this many.
* @param filter Optional. Expression to filter the result set
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
*/
reconcileHoldings(request?: PortfoliosReconciliationRequest, sortBy?: Array<string>, start?: number, limit?: number, filter?: string, observe?: 'body', reportProgress?: boolean): Observable<ResourceListOfReconciliationBreak>;
reconcileHoldings(request?: PortfoliosReconciliationRequest, sortBy?: Array<string>, start?: number, limit?: number, filter?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ResourceListOfReconciliationBreak>>;
reconcileHoldings(request?: PortfoliosReconciliationRequest, sortBy?: Array<string>, start?: number, limit?: number, filter?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ResourceListOfReconciliationBreak>>;
}