From 12d013eb96eb8a21b937463662bb7d8f203440f4 Mon Sep 17 00:00:00 2001 From: mresc Date: Mon, 30 Jun 2014 13:36:19 +0200 Subject: [PATCH] FIx for wrong parsed Contact-Response --- src/com/agilecrm/stubs/Contact.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }