Table of Contents

Class ConnectionForList

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll
[Serializable]
public record ConnectionForList : IJsonOnDeserialized, IEquatable<ConnectionForList>
Inheritance
ConnectionForList
Implements
Inherited Members
Extension Methods

Properties

AdditionalProperties

[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }

Property Value

ReadOnlyAdditionalProperties

Authentication

[JsonPropertyName("authentication")]
public ConnectionAuthenticationPurpose? Authentication { get; set; }

Property Value

ConnectionAuthenticationPurpose

ConnectedAccounts

[JsonPropertyName("connected_accounts")]
public ConnectionConnectedAccountsPurpose? ConnectedAccounts { get; set; }

Property Value

ConnectionConnectedAccountsPurpose

DisplayName

Connection name used in login screen

[JsonPropertyName("display_name")]
public string? DisplayName { get; set; }

Property Value

string

Id

The connection's identifier

[JsonPropertyName("id")]
public string? Id { get; set; }

Property Value

string

IsDomainConnection

True if the connection is domain level

[JsonPropertyName("is_domain_connection")]
public bool? IsDomainConnection { get; set; }

Property Value

bool?

Metadata

[JsonPropertyName("metadata")]
public Dictionary<string, string?>? Metadata { get; set; }

Property Value

Dictionary<string, string>

Name

The name of the connection

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

Property Value

string

Options

[JsonPropertyName("options")]
public Dictionary<string, object?>? Options { get; set; }

Property Value

Dictionary<string, object>

Realms

Defines the realms for which the connection will be used (ie: email domains). If the array is empty or the property is not specified, the connection name will be added as realm.

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

Property Value

IEnumerable<string>

ShowAsButton

Enables showing a button for the connection in the login page (new experience only). If false, it will be usable only by HRD.

[JsonPropertyName("show_as_button")]
public bool? ShowAsButton { get; set; }

Property Value

bool?

Strategy

The type of the connection, related to the identity provider

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