Class UpdateClientGrantRequestContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record UpdateClientGrantRequestContent : IEquatable<UpdateClientGrantRequestContent>
- Inheritance
-
UpdateClientGrantRequestContent
- Implements
- Inherited Members
- Extension Methods
Properties
AllowAllScopes
If enabled, all scopes configured on the resource server are allowed for this grant.
[JsonPropertyName("allow_all_scopes")]
public Optional<bool?> AllowAllScopes { get; set; }
Property Value
AllowAnyOrganization
Controls allowing any organization to be used with this grant
[JsonPropertyName("allow_any_organization")]
public Optional<bool?> AllowAnyOrganization { 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
OrganizationUsage
[JsonPropertyName("organization_usage")]
public Optional<ClientGrantOrganizationNullableUsageEnum?> OrganizationUsage { get; set; }
Property Value
Scope
Scopes allowed for this client grant.
[JsonPropertyName("scope")]
public Optional<IEnumerable<string>?> Scope { 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.