Table of Contents

Class AgentResponseContent

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

Properties

AdditionalProperties

[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }

Property Value

ReadOnlyAdditionalProperties

AgentId

The agent ID

[JsonPropertyName("agent_id")]
public required string AgentId { get; set; }

Property Value

string

CreatedAt

When the agent was created

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

Property Value

DateTime

ExternalAgentId

External identifier for the agent, if set. Omitted when not set.

[JsonPropertyName("external_agent_id")]
public string? ExternalAgentId { get; set; }

Property Value

string

Metadata

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

Property Value

Dictionary<string, object>

Name

The agent name

[JsonPropertyName("name")]
public required string Name { get; set; }

Property Value

string

UpdatedAt

When the agent was last 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.