Class SelfServiceProfileSsoTicketConnectionConfig
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
If provided, this will create a new connection for the SSO flow with the given configuration
[Serializable]
public record SelfServiceProfileSsoTicketConnectionConfig : IJsonOnDeserialized, IEquatable<SelfServiceProfileSsoTicketConnectionConfig>
- Inheritance
-
SelfServiceProfileSsoTicketConnectionConfig
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
DisplayName
Connection name used in the new universal login experience
[JsonPropertyName("display_name")]
public string? DisplayName { get; set; }
Property Value
IsDomainConnection
true promotes to a domain-level connection so that third-party applications can use it. false does not promote the connection, so only first-party applications with the connection enabled can use it. (Defaults to false.)
[JsonPropertyName("is_domain_connection")]
public bool? IsDomainConnection { get; set; }
Property Value
- bool?
Metadata
[JsonPropertyName("metadata")]
public Dictionary<string, string?>? Metadata { get; set; }
Property Value
Name
The name of the connection that will be created as a part of the SSO flow.
[JsonPropertyName("name")]
public required string Name { get; set; }
Property Value
Options
[JsonPropertyName("options")]
public Optional<SelfServiceProfileSsoTicketConnectionOptions?> Options { get; set; }
Property Value
ShowAsButton
Enables showing a button for the connection in the login page (new experience only). If false, it will be usable only by HRD. (Defaults to false.)
[JsonPropertyName("show_as_button")]
public bool? ShowAsButton { get; set; }
Property Value
- bool?
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.