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