LUSID C# SDK
|
Represents a collection of functions to interact with the API endpoints More...
Public Member Functions | |
CustomEntityType | CreateCustomEntityType (CreateCustomEntityTypeRequest createCustomEntityTypeRequest, int operationIndex=0, ConfigurationOptions? opts=null) |
[EARLY ACCESS] CreateCustomEntityType: Define a new Custom Entity Type. More... | |
Lusid.Sdk.Client.ApiResponse< CustomEntityType > | CreateCustomEntityTypeWithHttpInfo (CreateCustomEntityTypeRequest createCustomEntityTypeRequest, int operationIndex=0, ConfigurationOptions? opts=null) |
[EARLY ACCESS] CreateCustomEntityType: Define a new Custom Entity Type. More... | |
CustomEntityType | GetCustomEntityType (string entityType, DateTimeOffset? asAt=default(DateTimeOffset?), int operationIndex=0, ConfigurationOptions? opts=null) |
[EARLY ACCESS] GetCustomEntityType: Get a Custom Entity Type. More... | |
Lusid.Sdk.Client.ApiResponse< CustomEntityType > | GetCustomEntityTypeWithHttpInfo (string entityType, DateTimeOffset? asAt=default(DateTimeOffset?), int operationIndex=0, ConfigurationOptions? opts=null) |
[EARLY ACCESS] GetCustomEntityType: Get a Custom Entity Type. More... | |
PagedResourceListOfCustomEntityType | ListCustomEntityTypes (DateTimeOffset? asAt=default(DateTimeOffset?), int? limit=default(int?), string? filter=default(string?), List< string >? sortBy=default(List< string >?), string? page=default(string?), int operationIndex=0, ConfigurationOptions? opts=null) |
[EARLY ACCESS] ListCustomEntityTypes: List Custom Entity Types. More... | |
Lusid.Sdk.Client.ApiResponse< PagedResourceListOfCustomEntityType > | ListCustomEntityTypesWithHttpInfo (DateTimeOffset? asAt=default(DateTimeOffset?), int? limit=default(int?), string? filter=default(string?), List< string >? sortBy=default(List< string >?), string? page=default(string?), int operationIndex=0, ConfigurationOptions? opts=null) |
[EARLY ACCESS] ListCustomEntityTypes: List Custom Entity Types. More... | |
CustomEntityType | UpdateCustomEntityType (string entityType, UpdateCustomEntityTypeRequest updateCustomEntityTypeRequest, int operationIndex=0, ConfigurationOptions? opts=null) |
[EARLY ACCESS] UpdateCustomEntityType: Modify an existing Custom Entity Type. More... | |
Lusid.Sdk.Client.ApiResponse< CustomEntityType > | UpdateCustomEntityTypeWithHttpInfo (string entityType, UpdateCustomEntityTypeRequest updateCustomEntityTypeRequest, int operationIndex=0, ConfigurationOptions? opts=null) |
[EARLY ACCESS] UpdateCustomEntityType: Modify an existing Custom Entity Type. More... | |
Represents a collection of functions to interact with the API endpoints
CustomEntityType Lusid.Sdk.Api.ICustomEntityTypesApiSync.CreateCustomEntityType | ( | CreateCustomEntityTypeRequest | createCustomEntityTypeRequest, |
int | operationIndex = 0 , |
||
ConfigurationOptions? | opts = null |
||
) |
[EARLY ACCESS] CreateCustomEntityType: Define a new Custom Entity Type.
The API will return a Bad Request if the Custom Entity Type already exists.
Lusid.Sdk.Client.ApiException | Thrown when fails to make API call |
createCustomEntityTypeRequest | The payload containing the description of the Custom Entity Type. |
operationIndex | Index associated with the operation. |
opts | Options for this request. |
Implemented in Lusid.Sdk.Api.CustomEntityTypesApi.
Lusid.Sdk.Client.ApiResponse<CustomEntityType> Lusid.Sdk.Api.ICustomEntityTypesApiSync.CreateCustomEntityTypeWithHttpInfo | ( | CreateCustomEntityTypeRequest | createCustomEntityTypeRequest, |
int | operationIndex = 0 , |
||
ConfigurationOptions? | opts = null |
||
) |
[EARLY ACCESS] CreateCustomEntityType: Define a new Custom Entity Type.
The API will return a Bad Request if the Custom Entity Type already exists.
Lusid.Sdk.Client.ApiException | Thrown when fails to make API call |
createCustomEntityTypeRequest | The payload containing the description of the Custom Entity Type. |
operationIndex | Index associated with the operation. |
opts | Options for this request. |
Implemented in Lusid.Sdk.Api.CustomEntityTypesApi.
CustomEntityType Lusid.Sdk.Api.ICustomEntityTypesApiSync.GetCustomEntityType | ( | string | entityType, |
DateTimeOffset? | asAt = default(DateTimeOffset?) , |
||
int | operationIndex = 0 , |
||
ConfigurationOptions? | opts = null |
||
) |
[EARLY ACCESS] GetCustomEntityType: Get a Custom Entity Type.
Retrieve a specific Custom Entity Type at a point in AsAt time.
Lusid.Sdk.Client.ApiException | Thrown when fails to make API call |
entityType | The identifier for the Custom Entity Type, derived from the "entityTypeName" provided on creation. |
asAt | The AsAt datetime at which to retrieve the definition. (optional) |
operationIndex | Index associated with the operation. |
opts | Options for this request. |
Implemented in Lusid.Sdk.Api.CustomEntityTypesApi.
Lusid.Sdk.Client.ApiResponse<CustomEntityType> Lusid.Sdk.Api.ICustomEntityTypesApiSync.GetCustomEntityTypeWithHttpInfo | ( | string | entityType, |
DateTimeOffset? | asAt = default(DateTimeOffset?) , |
||
int | operationIndex = 0 , |
||
ConfigurationOptions? | opts = null |
||
) |
[EARLY ACCESS] GetCustomEntityType: Get a Custom Entity Type.
Retrieve a specific Custom Entity Type at a point in AsAt time.
Lusid.Sdk.Client.ApiException | Thrown when fails to make API call |
entityType | The identifier for the Custom Entity Type, derived from the "entityTypeName" provided on creation. |
asAt | The AsAt datetime at which to retrieve the definition. (optional) |
operationIndex | Index associated with the operation. |
opts | Options for this request. |
Implemented in Lusid.Sdk.Api.CustomEntityTypesApi.
PagedResourceListOfCustomEntityType Lusid.Sdk.Api.ICustomEntityTypesApiSync.ListCustomEntityTypes | ( | DateTimeOffset? | asAt = default(DateTimeOffset?) , |
int? | limit = default(int?) , |
||
string? | filter = default(string?) , |
||
List< string >? | sortBy = default(List< string >?) , |
||
string? | page = default(string?) , |
||
int | operationIndex = 0 , |
||
ConfigurationOptions? | opts = null |
||
) |
[EARLY ACCESS] ListCustomEntityTypes: List Custom Entity Types.
List all Custom Entity Types matching particular criteria.
Lusid.Sdk.Client.ApiException | Thrown when fails to make API call |
asAt | The asAt datetime at which to list the entities. Defaults to returning the latest version of each Custom Entity Type if not specified. (optional) |
limit | When paginating, limit the results to this number. Defaults to 100 if not specified. (optional) |
filter | Expression to filter the results. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914. (optional) |
sortBy | A list of field names to sort by, each suffixed by " ASC" or " DESC" (optional) |
page | The pagination token to use to continue listing entities; this value is returned from the previous call. If a pagination token is provided, the filter, limit, sortBy, and asAt fields must not have changed since the original request. (optional) |
operationIndex | Index associated with the operation. |
opts | Options for this request. |
Implemented in Lusid.Sdk.Api.CustomEntityTypesApi.
Lusid.Sdk.Client.ApiResponse<PagedResourceListOfCustomEntityType> Lusid.Sdk.Api.ICustomEntityTypesApiSync.ListCustomEntityTypesWithHttpInfo | ( | DateTimeOffset? | asAt = default(DateTimeOffset?) , |
int? | limit = default(int?) , |
||
string? | filter = default(string?) , |
||
List< string >? | sortBy = default(List< string >?) , |
||
string? | page = default(string?) , |
||
int | operationIndex = 0 , |
||
ConfigurationOptions? | opts = null |
||
) |
[EARLY ACCESS] ListCustomEntityTypes: List Custom Entity Types.
List all Custom Entity Types matching particular criteria.
Lusid.Sdk.Client.ApiException | Thrown when fails to make API call |
asAt | The asAt datetime at which to list the entities. Defaults to returning the latest version of each Custom Entity Type if not specified. (optional) |
limit | When paginating, limit the results to this number. Defaults to 100 if not specified. (optional) |
filter | Expression to filter the results. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914. (optional) |
sortBy | A list of field names to sort by, each suffixed by " ASC" or " DESC" (optional) |
page | The pagination token to use to continue listing entities; this value is returned from the previous call. If a pagination token is provided, the filter, limit, sortBy, and asAt fields must not have changed since the original request. (optional) |
operationIndex | Index associated with the operation. |
opts | Options for this request. |
Implemented in Lusid.Sdk.Api.CustomEntityTypesApi.
CustomEntityType Lusid.Sdk.Api.ICustomEntityTypesApiSync.UpdateCustomEntityType | ( | string | entityType, |
UpdateCustomEntityTypeRequest | updateCustomEntityTypeRequest, | ||
int | operationIndex = 0 , |
||
ConfigurationOptions? | opts = null |
||
) |
[EARLY ACCESS] UpdateCustomEntityType: Modify an existing Custom Entity Type.
The API will return a Bad Request if the Custom Entity Type does not exist.
Lusid.Sdk.Client.ApiException | Thrown when fails to make API call |
entityType | The identifier for the Custom Entity Type, derived from the "entityTypeName" provided on creation. |
updateCustomEntityTypeRequest | The payload containing the description of the Custom Entity Type. |
operationIndex | Index associated with the operation. |
opts | Options for this request. |
Implemented in Lusid.Sdk.Api.CustomEntityTypesApi.
Lusid.Sdk.Client.ApiResponse<CustomEntityType> Lusid.Sdk.Api.ICustomEntityTypesApiSync.UpdateCustomEntityTypeWithHttpInfo | ( | string | entityType, |
UpdateCustomEntityTypeRequest | updateCustomEntityTypeRequest, | ||
int | operationIndex = 0 , |
||
ConfigurationOptions? | opts = null |
||
) |
[EARLY ACCESS] UpdateCustomEntityType: Modify an existing Custom Entity Type.
The API will return a Bad Request if the Custom Entity Type does not exist.
Lusid.Sdk.Client.ApiException | Thrown when fails to make API call |
entityType | The identifier for the Custom Entity Type, derived from the "entityTypeName" provided on creation. |
updateCustomEntityTypeRequest | The payload containing the description of the Custom Entity Type. |
operationIndex | Index associated with the operation. |
opts | Options for this request. |
Implemented in Lusid.Sdk.Api.CustomEntityTypesApi.