Table of Contents

Class ClientAddonFirebase

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll

Google Firebase addon configuration.

[Serializable]
public record ClientAddonFirebase : IJsonOnDeserialized, IJsonOnSerializing, IEquatable<ClientAddonFirebase>
Inheritance
ClientAddonFirebase
Implements
Inherited Members
Extension Methods

Properties

AdditionalProperties

[JsonIgnore]
public AdditionalProperties AdditionalProperties { get; set; }

Property Value

AdditionalProperties

ClientEmail

ID of the Service Account you have created (shown as client_email in the generated JSON file, SDK v3+ tokens only).

[JsonPropertyName("client_email")]
public string? ClientEmail { get; set; }

Property Value

string

LifetimeInSeconds

Optional expiration in seconds for the generated token. Defaults to 3600 seconds (SDK v3+ tokens only).

[JsonPropertyName("lifetime_in_seconds")]
public int? LifetimeInSeconds { get; set; }

Property Value

int?

PrivateKey

Private Key for signing the token (SDK v3+ tokens only).

[JsonPropertyName("private_key")]
public string? PrivateKey { get; set; }

Property Value

string

PrivateKeyId

Optional ID of the private key to obtain kid header in the issued token (SDK v3+ tokens only).

[JsonPropertyName("private_key_id")]
public string? PrivateKeyId { get; set; }

Property Value

string

Secret

Google Firebase Secret. (SDK 2 only).

[JsonPropertyName("secret")]
public string? Secret { get; set; }

Property Value

string

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.