com.databricks.sdk.service.pipelines.NotebookLibrary Maven / Gradle / Ivy
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.pipelines;
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 NotebookLibrary {
/** The absolute path of the notebook. */
@JsonProperty("path")
private String path;
public NotebookLibrary setPath(String path) {
this.path = path;
return this;
}
public String getPath() {
return path;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
NotebookLibrary that = (NotebookLibrary) o;
return Objects.equals(path, that.path);
}
@Override
public int hashCode() {
return Objects.hash(path);
}
@Override
public String toString() {
return new ToStringer(NotebookLibrary.class).add("path", path).toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy