Skip to content

Commit ed4e616

Browse files
authored
Updated EnabledConnection (#719)
1 parent c2fc5b5 commit ed4e616

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/com/auth0/json/mgmt/organizations/EnabledConnection.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ public void setShowAsButton(Boolean showAsButton) {
101101
/**
102102
* @return whether signup is enabled for this connection.
103103
*/
104+
@JsonProperty("is_signup_enabled")
104105
public Boolean getSignupEnabled() {
105106
return isSignupEnabled;
106107
}
@@ -109,6 +110,7 @@ public Boolean getSignupEnabled() {
109110
* Sets whether signup is enabled for this connection.
110111
* @param signupEnabled {@code true} to enable signup, {@code false} to disable it.
111112
*/
113+
@JsonProperty("is_signup_enabled")
112114
public void setSignupEnabled(Boolean signupEnabled) {
113115
isSignupEnabled = signupEnabled;
114116
}

0 commit comments

Comments
 (0)