Skip to content

Commit 2507dde

Browse files
committed
Move Enums to dedicated files
1 parent 23a8b64 commit 2507dde

File tree

1 file changed

+3
-3
lines changed
  • src/main/java/org/zendesk/client/v2/model

1 file changed

+3
-3
lines changed

src/main/java/org/zendesk/client/v2/model/Forum.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class Forum {
1616
private Boolean locked;
1717
private Long unansweredTopics;
1818
private Long position;
19-
private Topic.TopicType forumType;
19+
private TopicType forumType;
2020
private Access access;
2121
private List<String> tags;
2222
private Date createdAt;
@@ -107,11 +107,11 @@ public void setPosition(final Long position) {
107107
}
108108

109109
@JsonProperty("forum_type")
110-
public Topic.TopicType getForumType() {
110+
public TopicType getForumType() {
111111
return forumType;
112112
}
113113

114-
public void setForumType(final Topic.TopicType forumType) {
114+
public void setForumType(final TopicType forumType) {
115115
this.forumType = forumType;
116116
}
117117

0 commit comments

Comments
 (0)