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

com.algolia.search.models.common.Logs Maven / Gradle / Ivy

There is a newer version: 3.16.9
Show newest version
package com.algolia.search.models.common;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

public class Logs implements Serializable {

  private List logs;

  public List getLogs() {
    return logs == null ? new ArrayList<>() : logs;
  }

  @SuppressWarnings("unused")
  public Logs setLogs(List logs) {
    this.logs = logs;
    return this;
  }

  @Override
  public String toString() {
    return "Logs{" + "logs=" + logs + '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy