Skip to content

Commit

Permalink
Support EnabledConnections in OrganizationCreateRequest (#585)
Browse files Browse the repository at this point in the history
feat: add enable connection property into OrganizationCreateRequest.cs
  • Loading branch information
ssurowiec authored Sep 9, 2022
1 parent 39db924 commit fb5f45c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Auth0.ManagementApi/Models/OrganizationCreateRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ namespace Auth0.ManagementApi.Models
/// </summary>
public class OrganizationCreateRequest : OrganizationBase
{

/// <summary>
/// Support enable connections in organization
/// </summary>
[JsonProperty("enabled_connections")]
public IList<OrganizationConnectionCreateRequest> EnabledConnections { get; set; }
}
}

0 comments on commit fb5f45c

Please sign in to comment.