Class Trigger
- Namespace
- Auth0.ManagementApi.Models.Actions
- Assembly
- Auth0.ManagementApi.dll
Represents a Trigger in Auth0
public class Trigger
- Inheritance
-
Trigger
- 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
CompatibleTriggers
Informs which other trigger supports the same event and api.
[JsonProperty("compatible_triggers")]
public IList<CompatibleTrigger> CompatibleTriggers { 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 this trigger.
[JsonProperty("runtimes")]
public IList<string> Runtimes { get; set; }
Property Value
Status
The trigger's 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; }