com.databricks.sdk.service.sharing.GetRecipientRequest Maven / Gradle / Ivy
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.sharing;
import com.databricks.sdk.support.Generated;
import com.databricks.sdk.support.ToStringer;
import com.fasterxml.jackson.annotation.JsonIgnore;
import java.util.Objects;
/** Get a share recipient */
@Generated
public class GetRecipientRequest {
/** Name of the recipient. */
@JsonIgnore private String name;
public GetRecipientRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return name;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
GetRecipientRequest that = (GetRecipientRequest) o;
return Objects.equals(name, that.name);
}
@Override
public int hashCode() {
return Objects.hash(name);
}
@Override
public String toString() {
return new ToStringer(GetRecipientRequest.class).add("name", name).toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy