Interface DocumentLifecycleUserActionUserInputMetadata
public interface DocumentLifecycleUserActionUserInputMetadata
Provides methods to retrieve metadata fields for a specific document action's input.
-
Method Summary
Modifier and TypeMethodDescriptionIf the requested action is a DocumentAction annotated with auser_input_object, then retrieves the name of theuser_input_object.If the requested action is a DocumentAction annotated with auser_input_object_type, then retrieves the name of theuser_input_object_type.
-
Method Details
-
getUserInputObjectName
String getUserInputObjectName()If the requested action is a DocumentAction annotated with auser_input_object, then retrieves the name of theuser_input_object. Returns null if the DocumentAction does not have a user input object, or if the action is not a DocumentAction.- Returns:
- name of the
user_input_object, or null
-
getUserInputObjectTypeName
String getUserInputObjectTypeName()If the requested action is a DocumentAction annotated with auser_input_object_type, then retrieves the name of theuser_input_object_type. Returns null if the DocumentAction does not have a user input object type, or if the action is not a DocumentAction.- Returns:
- name of the
user_input_object_type, or null
-