-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add conversation participants support #241
base: master
Are you sure you want to change the base?
Conversation
@@ -178,7 +183,7 @@ private HttpURLConnection initializeConnection(URI uri, String method) throws IO | |||
} | |||
|
|||
private boolean shouldSkipResponseEntity(JavaType javaType, HttpURLConnection conn, int responseCode) { | |||
return responseCode == 204 || Void.class.equals(javaType.getRawClass()) || "DELETE".equals(conn.getRequestMethod()); | |||
return responseCode == 204 || Void.class.equals(javaType.getRawClass()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needed to parse response data. But in further testing this breaks Tag.delete
Should not be merged as it breaks |
@thewheat ok .. will leave this for now and focus on other open PRs |
For reference PR to parse Will need to merge that first before merging this |
d1a24e8
to
7b4f618
Compare
7b4f618
to
4b63f9e
Compare
Adding support for adding and removing of participants from group conversations
Participant
class as we're usingCustomer
in the response for conversations ratings Add conversation ratings support #235 and also in the return response for the added methodsRelated Docs: