kappa_sdk.user_tasks.OutputParameters#
- class kappa_sdk.user_tasks.OutputParameters(parameters_dictionary)[source]#
Output parameters container.
Provides access to output (read/write) parameters of the user task.
Note
Should not be instantiated directly.
- Parameters:
parameters_dictionary (ParametersDictionary)
- __getitem__(parameter_name)[source]#
Gets the value of the user task parameter identified by its name.
- Parameters:
parameter_name (str) – The name of the User Task parameter.
- Return type:
bool | UUID | datetime | float | int | str | None
- __setitem__(parameter_name, value)[source]#
Sets the value of the user task parameter identified by its name.
- Parameters:
parameter_name (str) – The name of the User Task parameter.
value (bool | UUID | datetime | float | int | str | None) – The new value of the User Task parameter.
- Return type:
None
Methods
OutputParameters.items
()Access to the class like a real dictionary :returns:
key
,values
ofthe class