Class ConnectedAccount
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record ConnectedAccount : IJsonOnDeserialized, IEquatable<ConnectedAccount>
- Inheritance
-
ConnectedAccount
- Implements
- Inherited Members
- Extension Methods
Properties
AccessType
[JsonPropertyName("access_type")]
public required ConnectedAccountAccessTypeEnum AccessType { get; set; }
Property Value
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
Connection
The name of the connection associated with the account.
[JsonPropertyName("connection")]
public required string Connection { get; set; }
Property Value
ConnectionId
The unique identifier of the connection associated with the account.
[JsonPropertyName("connection_id")]
public required string ConnectionId { get; set; }
Property Value
CreatedAt
ISO 8601 timestamp when the connected account was created.
[JsonPropertyName("created_at")]
public required DateTime CreatedAt { get; set; }
Property Value
ExpiresAt
ISO 8601 timestamp when the connected account expires.
[JsonPropertyName("expires_at")]
public DateTime? ExpiresAt { get; set; }
Property Value
Id
The unique identifier for the connected account.
[JsonPropertyName("id")]
public required string Id { get; set; }
Property Value
Scopes
The scopes granted for this connected account.
[JsonPropertyName("scopes")]
public IEnumerable<string>? Scopes { get; set; }
Property Value
Strategy
The authentication strategy used by the connection.
[JsonPropertyName("strategy")]
public required string Strategy { 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.