com.airbyte.api.models.operations.CreateOrUpdateWorkspaceOAuthCredentialsResponse Maven / Gradle / Ivy
/*
* Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
*/
package com.airbyte.api.models.operations;
import com.airbyte.api.utils.Utils;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.core.type.TypeReference;
import java.io.InputStream;
import java.lang.Deprecated;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.net.http.HttpResponse;
public class CreateOrUpdateWorkspaceOAuthCredentialsResponse implements com.airbyte.api.utils.Response {
/**
* HTTP response content type for this operation
*/
private String contentType;
/**
* HTTP response status code for this operation
*/
private int statusCode;
/**
* Raw HTTP response; suitable for custom response parsing
*/
private HttpResponse rawResponse;
@JsonCreator
public CreateOrUpdateWorkspaceOAuthCredentialsResponse(
String contentType,
int statusCode,
HttpResponse rawResponse) {
Utils.checkNotNull(contentType, "contentType");
Utils.checkNotNull(statusCode, "statusCode");
Utils.checkNotNull(rawResponse, "rawResponse");
this.contentType = contentType;
this.statusCode = statusCode;
this.rawResponse = rawResponse;
}
/**
* HTTP response content type for this operation
*/
@JsonIgnore
public String contentType() {
return contentType;
}
/**
* HTTP response status code for this operation
*/
@JsonIgnore
public int statusCode() {
return statusCode;
}
/**
* Raw HTTP response; suitable for custom response parsing
*/
@JsonIgnore
public HttpResponse rawResponse() {
return rawResponse;
}
public final static Builder builder() {
return new Builder();
}
/**
* HTTP response content type for this operation
*/
public CreateOrUpdateWorkspaceOAuthCredentialsResponse withContentType(String contentType) {
Utils.checkNotNull(contentType, "contentType");
this.contentType = contentType;
return this;
}
/**
* HTTP response status code for this operation
*/
public CreateOrUpdateWorkspaceOAuthCredentialsResponse withStatusCode(int statusCode) {
Utils.checkNotNull(statusCode, "statusCode");
this.statusCode = statusCode;
return this;
}
/**
* Raw HTTP response; suitable for custom response parsing
*/
public CreateOrUpdateWorkspaceOAuthCredentialsResponse withRawResponse(HttpResponse rawResponse) {
Utils.checkNotNull(rawResponse, "rawResponse");
this.rawResponse = rawResponse;
return this;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreateOrUpdateWorkspaceOAuthCredentialsResponse other = (CreateOrUpdateWorkspaceOAuthCredentialsResponse) o;
return
java.util.Objects.deepEquals(this.contentType, other.contentType) &&
java.util.Objects.deepEquals(this.statusCode, other.statusCode) &&
java.util.Objects.deepEquals(this.rawResponse, other.rawResponse);
}
@Override
public int hashCode() {
return java.util.Objects.hash(
contentType,
statusCode,
rawResponse);
}
@Override
public String toString() {
return Utils.toString(CreateOrUpdateWorkspaceOAuthCredentialsResponse.class,
"contentType", contentType,
"statusCode", statusCode,
"rawResponse", rawResponse);
}
public final static class Builder {
private String contentType;
private Integer statusCode;
private HttpResponse rawResponse;
private Builder() {
// force use of static builder() method
}
/**
* HTTP response content type for this operation
*/
public Builder contentType(String contentType) {
Utils.checkNotNull(contentType, "contentType");
this.contentType = contentType;
return this;
}
/**
* HTTP response status code for this operation
*/
public Builder statusCode(int statusCode) {
Utils.checkNotNull(statusCode, "statusCode");
this.statusCode = statusCode;
return this;
}
/**
* Raw HTTP response; suitable for custom response parsing
*/
public Builder rawResponse(HttpResponse rawResponse) {
Utils.checkNotNull(rawResponse, "rawResponse");
this.rawResponse = rawResponse;
return this;
}
public CreateOrUpdateWorkspaceOAuthCredentialsResponse build() {
return new CreateOrUpdateWorkspaceOAuthCredentialsResponse(
contentType,
statusCode,
rawResponse);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy