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
CreatedAt
The time that the execution was started.
[JsonPropertyName("created_at")]
public DateTime? CreatedAt { get; set; }
Property Value
Id
ID identifies this specific execution simulation. These IDs would resemble real executions in production.
[JsonPropertyName("id")]
public string? Id { get; set; }
Property Value
Results
[JsonPropertyName("results")]
public IEnumerable<ActionExecutionResult>? Results { get; set; }
Property Value
Status
[JsonPropertyName("status")]
public ActionExecutionStatusEnum? Status { get; set; }
Property Value
TriggerId
[JsonPropertyName("trigger_id")]
public ActionTriggerTypeEnum? TriggerId { get; set; }
Property Value
UpdatedAt
The time that the exeution finished executing.
[JsonPropertyName("updated_at")]
public DateTime? UpdatedAt { 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.