Skip to content

Commit

Permalink
Allow Optional AssignMembershipOnLogin field to be nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
kailash-b committed Jan 31, 2025
1 parent 9162477 commit 176dd32
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class OrganizationConnectionCreateRequest
/// Whether or not users that login will automatically be granted membership to the organization.
/// </summary>
[JsonProperty("assign_membership_on_login")]
public bool AssignMembershipOnLogin { get; set; }
public bool? AssignMembershipOnLogin { get; set; }

/// <summary>
/// Determines whether a connection should be displayed on this organization’s login prompt.
Expand Down

0 comments on commit 176dd32

Please sign in to comment.