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

org.graylog2.rest.models.search.responses.AutoValue_TimeRange Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
package org.graylog2.rest.models.search.responses;

import com.fasterxml.jackson.annotation.JsonIgnore;
import org.joda.time.DateTime;

final class AutoValue_TimeRange extends $AutoValue_TimeRange {
  AutoValue_TimeRange(DateTime from, DateTime to) {
    super(from, to);
  }

  @JsonIgnore
  public final DateTime getFrom() {
    return from();
  }

  @JsonIgnore
  public final DateTime getTo() {
    return to();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy