diff --git a/src/com/agilecrm/stubs/Contact.java b/src/com/agilecrm/stubs/Contact.java index d7b5115..4df50f9 100644 --- a/src/com/agilecrm/stubs/Contact.java +++ b/src/com/agilecrm/stubs/Contact.java @@ -15,7 +15,7 @@ public class Contact { @JsonProperty("id") - private Integer id; + private Long id; @JsonProperty("count") private Integer count; @@ -58,12 +58,12 @@ public static enum Type PERSON, COMPANY }; - public Integer getId() + public Long getId() { return id; } - public void setId(Integer id) + public void setId(Long id) { this.id = id; }