File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
main/java/org/zendesk/client/v2/model
test/java/org/zendesk/client/v2/model Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
1
package org .zendesk .client .v2 .model ;
2
2
3
3
import com .fasterxml .jackson .annotation .JsonProperty ;
4
-
5
4
import java .io .Serializable ;
6
5
import java .util .ArrayList ;
7
6
import java .util .Date ;
@@ -22,8 +21,10 @@ public class Trigger implements Serializable {
22
21
private int position ;
23
22
private Conditions conditions ;
24
23
private List <Action > actions ;
24
+
25
25
@ JsonProperty ("created_at" )
26
26
private Date createdAt ;
27
+
27
28
@ JsonProperty ("updated_at" )
28
29
private Date updatedAt ;
29
30
@@ -38,7 +39,7 @@ public void setId(Long id) {
38
39
this .id = id ;
39
40
}
40
41
41
- public String getCategoryId () {
42
+ public String getCategoryId () {
42
43
return categoryId ;
43
44
}
44
45
@@ -62,7 +63,6 @@ public void setActive(boolean active) {
62
63
this .active = active ;
63
64
}
64
65
65
-
66
66
public Date getCreatedAt () {
67
67
return createdAt ;
68
68
}
Original file line number Diff line number Diff line change 6
6
7
7
import com .fasterxml .jackson .core .JsonProcessingException ;
8
8
import com .fasterxml .jackson .databind .ObjectMapper ;
9
-
10
- import java .sql .Date ;
11
9
import java .util .Arrays ;
10
+ import java .util .Date ;
12
11
import org .junit .Test ;
13
12
import org .zendesk .client .v2 .Utils ;
14
13
You can’t perform that action at this time.
0 commit comments