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

com.spotify.styx.api.AutoValue_BackfillsPayload Maven / Gradle / Ivy

package com.spotify.styx.api;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
import javax.annotation.processing.Generated;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_BackfillsPayload extends BackfillsPayload {

  private final List backfills;

  AutoValue_BackfillsPayload(
      List backfills) {
    if (backfills == null) {
      throw new NullPointerException("Null backfills");
    }
    this.backfills = backfills;
  }

  @JsonProperty
  @Override
  public List backfills() {
    return backfills;
  }

  @Override
  public String toString() {
    return "BackfillsPayload{"
        + "backfills=" + backfills
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof BackfillsPayload) {
      BackfillsPayload that = (BackfillsPayload) o;
      return this.backfills.equals(that.backfills());
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h$ = 1;
    h$ *= 1000003;
    h$ ^= backfills.hashCode();
    return h$;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy