com.databricks.sdk.service.jobs.WebhookNotificationsOnDurationWarningThresholdExceededItem 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.Objects;
@Generated
public class WebhookNotificationsOnDurationWarningThresholdExceededItem {
/** */
@JsonProperty("id")
private String id;
public WebhookNotificationsOnDurationWarningThresholdExceededItem setId(String id) {
this.id = id;
return this;
}
public String getId() {
return id;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
WebhookNotificationsOnDurationWarningThresholdExceededItem that =
(WebhookNotificationsOnDurationWarningThresholdExceededItem) o;
return Objects.equals(id, that.id);
}
@Override
public int hashCode() {
return Objects.hash(id);
}
@Override
public String toString() {
return new ToStringer(WebhookNotificationsOnDurationWarningThresholdExceededItem.class)
.add("id", id)
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy