Table of Contents

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

ReadOnlyAdditionalProperties

Audience

Audience of the grant.

[JsonPropertyName("audience")]
public string? Audience { get; set; }

Property Value

string

ClientId

ID of the client.

[JsonPropertyName("clientID")]
public string? ClientId { get; set; }

Property Value

string

Id

ID of the grant.

[JsonPropertyName("id")]
public string? Id { get; set; }

Property Value

string

Scope

Scopes included in this grant.

[JsonPropertyName("scope")]
public IEnumerable<string>? Scope { get; set; }

Property Value

IEnumerable<string>

UserId

ID of the user.

[JsonPropertyName("user_id")]
public string? UserId { get; set; }

Property Value

string

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.