Table of Contents

Class CreateClientGrantResponseContent

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll
[Serializable]
public record CreateClientGrantResponseContent : IJsonOnDeserialized, IEquatable<CreateClientGrantResponseContent>
Inheritance
CreateClientGrantResponseContent
Implements
Inherited Members
Extension Methods

Properties

AdditionalProperties

[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }

Property Value

ReadOnlyAdditionalProperties

AllowAllScopes

If enabled, all scopes configured on the resource server are allowed for this grant.

[JsonPropertyName("allow_all_scopes")]
public bool? AllowAllScopes { get; set; }

Property Value

bool?

AllowAnyOrganization

If enabled, any organization can be used with this grant. If disabled (default), the grant must be explicitly assigned to the desired organizations.

[JsonPropertyName("allow_any_organization")]
public bool? AllowAnyOrganization { get; set; }

Property Value

bool?

Audience

The audience (API identifier) of this client grant.

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

Property Value

string

AuthorizationDetailsTypes

Types of authorization_details allowed for this client grant.

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

Property Value

IEnumerable<string>

ClientId

ID of the client.

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

Property Value

string

Id

ID of the client grant.

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

Property Value

string

IsSystem

If enabled, this grant is a special grant created by Auth0. It cannot be modified or deleted directly.

[JsonPropertyName("is_system")]
public bool? IsSystem { get; set; }

Property Value

bool?

OrganizationUsage

[JsonPropertyName("organization_usage")]
public ClientGrantOrganizationUsageEnum? OrganizationUsage { get; set; }

Property Value

ClientGrantOrganizationUsageEnum?

Scope

Scopes allowed for this client grant.

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

Property Value

IEnumerable<string>

SubjectType

[JsonPropertyName("subject_type")]
public ClientGrantSubjectTypeEnum? SubjectType { get; set; }

Property Value

ClientGrantSubjectTypeEnum?

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.