Table of Contents

Class ConnectionGatewayAuthentication

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll

Token-based authentication settings to be applied when connection is using an sms strategy.

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

Properties

AdditionalProperties

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

Property Value

AdditionalProperties

Audience

The audience to be added to the JWT payload.

[JsonPropertyName("audience")]
public required string Audience { get; set; }

Property Value

string

Method

The Authorization header type.

[JsonPropertyName("method")]
public required string Method { get; set; }

Property Value

string

Secret

The secret to be used for signing tokens.

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

Property Value

string

SecretBase64Encoded

Set to true if the provided secret is base64 encoded.

[JsonPropertyName("secret_base64_encoded")]
public bool? SecretBase64Encoded { get; set; }

Property Value

bool?

Subject

The subject to be added to the JWT payload.

[JsonPropertyName("subject")]
public string? Subject { 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.