Table of Contents

Class GetActionExecutionResponseContent

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll

The result of a specific execution of a trigger.

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

Properties

AdditionalProperties

[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }

Property Value

ReadOnlyAdditionalProperties

CreatedAt

The time that the execution was started.

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

Property Value

DateTime?

Id

ID identifies this specific execution simulation. These IDs would resemble real executions in production.

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

Property Value

string

Results

[JsonPropertyName("results")]
public IEnumerable<ActionExecutionResult>? Results { get; set; }

Property Value

IEnumerable<ActionExecutionResult>

Status

[JsonPropertyName("status")]
public ActionExecutionStatusEnum? Status { get; set; }

Property Value

ActionExecutionStatusEnum?

TriggerId

[JsonPropertyName("trigger_id")]
public ActionTriggerTypeEnum? TriggerId { get; set; }

Property Value

ActionTriggerTypeEnum?

UpdatedAt

The time that the exeution finished executing.

[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.