Class FlowExecutionSummary
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record FlowExecutionSummary : IJsonOnDeserialized, IEquatable<FlowExecutionSummary>
- Inheritance
-
FlowExecutionSummary
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
CreatedAt
The ISO 8601 formatted date when this flow execution was created.
[JsonPropertyName("created_at")]
public required DateTime CreatedAt { get; set; }
Property Value
EndedAt
The ISO 8601 formatted date when this flow execution ended.
[JsonPropertyName("ended_at")]
public DateTime? EndedAt { get; set; }
Property Value
Id
Flow execution identifier
[JsonPropertyName("id")]
public required string Id { get; set; }
Property Value
JourneyId
Journey id
[JsonPropertyName("journey_id")]
public string? JourneyId { get; set; }
Property Value
StartedAt
The ISO 8601 formatted date when this flow execution started.
[JsonPropertyName("started_at")]
public DateTime? StartedAt { get; set; }
Property Value
Status
Execution status
[JsonPropertyName("status")]
public required string Status { get; set; }
Property Value
TraceId
Trace id
[JsonPropertyName("trace_id")]
public required string TraceId { get; set; }
Property Value
UpdatedAt
The ISO 8601 formatted date when this flow execution was updated.
[JsonPropertyName("updated_at")]
public required 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.