Table of Contents

Class ActionBase

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll

The action to which this version belongs.

[Serializable]
public record ActionBase : IJsonOnDeserialized, IEquatable<ActionBase>
Inheritance
ActionBase
Implements
Inherited Members
Extension Methods

Properties

AdditionalProperties

[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }

Property Value

ReadOnlyAdditionalProperties

AllChangesDeployed

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

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

Property Value

bool?

CreatedAt

The time when this action was created.

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

Property Value

DateTime?

Id

The unique ID of the action.

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

Property Value

string

Name

The name of an action.

[JsonPropertyName("name")]
public string? Name { get; set; }

Property Value

string

SupportedTriggers

The list of triggers that this action supports. At this time, an action can only target a single trigger at a time.

[JsonPropertyName("supported_triggers")]
public IEnumerable<ActionTrigger>? SupportedTriggers { get; set; }

Property Value

IEnumerable<ActionTrigger>

UpdatedAt

The time when this action was updated.

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

Property Value

DateTime?

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.