We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e38debf commit 860585dCopy full SHA for 860585d
src/main/java/org/zendesk/client/v2/model/Macro.java
@@ -17,7 +17,7 @@ public class Macro implements Serializable {
17
18
private static final long serialVersionUID = 1L;
19
20
- private int id;
+ private long id;
21
private String title;
22
private boolean active;
23
private List<Action> actions;
@@ -26,11 +26,11 @@ public class Macro implements Serializable {
26
27
public Macro() {}
28
29
- public int getId() {
+ public long getId() {
30
return id;
31
}
32
33
- public void setId(int id) {
+ public void setId(long id) {
34
this.id = id;
35
36
0 commit comments