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

com.databricks.sdk.service.ml.RestoreRunsResponse Maven / Gradle / Ivy

There is a newer version: 0.35.0
Show newest version
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.

package com.databricks.sdk.service.ml;

import com.databricks.sdk.support.Generated;
import com.databricks.sdk.support.ToStringer;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;

@Generated
public class RestoreRunsResponse {
  /** The number of runs restored. */
  @JsonProperty("runs_restored")
  private Long runsRestored;

  public RestoreRunsResponse setRunsRestored(Long runsRestored) {
    this.runsRestored = runsRestored;
    return this;
  }

  public Long getRunsRestored() {
    return runsRestored;
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    RestoreRunsResponse that = (RestoreRunsResponse) o;
    return Objects.equals(runsRestored, that.runsRestored);
  }

  @Override
  public int hashCode() {
    return Objects.hash(runsRestored);
  }

  @Override
  public String toString() {
    return new ToStringer(RestoreRunsResponse.class).add("runsRestored", runsRestored).toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy