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

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

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

Public Member Functions

System.Threading.Tasks.Task< TransactionTemplateCreateTransactionTemplateAsync (string instrumentEventType, string instrumentType, string scope, TransactionTemplateRequest transactionTemplateRequest, int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 [EXPERIMENTAL] CreateTransactionTemplate: Create Transaction Template More...
 
System.Threading.Tasks.Task< ApiResponse< TransactionTemplate > > CreateTransactionTemplateWithHttpInfoAsync (string instrumentEventType, string instrumentType, string scope, TransactionTemplateRequest transactionTemplateRequest, int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 [EXPERIMENTAL] CreateTransactionTemplate: Create Transaction Template More...
 
System.Threading.Tasks.Task< DateTimeOffset > DeleteTransactionTemplateAsync (string instrumentEventType, string instrumentType, string scope, int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 [EXPERIMENTAL] DeleteTransactionTemplate: Delete Transaction Template More...
 
System.Threading.Tasks.Task< ApiResponse< DateTimeOffset > > DeleteTransactionTemplateWithHttpInfoAsync (string instrumentEventType, string instrumentType, string scope, int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 [EXPERIMENTAL] DeleteTransactionTemplate: Delete Transaction Template More...
 
System.Threading.Tasks.Task< TransactionTemplateGetTransactionTemplateAsync (string instrumentEventType, string instrumentType, string scope, DateTimeOffset? asAt=default(DateTimeOffset?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 [EXPERIMENTAL] GetTransactionTemplate: Get Transaction Template More...
 
System.Threading.Tasks.Task< ApiResponse< TransactionTemplate > > GetTransactionTemplateWithHttpInfoAsync (string instrumentEventType, string instrumentType, string scope, DateTimeOffset? asAt=default(DateTimeOffset?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 [EXPERIMENTAL] GetTransactionTemplate: Get Transaction Template More...
 
System.Threading.Tasks.Task< TransactionTemplateSpecificationGetTransactionTemplateSpecificationAsync (string instrumentEventType, int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 [EXPERIMENTAL] GetTransactionTemplateSpecification: Get Transaction Template Specification. More...
 
System.Threading.Tasks.Task< ApiResponse< TransactionTemplateSpecification > > GetTransactionTemplateSpecificationWithHttpInfoAsync (string instrumentEventType, int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 [EXPERIMENTAL] GetTransactionTemplateSpecification: Get Transaction Template Specification. More...
 
System.Threading.Tasks.Task< PagedResourceListOfTransactionTemplateSpecificationListTransactionTemplateSpecificationsAsync (DateTimeOffset? asAt=default(DateTimeOffset?), string? page=default(string?), int? limit=default(int?), string? filter=default(string?), List< string >? sortBy=default(List< string >?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 [EXPERIMENTAL] ListTransactionTemplateSpecifications: List Transaction Template Specifications. More...
 
System.Threading.Tasks.Task< ApiResponse< PagedResourceListOfTransactionTemplateSpecification > > ListTransactionTemplateSpecificationsWithHttpInfoAsync (DateTimeOffset? asAt=default(DateTimeOffset?), string? page=default(string?), int? limit=default(int?), string? filter=default(string?), List< string >? sortBy=default(List< string >?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 [EXPERIMENTAL] ListTransactionTemplateSpecifications: List Transaction Template Specifications. More...
 
System.Threading.Tasks.Task< PagedResourceListOfTransactionTemplateListTransactionTemplatesAsync (DateTimeOffset? asAt=default(DateTimeOffset?), string? page=default(string?), int? limit=default(int?), string? filter=default(string?), List< string >? sortBy=default(List< string >?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 [EXPERIMENTAL] ListTransactionTemplates: List Transaction Templates More...
 
System.Threading.Tasks.Task< ApiResponse< PagedResourceListOfTransactionTemplate > > ListTransactionTemplatesWithHttpInfoAsync (DateTimeOffset? asAt=default(DateTimeOffset?), string? page=default(string?), int? limit=default(int?), string? filter=default(string?), List< string >? sortBy=default(List< string >?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 [EXPERIMENTAL] ListTransactionTemplates: List Transaction Templates More...
 
System.Threading.Tasks.Task< TransactionTemplateUpdateTransactionTemplateAsync (string instrumentEventType, string instrumentType, string scope, TransactionTemplateRequest transactionTemplateRequest, int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 [EXPERIMENTAL] UpdateTransactionTemplate: Update Transaction Template More...
 
System.Threading.Tasks.Task< ApiResponse< TransactionTemplate > > UpdateTransactionTemplateWithHttpInfoAsync (string instrumentEventType, string instrumentType, string scope, TransactionTemplateRequest transactionTemplateRequest, int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 [EXPERIMENTAL] UpdateTransactionTemplate: Update Transaction Template More...
 
- Public Member Functions inherited from Lusid.Sdk.Client.IApiAccessor
string GetBasePath ()
 Gets the base path of the API client. More...
 

Additional Inherited Members

- Properties inherited from Lusid.Sdk.Client.IApiAccessor
IReadableConfiguration Configuration [get, set]
 Gets or sets the configuration object More...
 
ExceptionFactory ExceptionFactory [get, set]
 Provides a factory method hook for the creation of exceptions. More...
 

Detailed Description

Represents a collection of functions to interact with the API endpoints

Member Function Documentation

◆ CreateTransactionTemplateAsync()

System.Threading.Tasks.Task<TransactionTemplate> Lusid.Sdk.Api.IInstrumentEventTypesApiAsync.CreateTransactionTemplateAsync ( string  instrumentEventType,
string  instrumentType,
string  scope,
TransactionTemplateRequest  transactionTemplateRequest,
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

[EXPERIMENTAL] CreateTransactionTemplate: Create Transaction Template

Create a transaction template for a particular instrument event type in a scope.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
instrumentEventTypeThe type of instrument events that the template is applied to.
instrumentTypeThe instrument type of the transaction template. The combination of the instrument event type, instrument type and scope uniquely identifies a transaction template
scopeThe scope in which the template lies.
transactionTemplateRequestA request defining a new transaction template to be created.
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of TransactionTemplate

Implemented in Lusid.Sdk.Api.InstrumentEventTypesApi.

◆ CreateTransactionTemplateWithHttpInfoAsync()

System.Threading.Tasks.Task<ApiResponse<TransactionTemplate> > Lusid.Sdk.Api.IInstrumentEventTypesApiAsync.CreateTransactionTemplateWithHttpInfoAsync ( string  instrumentEventType,
string  instrumentType,
string  scope,
TransactionTemplateRequest  transactionTemplateRequest,
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

[EXPERIMENTAL] CreateTransactionTemplate: Create Transaction Template

Create a transaction template for a particular instrument event type in a scope.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
instrumentEventTypeThe type of instrument events that the template is applied to.
instrumentTypeThe instrument type of the transaction template. The combination of the instrument event type, instrument type and scope uniquely identifies a transaction template
scopeThe scope in which the template lies.
transactionTemplateRequestA request defining a new transaction template to be created.
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of ApiResponse (TransactionTemplate)

Implemented in Lusid.Sdk.Api.InstrumentEventTypesApi.

◆ DeleteTransactionTemplateAsync()

System.Threading.Tasks.Task<DateTimeOffset> Lusid.Sdk.Api.IInstrumentEventTypesApiAsync.DeleteTransactionTemplateAsync ( string  instrumentEventType,
string  instrumentType,
string  scope,
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

[EXPERIMENTAL] DeleteTransactionTemplate: Delete Transaction Template

Delete a transaction template for a particular instrument event type in a scope.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
instrumentEventTypeThe type of instrument events that the template is applied to.
instrumentTypeThe instrument type of the transaction template. The combination of the instrument event type, instrument type and scope uniquely identifies a transaction template
scopeThe scope of the template.
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of DateTimeOffset

Implemented in Lusid.Sdk.Api.InstrumentEventTypesApi.

◆ DeleteTransactionTemplateWithHttpInfoAsync()

System.Threading.Tasks.Task<ApiResponse<DateTimeOffset> > Lusid.Sdk.Api.IInstrumentEventTypesApiAsync.DeleteTransactionTemplateWithHttpInfoAsync ( string  instrumentEventType,
string  instrumentType,
string  scope,
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

[EXPERIMENTAL] DeleteTransactionTemplate: Delete Transaction Template

Delete a transaction template for a particular instrument event type in a scope.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
instrumentEventTypeThe type of instrument events that the template is applied to.
instrumentTypeThe instrument type of the transaction template. The combination of the instrument event type, instrument type and scope uniquely identifies a transaction template
scopeThe scope of the template.
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of ApiResponse (DateTimeOffset)

Implemented in Lusid.Sdk.Api.InstrumentEventTypesApi.

◆ GetTransactionTemplateAsync()

System.Threading.Tasks.Task<TransactionTemplate> Lusid.Sdk.Api.IInstrumentEventTypesApiAsync.GetTransactionTemplateAsync ( string  instrumentEventType,
string  instrumentType,
string  scope,
DateTimeOffset?  asAt = default(DateTimeOffset?),
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

[EXPERIMENTAL] GetTransactionTemplate: Get Transaction Template

Gets the Transaction Template that for the instrument event type within the scope specified.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
instrumentEventTypeThe instrument event type of the transaction template
instrumentTypeThe instrument type of the transaction template. The combination of the instrument event type, instrument type and scope uniquely identifies a transaction template
scopeThe scope in which the template lies. When not supplied the scope is &#39;default&#39;.
asAtThe AsAt time of the requested Transaction Template (optional)
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of TransactionTemplate

Implemented in Lusid.Sdk.Api.InstrumentEventTypesApi.

◆ GetTransactionTemplateSpecificationAsync()

System.Threading.Tasks.Task<TransactionTemplateSpecification> Lusid.Sdk.Api.IInstrumentEventTypesApiAsync.GetTransactionTemplateSpecificationAsync ( string  instrumentEventType,
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

[EXPERIMENTAL] GetTransactionTemplateSpecification: Get Transaction Template Specification.

Retrieve the transaction template specification for a particular event type.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
instrumentEventTypeThe requested instrument event type.
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of TransactionTemplateSpecification

Implemented in Lusid.Sdk.Api.InstrumentEventTypesApi.

◆ GetTransactionTemplateSpecificationWithHttpInfoAsync()

System.Threading.Tasks.Task<ApiResponse<TransactionTemplateSpecification> > Lusid.Sdk.Api.IInstrumentEventTypesApiAsync.GetTransactionTemplateSpecificationWithHttpInfoAsync ( string  instrumentEventType,
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

[EXPERIMENTAL] GetTransactionTemplateSpecification: Get Transaction Template Specification.

Retrieve the transaction template specification for a particular event type.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
instrumentEventTypeThe requested instrument event type.
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of ApiResponse (TransactionTemplateSpecification)

Implemented in Lusid.Sdk.Api.InstrumentEventTypesApi.

◆ GetTransactionTemplateWithHttpInfoAsync()

System.Threading.Tasks.Task<ApiResponse<TransactionTemplate> > Lusid.Sdk.Api.IInstrumentEventTypesApiAsync.GetTransactionTemplateWithHttpInfoAsync ( string  instrumentEventType,
string  instrumentType,
string  scope,
DateTimeOffset?  asAt = default(DateTimeOffset?),
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

[EXPERIMENTAL] GetTransactionTemplate: Get Transaction Template

Gets the Transaction Template that for the instrument event type within the scope specified.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
instrumentEventTypeThe instrument event type of the transaction template
instrumentTypeThe instrument type of the transaction template. The combination of the instrument event type, instrument type and scope uniquely identifies a transaction template
scopeThe scope in which the template lies. When not supplied the scope is &#39;default&#39;.
asAtThe AsAt time of the requested Transaction Template (optional)
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of ApiResponse (TransactionTemplate)

Implemented in Lusid.Sdk.Api.InstrumentEventTypesApi.

◆ ListTransactionTemplatesAsync()

System.Threading.Tasks.Task<PagedResourceListOfTransactionTemplate> Lusid.Sdk.Api.IInstrumentEventTypesApiAsync.ListTransactionTemplatesAsync ( DateTimeOffset?  asAt = default(DateTimeOffset?),
string?  page = default(string?),
int?  limit = default(int?),
string?  filter = default(string?),
List< string >?  sortBy = default(List< string >?),
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

[EXPERIMENTAL] ListTransactionTemplates: List Transaction Templates

Lists all Transaction Templates.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
asAtThe AsAt time at which to retrieve the Transaction Templates (optional)
pageThe pagination token to use to continue listing Transaction Templates from a previous call to list Transaction Templates. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, limit, and asAt fields must not have changed since the original request. (optional)
limitWhen paginating, limit the number of returned results to this many. (optional)
filterExpression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid. (optional)
sortByA list of field names to sort by, each suffixed by &quot; ASC&quot; or &quot; DESC&quot; (optional)
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of PagedResourceListOfTransactionTemplate

Implemented in Lusid.Sdk.Api.InstrumentEventTypesApi.

◆ ListTransactionTemplateSpecificationsAsync()

System.Threading.Tasks.Task<PagedResourceListOfTransactionTemplateSpecification> Lusid.Sdk.Api.IInstrumentEventTypesApiAsync.ListTransactionTemplateSpecificationsAsync ( DateTimeOffset?  asAt = default(DateTimeOffset?),
string?  page = default(string?),
int?  limit = default(int?),
string?  filter = default(string?),
List< string >?  sortBy = default(List< string >?),
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

[EXPERIMENTAL] ListTransactionTemplateSpecifications: List Transaction Template Specifications.

Retrieves all transaction template specifications.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
asAtAsAt of the request (optional)
pageThe pagination token to use to continue listing Transaction Template Specifications from a previous call to list Transaction Template Specifications. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, and asAt fields must not have changed since the original request. (optional)
limitWhen paginating, limit the number of returned results to this many. (optional)
filterExpression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid. (optional)
sortByA list of field names to sort by, each suffixed by &quot; ASC&quot; or &quot; DESC&quot;. (optional)
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of PagedResourceListOfTransactionTemplateSpecification

Implemented in Lusid.Sdk.Api.InstrumentEventTypesApi.

◆ ListTransactionTemplateSpecificationsWithHttpInfoAsync()

System.Threading.Tasks.Task<ApiResponse<PagedResourceListOfTransactionTemplateSpecification> > Lusid.Sdk.Api.IInstrumentEventTypesApiAsync.ListTransactionTemplateSpecificationsWithHttpInfoAsync ( DateTimeOffset?  asAt = default(DateTimeOffset?),
string?  page = default(string?),
int?  limit = default(int?),
string?  filter = default(string?),
List< string >?  sortBy = default(List< string >?),
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

[EXPERIMENTAL] ListTransactionTemplateSpecifications: List Transaction Template Specifications.

Retrieves all transaction template specifications.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
asAtAsAt of the request (optional)
pageThe pagination token to use to continue listing Transaction Template Specifications from a previous call to list Transaction Template Specifications. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, and asAt fields must not have changed since the original request. (optional)
limitWhen paginating, limit the number of returned results to this many. (optional)
filterExpression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid. (optional)
sortByA list of field names to sort by, each suffixed by &quot; ASC&quot; or &quot; DESC&quot;. (optional)
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of ApiResponse (PagedResourceListOfTransactionTemplateSpecification)

Implemented in Lusid.Sdk.Api.InstrumentEventTypesApi.

◆ ListTransactionTemplatesWithHttpInfoAsync()

System.Threading.Tasks.Task<ApiResponse<PagedResourceListOfTransactionTemplate> > Lusid.Sdk.Api.IInstrumentEventTypesApiAsync.ListTransactionTemplatesWithHttpInfoAsync ( DateTimeOffset?  asAt = default(DateTimeOffset?),
string?  page = default(string?),
int?  limit = default(int?),
string?  filter = default(string?),
List< string >?  sortBy = default(List< string >?),
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

[EXPERIMENTAL] ListTransactionTemplates: List Transaction Templates

Lists all Transaction Templates.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
asAtThe AsAt time at which to retrieve the Transaction Templates (optional)
pageThe pagination token to use to continue listing Transaction Templates from a previous call to list Transaction Templates. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, limit, and asAt fields must not have changed since the original request. (optional)
limitWhen paginating, limit the number of returned results to this many. (optional)
filterExpression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid. (optional)
sortByA list of field names to sort by, each suffixed by &quot; ASC&quot; or &quot; DESC&quot; (optional)
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of ApiResponse (PagedResourceListOfTransactionTemplate)

Implemented in Lusid.Sdk.Api.InstrumentEventTypesApi.

◆ UpdateTransactionTemplateAsync()

System.Threading.Tasks.Task<TransactionTemplate> Lusid.Sdk.Api.IInstrumentEventTypesApiAsync.UpdateTransactionTemplateAsync ( string  instrumentEventType,
string  instrumentType,
string  scope,
TransactionTemplateRequest  transactionTemplateRequest,
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

[EXPERIMENTAL] UpdateTransactionTemplate: Update Transaction Template

Update a transaction template for a particular instrument event type in a scope.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
instrumentEventTypeThe type of instrument events that the template is applied to.
instrumentTypeThe instrument type of the transaction template. The combination of the instrument event type, instrument type and scope uniquely identifies a transaction template
scopeThe scope in which the template lies.
transactionTemplateRequestA request defining the updated values for the transaction template.
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of TransactionTemplate

Implemented in Lusid.Sdk.Api.InstrumentEventTypesApi.

◆ UpdateTransactionTemplateWithHttpInfoAsync()

System.Threading.Tasks.Task<ApiResponse<TransactionTemplate> > Lusid.Sdk.Api.IInstrumentEventTypesApiAsync.UpdateTransactionTemplateWithHttpInfoAsync ( string  instrumentEventType,
string  instrumentType,
string  scope,
TransactionTemplateRequest  transactionTemplateRequest,
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

[EXPERIMENTAL] UpdateTransactionTemplate: Update Transaction Template

Update a transaction template for a particular instrument event type in a scope.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
instrumentEventTypeThe type of instrument events that the template is applied to.
instrumentTypeThe instrument type of the transaction template. The combination of the instrument event type, instrument type and scope uniquely identifies a transaction template
scopeThe scope in which the template lies.
transactionTemplateRequestA request defining the updated values for the transaction template.
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of ApiResponse (TransactionTemplate)

Implemented in Lusid.Sdk.Api.InstrumentEventTypesApi.


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