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
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
EndedAt
The time when the action finished executing.
[JsonPropertyName("ended_at")]
public DateTime? EndedAt { get; set; }
Property Value
Error
[JsonPropertyName("error")]
public ActionError? Error { get; set; }
Property Value
StartedAt
The time when the action was started.
[JsonPropertyName("started_at")]
public DateTime? StartedAt { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.