Class UserGrant
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record UserGrant : IJsonOnDeserialized, IEquatable<UserGrant>
- Inheritance
-
UserGrant
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
Audience
Audience of the grant.
[JsonPropertyName("audience")]
public string? Audience { get; set; }
Property Value
ClientId
ID of the client.
[JsonPropertyName("clientID")]
public string? ClientId { get; set; }
Property Value
Id
ID of the grant.
[JsonPropertyName("id")]
public string? Id { get; set; }
Property Value
Scope
Scopes included in this grant.
[JsonPropertyName("scope")]
public IEnumerable<string>? Scope { get; set; }
Property Value
UserId
ID of the user.
[JsonPropertyName("user_id")]
public string? UserId { 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.