com.databricks.sdk.service.oauth2.GetCustomAppIntegrationsOutput Maven / Gradle / Ivy
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.oauth2;
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 GetCustomAppIntegrationsOutput {
/** List of Custom OAuth App Integrations defined for the account. */
@JsonProperty("apps")
private Collection apps;
/** */
@JsonProperty("next_page_token")
private String nextPageToken;
public GetCustomAppIntegrationsOutput setApps(Collection apps) {
this.apps = apps;
return this;
}
public Collection getApps() {
return apps;
}
public GetCustomAppIntegrationsOutput setNextPageToken(String nextPageToken) {
this.nextPageToken = nextPageToken;
return this;
}
public String getNextPageToken() {
return nextPageToken;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
GetCustomAppIntegrationsOutput that = (GetCustomAppIntegrationsOutput) o;
return Objects.equals(apps, that.apps) && Objects.equals(nextPageToken, that.nextPageToken);
}
@Override
public int hashCode() {
return Objects.hash(apps, nextPageToken);
}
@Override
public String toString() {
return new ToStringer(GetCustomAppIntegrationsOutput.class)
.add("apps", apps)
.add("nextPageToken", nextPageToken)
.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy