![JAR search and dependency download from the Maven repository](/logo.png)
io.getstream.core.models.ReactionBatch Maven / Gradle / Ivy
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 ReactionBatch {
@JsonProperty("reactions")
private List reactions;
@JsonProperty("duration")
private String duration;
public ReactionBatch() {
}
public ReactionBatch(List reactions) {
this.reactions = reactions;
}
public List getReactions() {
return reactions;
}
public void setReactions(List reactions) {
this.reactions = reactions;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy