com.databricks.sdk.service.jobs.ResolvedDbtTaskValues Maven / Gradle / Ivy
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.jobs;
import com.databricks.sdk.support.Generated;
import com.databricks.sdk.support.ToStringer;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Collection;
import java.util.Objects;
@Generated
public class ResolvedDbtTaskValues {
/** */
@JsonProperty("commands")
private Collection commands;
public ResolvedDbtTaskValues setCommands(Collection commands) {
this.commands = commands;
return this;
}
public Collection getCommands() {
return commands;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ResolvedDbtTaskValues that = (ResolvedDbtTaskValues) o;
return Objects.equals(commands, that.commands);
}
@Override
public int hashCode() {
return Objects.hash(commands);
}
@Override
public String toString() {
return new ToStringer(ResolvedDbtTaskValues.class).add("commands", commands).toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy