Table of Contents

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

DateTime

Id

Identifies a specific execution.

[JsonProperty("id")]
public string Id { get; set; }

Property Value

string

Results

Captures the results of a single action being executed.

[JsonProperty("results")]
public IList<ActionExecutionResult> Results { get; set; }

Property Value

IList<ActionExecutionResult>

Status

The overall status of an execution.

[JsonProperty("status")]
public string Status { get; set; }

Property Value

string

TriggerId

The actions extensibility point.

[JsonProperty("trigger_id")]
public string TriggerId { get; set; }

Property Value

string

UpdatedAt

The time that the execution finished executing.

[JsonProperty("updated_at")]
public DateTime UpdatedAt { get; set; }

Property Value

DateTime