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
AgentId
The agent ID
[JsonPropertyName("agent_id")]
public required string AgentId { get; set; }
Property Value
CreatedAt
When the agent was created
[JsonPropertyName("created_at")]
public required DateTime CreatedAt { get; set; }
Property Value
ExternalAgentId
External identifier for the agent, if set. Omitted when not set.
[JsonPropertyName("external_agent_id")]
public string? ExternalAgentId { get; set; }
Property Value
Metadata
[JsonPropertyName("metadata")]
public Dictionary<string, object?> Metadata { get; set; }
Property Value
Name
The agent name
[JsonPropertyName("name")]
public required string Name { get; set; }
Property Value
UpdatedAt
When the agent was last 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.