Class ActionSupportedTrigger
- Namespace
- Auth0.ManagementApi.Models.Actions
- Assembly
- Auth0.ManagementApi.dll
public class ActionSupportedTrigger
- Inheritance
-
ActionSupportedTrigger
- Inherited Members
Properties
BindingPolicy
In order to execute an Action, it must be bound to a trigger using a binding. trigger-bound means that bindings are managed by the tenant. entity-bound means that the bindings are automatically managed by Auth0 and other internal resources will control those bindings. Tenants cannot manage entity-bound bindings.
[JsonProperty("binding_policy")]
[JsonConverter(typeof(StringEnumConverter))]
public BindingPolicy BindingPolicy { get; set; }
Property Value
CompatibleTrigger
Informs which other trigger supports the same event and api.
[JsonProperty("compatible_triggers")]
public IList<CompatibleTrigger> CompatibleTrigger { get; set; }
Property Value
DefaultRuntime
Runtime that will be used when none is specified when creating an action.
[JsonProperty("default_runtime")]
public string DefaultRuntime { get; set; }
Property Value
Id
The actions extensibility point
[JsonProperty("id")]
public string Id { get; set; }
Property Value
Runtimes
Runtimes supported by the trigger.
[JsonProperty("runtimes")]
public string[] Runtimes { get; set; }
Property Value
- string[]
Status
Points to the trigger status.
[JsonProperty("status")]
public string Status { get; set; }
Property Value
Version
The version of a trigger. v1, v2, etc.
[JsonProperty("version")]
public string Version { get; set; }