LUSID C# SDK
Public Member Functions | List of all members
Lusid.Sdk.Api.ICustomEntityDefinitionsApiSync Interface Reference

Represents a collection of functions to interact with the API endpoints More...

Inheritance diagram for Lusid.Sdk.Api.ICustomEntityDefinitionsApiSync:
Inheritance graph
[legend]

Public Member Functions

CustomEntityDefinition CreateCustomEntityDefinition (CustomEntityDefinitionRequest customEntityDefinitionRequest, int operationIndex=0, ConfigurationOptions? opts=null)
 [EARLY ACCESS] CreateCustomEntityDefinition: Define a new Custom Entity type. More...
 
Lusid.Sdk.Client.ApiResponse< CustomEntityDefinitionCreateCustomEntityDefinitionWithHttpInfo (CustomEntityDefinitionRequest customEntityDefinitionRequest, int operationIndex=0, ConfigurationOptions? opts=null)
 [EARLY ACCESS] CreateCustomEntityDefinition: Define a new Custom Entity type. More...
 
CustomEntityDefinition GetDefinition (string entityType, DateTimeOffset? asAt=default(DateTimeOffset?), int operationIndex=0, ConfigurationOptions? opts=null)
 [EARLY ACCESS] GetDefinition: Get a Custom Entity type definition. More...
 
Lusid.Sdk.Client.ApiResponse< CustomEntityDefinitionGetDefinitionWithHttpInfo (string entityType, DateTimeOffset? asAt=default(DateTimeOffset?), int operationIndex=0, ConfigurationOptions? opts=null)
 [EARLY ACCESS] GetDefinition: Get a Custom Entity type definition. More...
 
PagedResourceListOfCustomEntityDefinition ListCustomEntityDefinitions (DateTimeOffset? asAt=default(DateTimeOffset?), int? limit=default(int?), string? filter=default(string?), string? page=default(string?), int operationIndex=0, ConfigurationOptions? opts=null)
 [EARLY ACCESS] ListCustomEntityDefinitions: List the Custom Entity type definitions More...
 
Lusid.Sdk.Client.ApiResponse< PagedResourceListOfCustomEntityDefinitionListCustomEntityDefinitionsWithHttpInfo (DateTimeOffset? asAt=default(DateTimeOffset?), int? limit=default(int?), string? filter=default(string?), string? page=default(string?), int operationIndex=0, ConfigurationOptions? opts=null)
 [EARLY ACCESS] ListCustomEntityDefinitions: List the Custom Entity type definitions More...
 
CustomEntityDefinition UpdateCustomEntityDefinition (string entityType, UpdateCustomEntityDefinitionRequest updateCustomEntityDefinitionRequest, int operationIndex=0, ConfigurationOptions? opts=null)
 [EARLY ACCESS] UpdateCustomEntityDefinition: Modify an existing Custom Entity type. More...
 
Lusid.Sdk.Client.ApiResponse< CustomEntityDefinitionUpdateCustomEntityDefinitionWithHttpInfo (string entityType, UpdateCustomEntityDefinitionRequest updateCustomEntityDefinitionRequest, int operationIndex=0, ConfigurationOptions? opts=null)
 [EARLY ACCESS] UpdateCustomEntityDefinition: Modify an existing Custom Entity type. More...
 

Detailed Description

Represents a collection of functions to interact with the API endpoints

Member Function Documentation

◆ CreateCustomEntityDefinition()

CustomEntityDefinition Lusid.Sdk.Api.ICustomEntityDefinitionsApiSync.CreateCustomEntityDefinition ( CustomEntityDefinitionRequest  customEntityDefinitionRequest,
int  operationIndex = 0,
ConfigurationOptions opts = null 
)

[EARLY ACCESS] CreateCustomEntityDefinition: Define a new Custom Entity type.

The API will return a Bad Request if the Custom Entity type already exists.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
customEntityDefinitionRequestThe payload containing the description of the Custom Entity type.
operationIndexIndex associated with the operation.
optsOptions for this request.
Returns
CustomEntityDefinition

Implemented in Lusid.Sdk.Api.CustomEntityDefinitionsApi.

◆ CreateCustomEntityDefinitionWithHttpInfo()

Lusid.Sdk.Client.ApiResponse<CustomEntityDefinition> Lusid.Sdk.Api.ICustomEntityDefinitionsApiSync.CreateCustomEntityDefinitionWithHttpInfo ( CustomEntityDefinitionRequest  customEntityDefinitionRequest,
int  operationIndex = 0,
ConfigurationOptions opts = null 
)

[EARLY ACCESS] CreateCustomEntityDefinition: Define a new Custom Entity type.

The API will return a Bad Request if the Custom Entity type already exists.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
customEntityDefinitionRequestThe payload containing the description of the Custom Entity type.
operationIndexIndex associated with the operation.
optsOptions for this request.
Returns
ApiResponse of CustomEntityDefinition

Implemented in Lusid.Sdk.Api.CustomEntityDefinitionsApi.

◆ GetDefinition()

CustomEntityDefinition Lusid.Sdk.Api.ICustomEntityDefinitionsApiSync.GetDefinition ( string  entityType,
DateTimeOffset?  asAt = default(DateTimeOffset?),
int  operationIndex = 0,
ConfigurationOptions opts = null 
)

[EARLY ACCESS] GetDefinition: Get a Custom Entity type definition.

Retrieve a CustomEntityDefinition by a specific entityType at a point in AsAt time

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
entityTypeThe identifier for the Custom Entity type, derived from the &quot;entityTypeName&quot; provided on creation.
asAtThe AsAt datetime at which to retrieve the definition. (optional)
operationIndexIndex associated with the operation.
optsOptions for this request.
Returns
CustomEntityDefinition

