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

io.serialized.client.reaction.ReactionsResponse Maven / Gradle / Ivy

package io.serialized.client.reaction;

import java.util.List;

import static java.util.Collections.emptyList;
import static java.util.Collections.unmodifiableList;

public class ReactionsResponse {

  private List reactions;

  public List reactions() {
    return reactions == null ? emptyList() : unmodifiableList(reactions);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy