All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.getstream.client.model.beans.StreamActivitiesResponse Maven / Gradle / Ivy

There is a newer version: 2.1.3
Show newest version
package io.getstream.client.model.beans;

import io.getstream.client.model.activities.BaseActivity;

import java.util.List;

/**
 * Response from activities' bulk insert/update.
 * @param  Type of the activity
 */
public class StreamActivitiesResponse {

    private List activities;

    public List getActivities() {
        return activities;
    }

    public void setActivities(List activities) {
        this.activities = activities;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy