File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
src/main/java/com/lark/project/service/workitem/model Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,9 @@ public class WorkItemRelation {
2828 @ SerializedName ("name" )
2929 private String name ;
3030
31+ @ SerializedName ("relation_type" )
32+ private Long relationType ;
33+
3134 @ SerializedName ("disabled" )
3235 private Boolean disabled ;
3336
@@ -56,6 +59,14 @@ public void setName(String name) {
5659 this .name = name ;
5760 }
5861
62+ public Long getRelationType () {
63+ return this .relationType ;
64+ }
65+
66+ public void setRelationType (Long relationType ) {
67+ this .relationType = relationType ;
68+ }
69+
5970 public Boolean getDisabled () {
6071 return this .disabled ;
6172 }
@@ -88,4 +99,4 @@ public void setRelationDetails(List<RelationDetail> relationDetails) {
8899 this .relationDetails = relationDetails ;
89100 }
90101
91- }
102+ }
You can’t perform that action at this time.
0 commit comments