Class BindingActionReference

java.lang.Object
com.auth0.json.mgmt.actions.BindingActionReference

public class BindingActionReference extends Object
Represents an action to bind to a trigger when updating a trigger's binding.
See Also:
  • Constructor Details

    • BindingActionReference

      public BindingActionReference(String type, String value)
      Create a new instance.
      Parameters:
      type - the type of action reference that will be used for the value, e.g., "action_name" or "action_id".
      value - the value of the action reference. This is used along with the type parameter to associate an action. For example, new BindingActionReference("action_id", "abc") would create a binding reference to the action with ID "abc".
  • Method Details

    • getType

      public String getType()
      Returns:
      the reference type.
    • getValue

      public String getValue()
      Returns:
      the reference value.