Interface ObjectLifecycleUserActionInputParameterMetadata
public interface ObjectLifecycleUserActionInputParameterMetadata
Provides methods to retrieve metadata fields for a specific object action's input object.
-
Method Summary
Modifier and TypeMethodDescriptionIf the requested action is a RecordAction annotated with auser_input_object
, then retrieves the name of theuser_input_object
.If the requested action is a RecordAction 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 RecordAction annotated with auser_input_object
, then retrieves the name of theuser_input_object
. Returns null if the RecordAction does not have a user input object, or if the action is not a RecordAction.- Returns:
- name of the
user_input_object
, or null.
-
getUserInputObjectTypeName
String getUserInputObjectTypeName()If the requested action is a RecordAction annotated with auser_input_object_type
, then retrieves the name of theuser_input_object_type
. Returns null if the RecordAction does not have a user input object type, or if the action is not a RecordAction.- Returns:
- name of the
user_input_object_type
, or null.
-