Class OrganizationClientMetadata
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
Metadata about the associated client.
[Serializable]
public record OrganizationClientMetadata : IJsonOnDeserialized, IEquatable<OrganizationClientMetadata>
- Inheritance
-
OrganizationClientMetadata
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
AppType
The type of the client application.
[JsonPropertyName("app_type")]
public string? AppType { get; set; }
Property Value
GrantTypes
The grant types enabled for the client.
[JsonPropertyName("grant_types")]
public IEnumerable<string>? GrantTypes { get; set; }
Property Value
IsFirstParty
Whether this client is a first-party client (true) or not (false).
[JsonPropertyName("is_first_party")]
public bool? IsFirstParty { get; set; }
Property Value
- bool?
LogoUri
The URI of the client logo.
[JsonPropertyName("logo_uri")]
public Optional<string?> LogoUri { get; set; }
Property Value
Name
The name of the client.
[JsonPropertyName("name")]
public string? Name { get; set; }
Property Value
OrganizationUsage
[JsonPropertyName("organization_usage")]
public OrganizationClientMetadataOrganizationUsageEnum? OrganizationUsage { 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.