From 6923610c0de13e3182f96a6ce68d12831092f44c Mon Sep 17 00:00:00 2001 From: Frederik Prijck Date: Mon, 14 Aug 2023 12:00:45 +0200 Subject: [PATCH] Add cross_origin_authentication on Clients (#643) --- src/Auth0.ManagementApi/Models/ClientBase.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Auth0.ManagementApi/Models/ClientBase.cs b/src/Auth0.ManagementApi/Models/ClientBase.cs index 8cfe680a5..2a0b55c84 100644 --- a/src/Auth0.ManagementApi/Models/ClientBase.cs +++ b/src/Auth0.ManagementApi/Models/ClientBase.cs @@ -184,6 +184,12 @@ public abstract class ClientBase [JsonProperty("organization_require_behavior")] [JsonConverter(typeof(StringEnumConverter))] public OrganizationRequireBehavior? OrganizationRequireBehavior { get; set; } + + /// + /// Whether this client can be used to make cross-origin authentication requests (true) or it is not allowed to make such requests (false). + /// + [JsonProperty("cross_origin_authentication")] + public bool? CrossOriginAuthentication { get; set; } } }