Class ClientGrantResponseContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record ClientGrantResponseContent : IJsonOnDeserialized, IEquatable<ClientGrantResponseContent>
- Inheritance
-
ClientGrantResponseContent
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
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
AuthorizationDetailsTypes
Types of authorization_details allowed for this client grant.
[JsonPropertyName("authorization_details_types")]
public IEnumerable<string>? AuthorizationDetailsTypes { get; set; }
Property Value
ClientId
ID of the client.
[JsonPropertyName("client_id")]
public string? ClientId { get; set; }
Property Value
Id
ID of the client grant.
[JsonPropertyName("id")]
public string? Id { get; set; }
Property Value
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
Scope
Scopes allowed for this client grant.
[JsonPropertyName("scope")]
public IEnumerable<string>? Scope { get; set; }
Property Value
SubjectType
[JsonPropertyName("subject_type")]
public ClientGrantSubjectTypeEnum? SubjectType { 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.