Table of Contents

Class Action

Namespace
Auth0.ManagementApi.Models.Actions
Assembly
Auth0.ManagementApi.dll

Represents an action in Auth0

public class Action : ActionBase
Inheritance
Action
Inherited Members

Properties

AllChangesDeployed

True if all of an Action's contents have been deployed.

[JsonProperty("all_changes_deployed")]
public bool AllChangesDeployed { get; set; }

Property Value

bool

CreatedAt

The time when this action was created.

[JsonProperty("created_at")]
public DateTime CreatedAt { get; set; }

Property Value

DateTime

DeployedVersion

The version of the action that is currently deployed.

[JsonProperty("deployed_version")]
public ActionVersion DeployedVersion { get; set; }

Property Value

ActionVersion

Id

The unique ID of the action.

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

Property Value

string

Status

The build status of this action.

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

Property Value

string

SupportedTriggers

The list of triggers that this action supports.

[JsonProperty("supported_triggers")]
public IList<ActionSupportedTrigger> SupportedTriggers { get; set; }

Property Value

IList<ActionSupportedTrigger>

UpdatedAt

The time when this action was updated.

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

Property Value

DateTime