Class Client
- Namespace
- Auth0.ManagementApi.Models
- Assembly
- Auth0.ManagementApi.dll
Represents a client (App) in Auth0
public class Client : ClientBase
- Inheritance
-
Client
- Inherited Members
Properties
ApplicationType
The type of application this client represents
[JsonProperty("app_type")]
[JsonConverter(typeof(StringEnumConverter))]
public ClientApplicationType ApplicationType { get; set; }
Property Value
ClientAuthenticationMethods
The client's authentication methods
[JsonProperty("client_authentication_methods")]
public ClientAuthenticationMethods ClientAuthenticationMethods { get; set; }
Property Value
ClientId
The id of the client.
[JsonProperty("client_id")]
public string ClientId { get; set; }
Property Value
SigningKeys
Client signing keys.
[JsonProperty("signing_keys")]
public SigningKey[] SigningKeys { get; set; }
Property Value
TokenEndpointAuthMethod
Defines the requested authentication method for the token endpoint.
[JsonProperty("token_endpoint_auth_method")]
[JsonConverter(typeof(StringEnumConverter))]
public TokenEndpointAuthMethod TokenEndpointAuthMethod { get; set; }