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; } } }