Package org.bonitasoft.web.client.api
Interface ArchivedActivityVariableApi
-
- All Superinterfaces:
ApiClient.Api
@Generated("org.openapitools.codegen.languages.JavaClientCodegen") public interface ArchivedActivityVariableApi extends ApiClient.Api
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ArchivedActivityVariablegetArchivedActivityInstanceVariable(String id, String variableName)Finds the ArchivedActivityVariable by case ID and name Since 2022.1 Returns the single ArchivedActivityVariable for the given activity ID and variable nameApiResponse<ArchivedActivityVariable>getArchivedActivityInstanceVariableWithHttpInfo(String id, String variableName)Finds the ArchivedActivityVariable by case ID and name Similar togetArchivedActivityInstanceVariablebut it also returns the http response headers .
-
-
-
Method Detail
-
getArchivedActivityInstanceVariable
ArchivedActivityVariable getArchivedActivityInstanceVariable(String id, String variableName)
Finds the ArchivedActivityVariable by case ID and name Since 2022.1 Returns the single ArchivedActivityVariable for the given activity ID and variable name- Parameters:
id- The identifier of the activity from which to retrieve the variable (required)variableName- The name of the variable to retrieve (required)- Returns:
- ArchivedActivityVariable
-
getArchivedActivityInstanceVariableWithHttpInfo
ApiResponse<ArchivedActivityVariable> getArchivedActivityInstanceVariableWithHttpInfo(String id, String variableName)
Finds the ArchivedActivityVariable by case ID and name Similar togetArchivedActivityInstanceVariablebut it also returns the http response headers . Since 2022.1 Returns the single ArchivedActivityVariable for the given activity ID and variable name- Parameters:
id- The identifier of the activity from which to retrieve the variable (required)variableName- The name of the variable to retrieve (required)- Returns:
- A ApiResponse that wraps the response boyd and the http headers.
-
-