Class CreateAgentRequestContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record CreateAgentRequestContent : IEquatable<CreateAgentRequestContent>
- Inheritance
-
CreateAgentRequestContent
- Implements
- Inherited Members
- Extension Methods
Properties
ClientId
Optional client ID to associate with the agent
[JsonPropertyName("client_id")]
public string? ClientId { get; set; }
Property Value
ExternalAgentId
Optional external identifier for the agent. Immutable after creation. Must be unique within the tenant.
[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. Cannot contain <, >, or null bytes.
[JsonPropertyName("name")]
public required string Name { 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.