Implemented in Lusid.Sdk.Api.CustomEntityDefinitionsApi.

◆ GetDefinitionWithHttpInfo()

Lusid.Sdk.Client.ApiResponse<CustomEntityDefinition> Lusid.Sdk.Api.ICustomEntityDefinitionsApiSync.GetDefinitionWithHttpInfo ( string  entityType,
DateTimeOffset?  asAt = default(DateTimeOffset?),
int  operationIndex = 0,
ConfigurationOptions opts = null 
)

[EARLY ACCESS] GetDefinition: Get a Custom Entity type definition.

Retrieve a CustomEntityDefinition by a specific entityType at a point in AsAt time

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
entityTypeThe identifier for the Custom Entity type, derived from the &quot;entityTypeName&quot; provided on creation.
asAtThe AsAt datetime at which to retrieve the definition. (optional)
operationIndexIndex associated with the operation.
optsOptions for this request.
Returns
ApiResponse of CustomEntityDefinition

Implemented in Lusid.Sdk.Api.CustomEntityDefinitionsApi.

◆ ListCustomEntityDefinitions()

PagedResourceListOfCustomEntityDefinition Lusid.Sdk.Api.ICustomEntityDefinitionsApiSync.ListCustomEntityDefinitions ( DateTimeOffset?  asAt = default(DateTimeOffset?),
int?  limit = default(int?),
string?  filter = default(string?),
string?  page = default(string?),
int  operationIndex = 0,
ConfigurationOptions opts = null 
)

[EARLY ACCESS] ListCustomEntityDefinitions: List the Custom Entity type definitions

List all Custom Entity type definitions matching particular criteria.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
asAtThe asAt datetime at which to list the entities. Defaults to returning the latest version of each portfolio if not specified. (optional)
limitWhen paginating, limit the results to this number. Defaults to 100 if not specified. (optional)
filterExpression to filter the results. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914. (optional)
pageThe 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 and asAt fields must not have changed since the original request. (optional)
operationIndexIndex associated with the operation.
optsOptions for this request.
Returns
PagedResourceListOfCustomEntityDefinition

Implemented in Lusid.Sdk.Api.CustomEntityDefinitionsApi.

◆ ListCustomEntityDefinitionsWithHttpInfo()

Lusid.Sdk.Client.ApiResponse<PagedResourceListOfCustomEntityDefinition> Lusid.Sdk.Api.ICustomEntityDefinitionsApiSync.ListCustomEntityDefinitionsWithHttpInfo ( DateTimeOffset?  asAt = default(DateTimeOffset?),
int?  limit = default(int?),
string?  filter = default(string?),
string?  page = default(string?),
int  operationIndex = 0,
ConfigurationOptions opts = null 
)

[EARLY ACCESS] ListCustomEntityDefinitions: List the Custom Entity type definitions

List all Custom Entity type definitions matching particular criteria.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
asAtThe asAt datetime at which to list the entities. Defaults to returning the latest version of each portfolio if not specified. (optional)
limitWhen paginating, limit the results to this number. Defaults to 100 if not specified. (optional)
filterExpression to filter the results. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914. (optional)
pageThe 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 and asAt fields must not have changed since the original request. (optional)
operationIndexIndex associated with the operation.
optsOptions for this request.
Returns
ApiResponse of PagedResourceListOfCustomEntityDefinition

Implemented in Lusid.Sdk.Api.CustomEntityDefinitionsApi.

◆ UpdateCustomEntityDefinition()

CustomEntityDefinition Lusid.Sdk.Api.ICustomEntityDefinitionsApiSync.UpdateCustomEntityDefinition ( string  entityType,
UpdateCustomEntityDefinitionRequest  updateCustomEntityDefinitionRequest,
int  operationIndex = 0,
ConfigurationOptions opts = null 
)

[EARLY ACCESS] UpdateCustomEntityDefinition: Modify an existing Custom Entity type.

The API will return a Bad Request if the Custom Entity type does not exist.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
entityTypeThe identifier for the Custom Entity type, derived from the &quot;entityTypeName&quot; provided on creation.
updateCustomEntityDefinitionRequestThe payload containing the description of the Custom Entity type.
operationIndexIndex associated with the operation.
optsOptions for this request.
Returns
CustomEntityDefinition

Implemented in Lusid.Sdk.Api.CustomEntityDefinitionsApi.

◆ UpdateCustomEntityDefinitionWithHttpInfo()

Lusid.Sdk.Client.ApiResponse<CustomEntityDefinition> Lusid.Sdk.Api.ICustomEntityDefinitionsApiSync.UpdateCustomEntityDefinitionWithHttpInfo ( string  entityType,
UpdateCustomEntityDefinitionRequest  updateCustomEntityDefinitionRequest,
int  operationIndex = 0,
ConfigurationOptions opts = null 
)

[EARLY ACCESS] UpdateCustomEntityDefinition: Modify an existing Custom Entity type.

The API will return a Bad Request if the Custom Entity type does not exist.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
entityTypeThe identifier for the Custom Entity type, derived from the &quot;entityTypeName&quot; provided on creation.
updateCustomEntityDefinitionRequestThe payload containing the description of the Custom Entity type.
operationIndexIndex associated with the operation.
optsOptions for this request.
Returns
ApiResponse of CustomEntityDefinition

Implemented in Lusid.Sdk.Api.CustomEntityDefinitionsApi.


The documentation for this interface was generated from the following file: