Table of Contents

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

ReadOnlyAdditionalProperties

AppType

The type of the client application.

[JsonPropertyName("app_type")]
public string? AppType { get; set; }

Property Value

string

GrantTypes

The grant types enabled for the client.

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

Property Value

IEnumerable<string>

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

Optional<string>

Name

The name of the client.

[JsonPropertyName("name")]
public string? Name { get; set; }

Property Value

string

OrganizationUsage

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

Property Value

OrganizationClientMetadataOrganizationUsageEnum?

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.