Class OrganizationClientGrant
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record OrganizationClientGrant : IJsonOnDeserialized, IEquatable<OrganizationClientGrant>
- Inheritance
-
OrganizationClientGrant
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
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
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
OrganizationUsage
[JsonPropertyName("organization_usage")]
public OrganizationUsageEnum? OrganizationUsage { get; set; }
Property Value
Scope
Scopes allowed for this client grant.
[JsonPropertyName("scope")]
public 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.