kappa_sdk.user_tasks.InputParameters#
- class kappa_sdk.user_tasks.InputParameters(parameters_dictionary)[source]#
Input parameters container.
Provides access to input (read-only) 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
Methods
Access to the class like a real dictionary :returns:
key,valuesofthe classGet only the keys (parameter names) of the parameters :returns:
Keysofthe parametersGet only the values of the parameters :returns:
Valuesofthe parameters- __init__(parameters_dictionary)[source]#
- Parameters:
parameters_dictionary (ParametersDictionary)
- Return type:
None
- __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
- items()[source]#
Access to the class like a real dictionary :returns:
key,valuesofthe class- Return type:
ItemsView[str, Any]