@finbourne/lusid-sdk-angular8
Version:
An angular (8+) SDK for secure access to the LUSID® by FINBOURNE web API
51 lines (50 loc) • 5.09 kB
TypeScript
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
import { Observable } from 'rxjs';
import { PagedResourceListOfOrderGraphBlock } from '../model/pagedResourceListOfOrderGraphBlock';
import { PagedResourceListOfOrderGraphPlacement } from '../model/pagedResourceListOfOrderGraphPlacement';
import { Configuration } from '../configuration';
import * as i0 from "@angular/core";
export declare class OrderGraphService {
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;
/**
* [EXPERIMENTAL] ListOrderGraphBlocks: Lists blocks that pass the filter provided, and builds a summary picture of the state of their associated order entities.
* Lists all blocks of orders, subject to the filter, along with the IDs of orders, placements, allocations and executions in the block, the total quantities of each, and a simple text field describing the overall state.
* @param asAt See https://support.lusid.com/knowledgebase/article/KA-01832/
* @param paginationToken See https://support.lusid.com/knowledgebase/article/KA-01915/
* @param sortBy Order the results by these fields. Use use the \'-\' sign to denote descending order e.g. -MyFieldName.
* @param limit See https://support.lusid.com/knowledgebase/article/KA-01915/
* @param filter See https://support.lusid.com/knowledgebase/article/KA-01914/
* @param propertyKeys Must be block-level properties. See https://support.lusid.com/knowledgebase/article/KA-01855/
* @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.
*/
listOrderGraphBlocks(asAt?: Date, paginationToken?: string, sortBy?: Array<string>, limit?: number, filter?: string, propertyKeys?: Array<string>, observe?: 'body', reportProgress?: boolean): Observable<PagedResourceListOfOrderGraphBlock>;
listOrderGraphBlocks(asAt?: Date, paginationToken?: string, sortBy?: Array<string>, limit?: number, filter?: string, propertyKeys?: Array<string>, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<PagedResourceListOfOrderGraphBlock>>;
listOrderGraphBlocks(asAt?: Date, paginationToken?: string, sortBy?: Array<string>, limit?: number, filter?: string, propertyKeys?: Array<string>, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<PagedResourceListOfOrderGraphBlock>>;
/**
* [EXPERIMENTAL] ListOrderGraphPlacements: Lists placements that pass the filter provided, and builds a summary picture of the state of their associated order entities.
* Lists all order placements, subject to the filter, along with the IDs of the block and order that the placement is for, each placement\'s quantity, the IDs of all allocations and executions in the placement and the total quantities of those, and a simple text field describing the overall state of the placement.
* @param asAt See https://support.lusid.com/knowledgebase/article/KA-01832/
* @param paginationToken See https://support.lusid.com/knowledgebase/article/KA-01915/
* @param sortBy Order the results by these fields. Use use the \'-\' sign to denote descending order e.g. -MyFieldName.
* @param limit See https://support.lusid.com/knowledgebase/article/KA-01915/
* @param filter See https://support.lusid.com/knowledgebase/article/KA-01914/
* @param propertyKeys Must be placement properties. See https://support.lusid.com/knowledgebase/article/KA-01855/
* @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.
*/
listOrderGraphPlacements(asAt?: Date, paginationToken?: string, sortBy?: Array<string>, limit?: number, filter?: string, propertyKeys?: Array<string>, observe?: 'body', reportProgress?: boolean): Observable<PagedResourceListOfOrderGraphPlacement>;
listOrderGraphPlacements(asAt?: Date, paginationToken?: string, sortBy?: Array<string>, limit?: number, filter?: string, propertyKeys?: Array<string>, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<PagedResourceListOfOrderGraphPlacement>>;
listOrderGraphPlacements(asAt?: Date, paginationToken?: string, sortBy?: Array<string>, limit?: number, filter?: string, propertyKeys?: Array<string>, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<PagedResourceListOfOrderGraphPlacement>>;
static ɵfac: i0.ɵɵFactoryDef<OrderGraphService, [null, { optional: true; }, { optional: true; }]>;
static ɵprov: i0.ɵɵInjectableDef<OrderGraphService>;
}