com.airbyte.api.models.shared.SourceSendgrid Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
SDK enabling Java developers to easily integrate with the Airbyte API.
The newest version!
/*
* Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
*/
package com.airbyte.api.models.shared;
import com.airbyte.api.utils.LazySingletonValue;
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.annotation.JsonProperty;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import java.io.InputStream;
import java.lang.Deprecated;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.time.OffsetDateTime;
public class SourceSendgrid {
/**
* Sendgrid API Key, use <a href=\"https://app.sendgrid.com/settings/api_keys/\">admin</a> to generate this key.
*/
@JsonProperty("api_key")
private String apiKey;
@JsonProperty("sourceType")
private Sendgrid sourceType;
/**
* UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated.
*/
@JsonProperty("start_date")
private OffsetDateTime startDate;
@JsonCreator
public SourceSendgrid(
@JsonProperty("api_key") String apiKey,
@JsonProperty("start_date") OffsetDateTime startDate) {
Utils.checkNotNull(apiKey, "apiKey");
Utils.checkNotNull(startDate, "startDate");
this.apiKey = apiKey;
this.sourceType = Builder._SINGLETON_VALUE_SourceType.value();
this.startDate = startDate;
}
/**
* Sendgrid API Key, use <a href=\"https://app.sendgrid.com/settings/api_keys/\">admin</a> to generate this key.
*/
@JsonIgnore
public String apiKey() {
return apiKey;
}
@JsonIgnore
public Sendgrid sourceType() {
return sourceType;
}
/**
* UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated.
*/
@JsonIgnore
public OffsetDateTime startDate() {
return startDate;
}
public final static Builder builder() {
return new Builder();
}
/**
* Sendgrid API Key, use <a href=\"https://app.sendgrid.com/settings/api_keys/\">admin</a> to generate this key.
*/
public SourceSendgrid withApiKey(String apiKey) {
Utils.checkNotNull(apiKey, "apiKey");
this.apiKey = apiKey;
return this;
}
/**
* UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated.
*/
public SourceSendgrid withStartDate(OffsetDateTime startDate) {
Utils.checkNotNull(startDate, "startDate");
this.startDate = startDate;
return this;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SourceSendgrid other = (SourceSendgrid) o;
return
java.util.Objects.deepEquals(this.apiKey, other.apiKey) &&
java.util.Objects.deepEquals(this.sourceType, other.sourceType) &&
java.util.Objects.deepEquals(this.startDate, other.startDate);
}
@Override
public int hashCode() {
return java.util.Objects.hash(
apiKey,
sourceType,
startDate);
}
@Override
public String toString() {
return Utils.toString(SourceSendgrid.class,
"apiKey", apiKey,
"sourceType", sourceType,
"startDate", startDate);
}
public final static class Builder {
private String apiKey;
private OffsetDateTime startDate;
private Builder() {
// force use of static builder() method
}
/**
* Sendgrid API Key, use <a href=\"https://app.sendgrid.com/settings/api_keys/\">admin</a> to generate this key.
*/
public Builder apiKey(String apiKey) {
Utils.checkNotNull(apiKey, "apiKey");
this.apiKey = apiKey;
return this;
}
/**
* UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated.
*/
public Builder startDate(OffsetDateTime startDate) {
Utils.checkNotNull(startDate, "startDate");
this.startDate = startDate;
return this;
}
public SourceSendgrid build() {
return new SourceSendgrid(
apiKey,
startDate);
}
private static final LazySingletonValue _SINGLETON_VALUE_SourceType =
new LazySingletonValue<>(
"sourceType",
"\"sendgrid\"",
new TypeReference() {});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy