Class ActionExecution
- Namespace
- Auth0.ManagementApi.Models.Actions
- Assembly
- Auth0.ManagementApi.dll
public class ActionExecution
- Inheritance
-
ActionExecution
- Inherited Members
Properties
CreatedAt
The time that the execution was started.
[JsonProperty("created_at")]
public DateTime CreatedAt { get; set; }
Property Value
Id
Identifies a specific execution.
[JsonProperty("id")]
public string Id { get; set; }
Property Value
Results
Captures the results of a single action being executed.
[JsonProperty("results")]
public IList<ActionExecutionResult> Results { get; set; }
Property Value
Status
The overall status of an execution.
[JsonProperty("status")]
public string Status { get; set; }
Property Value
TriggerId
The actions extensibility point.
[JsonProperty("trigger_id")]
public string TriggerId { get; set; }
Property Value
UpdatedAt
The time that the execution finished executing.
[JsonProperty("updated_at")]
public DateTime UpdatedAt { get; set; }