io.getstream.core.models.BatchDeleteReactionsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stream-java Show documentation
Show all versions of stream-java Show documentation
Stream Feeds Java Client for backend and android integrations
package io.getstream.core.models;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class BatchDeleteReactionsRequest {
private final List ids;
public BatchDeleteReactionsRequest(@JsonProperty("ids") List ids) {
this.ids = ids;
}
public List getIds() {
return ids;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy