Table of Contents

Class ActionExecutionResult

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll

Captures the results of a single action being executed.

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

Properties

ActionName

The name of the action that was executed.

[JsonPropertyName("action_name")]
public string? ActionName { get; set; }

Property Value

string

AdditionalProperties

[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }

Property Value

ReadOnlyAdditionalProperties

EndedAt

The time when the action finished executing.

[JsonPropertyName("ended_at")]
public DateTime? EndedAt { get; set; }

Property Value

DateTime?

Error

[JsonPropertyName("error")]
public ActionError? Error { get; set; }

Property Value

ActionError

StartedAt

The time when the action was started.

[JsonPropertyName("started_at")]
public DateTime? StartedAt { 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.