Add field to InteractionsResponse.

This commit is contained in:
Mark Anderson 2015-06-03 23:27:25 +01:00
parent 0734d31ab6
commit bca67f141f

View file

@ -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;
}