We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88b8f0b commit 751b7f4Copy full SHA for 751b7f4
1 file changed
src/main/java/com/lark/project/service/field/model/Option.java
@@ -41,7 +41,7 @@ public class Option {
41
private Long order;
42
43
@SerializedName("is_disabled")
44
- private Boolean isDisabled;
+ private Integer isDisabled;
45
46
@SerializedName("is_visibility")
47
private Long isVisibility;
@@ -94,11 +94,11 @@ public void setOrder(Long order) {
94
this.order = order;
95
}
96
97
- public boolean getIsDisabled() {
+ public Integer getIsDisabled() {
98
return this.isDisabled;
99
100
101
- public void setIsDisabled(boolean isDisabled) {
+ public void setIsDisabled(Integer isDisabled) {
102
this.isDisabled = isDisabled;
103
104
0 commit comments