File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
src/main/java/org/zendesk/client/v2/model Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 1
1
package org .zendesk .client .v2 .model ;
2
2
3
+ import com .fasterxml .jackson .annotation .JsonProperty ;
4
+
3
5
import java .io .Serializable ;
4
6
import java .util .ArrayList ;
5
7
import java .util .Date ;
@@ -32,6 +34,7 @@ public void setId(Long id) {
32
34
this .id = id ;
33
35
}
34
36
37
+ @ JsonProperty ("category_id" )
35
38
public String getCategoryId () {
36
39
return categoryId ;
37
40
}
@@ -56,6 +59,7 @@ public void setActive(boolean active) {
56
59
this .active = active ;
57
60
}
58
61
62
+ @ JsonProperty ("created_at" )
59
63
public Date getCreatedAt () {
60
64
return createdAt ;
61
65
}
@@ -88,6 +92,7 @@ public void setActions(List<Action> actions) {
88
92
this .actions = actions ;
89
93
}
90
94
95
+ @ JsonProperty ("updated_at" )
91
96
public Date getUpdatedAt () {
92
97
return updatedAt ;
93
98
}
@@ -105,8 +110,6 @@ public String toString() {
105
110
+ categoryId
106
111
+ ", title="
107
112
+ title
108
- + ", active="
109
- + active
110
113
+ ", position="
111
114
+ position
112
115
+ ", active="
@@ -115,6 +118,8 @@ public String toString() {
115
118
+ conditions
116
119
+ ", actions="
117
120
+ actions
121
+ + ", createdAt="
122
+ + createdAt
118
123
+ ", updatedAt="
119
124
+ updatedAt
120
125
+ '}' ;
You can’t perform that action at this time.
0 commit comments