We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23a8b64 commit 2507ddeCopy full SHA for 2507dde
src/main/java/org/zendesk/client/v2/model/Forum.java
@@ -16,7 +16,7 @@ public class Forum {
16
private Boolean locked;
17
private Long unansweredTopics;
18
private Long position;
19
- private Topic.TopicType forumType;
+ private TopicType forumType;
20
private Access access;
21
private List<String> tags;
22
private Date createdAt;
@@ -107,11 +107,11 @@ public void setPosition(final Long position) {
107
}
108
109
@JsonProperty("forum_type")
110
- public Topic.TopicType getForumType() {
+ public TopicType getForumType() {
111
return forumType;
112
113
114
- public void setForumType(final Topic.TopicType forumType) {
+ public void setForumType(final TopicType forumType) {
115
this.forumType = forumType;
116
117
0 commit comments