From f5ffd169ccecf93598ee3f03e943d48879768563 Mon Sep 17 00:00:00 2001 From: Dylan Wilson Date: Mon, 21 Aug 2023 12:01:53 -0400 Subject: [PATCH] Add show_as_button to ConnectionBase show_as_button is missing auth0.net for some reason, but it exists in dumps from the deploy-cli as well as in other Auth0 packages like go-auth0: https://github.com/auth0/go-auth0/blob/a98b898932cd024335fba6971c8a9d6853e9493c/management/connection.go#L129 --- src/Auth0.ManagementApi/Models/ConnectionBase.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Auth0.ManagementApi/Models/ConnectionBase.cs b/src/Auth0.ManagementApi/Models/ConnectionBase.cs index 8fe3aeec6..d18464261 100644 --- a/src/Auth0.ManagementApi/Models/ConnectionBase.cs +++ b/src/Auth0.ManagementApi/Models/ConnectionBase.cs @@ -45,5 +45,11 @@ public abstract class ConnectionBase /// [JsonProperty("enabled_clients")] public string[] EnabledClients { get; set; } + + /// + /// True to show this connection as a button on login, false otherwise. + /// + [JsonProperty("show_as_button")] + public bool? ShowAsButton { get; set; } } } \ No newline at end of file