From bca67f141f219b35a5b7a4c40184518acc7bf305 Mon Sep 17 00:00:00 2001 From: Mark Anderson Date: Wed, 3 Jun 2015 23:27:25 +0100 Subject: [PATCH] Add field to InteractionsResponse. --- .../newsblur/network/domain/InteractionsResponse.java | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/clients/android/NewsBlur/src/com/newsblur/network/domain/InteractionsResponse.java b/clients/android/NewsBlur/src/com/newsblur/network/domain/InteractionsResponse.java index 310e09c74..468ff3d4e 100644 --- a/clients/android/NewsBlur/src/com/newsblur/network/domain/InteractionsResponse.java +++ b/clients/android/NewsBlur/src/com/newsblur/network/domain/InteractionsResponse.java @@ -1,7 +1,13 @@ package com.newsblur.network.domain; +import com.google.gson.annotations.SerializedName; +import com.newsblur.domain.ActivityDetails; + /** - * Created by mark on 03/06/15. + * Response for /social/interactions endpoint */ -public class InteractionsResponse { +public class InteractionsResponse extends NewsBlurResponse { + + @SerializedName("interactions") + public ActivityDetails[] interactions; }