Table of Contents

Class GetFlowExecutionResponseContent

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll
[Serializable]
public record GetFlowExecutionResponseContent : IJsonOnDeserialized, IEquatable<GetFlowExecutionResponseContent>
Inheritance
GetFlowExecutionResponseContent
Implements
Inherited Members
Extension Methods

Properties

AdditionalProperties

[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }

Property Value

ReadOnlyAdditionalProperties

CreatedAt

The ISO 8601 formatted date when this flow execution was created.

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

Property Value

DateTime

Debug

[JsonPropertyName("debug")]
public Dictionary<string, object?>? Debug { get; set; }

Property Value

Dictionary<string, object>

EndedAt

The ISO 8601 formatted date when this flow execution ended.

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

Property Value

DateTime?

Id

Flow execution identifier

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

Property Value

string

JourneyId

Journey id

[JsonPropertyName("journey_id")]
public string? JourneyId { get; set; }

Property Value

string

StartedAt

The ISO 8601 formatted date when this flow execution started.

[JsonPropertyName("started_at")]
public DateTime? StartedAt { get; set; }

Property Value

DateTime?

Status

Execution status

[JsonPropertyName("status")]
public required string Status { get; set; }

Property Value

string

TraceId

Trace id

[JsonPropertyName("trace_id")]
public required string TraceId { get; set; }

Property Value

string

UpdatedAt

The ISO 8601 formatted date when this flow execution was updated.

[JsonPropertyName("updated_at")]
public required 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.