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

io.getstream.core.models.BatchDeleteReactionsRequest Maven / Gradle / Ivy

There is a newer version: 3.15.0
Show newest version
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