com.plaid.client.model.LinkTokenCreateRequestAuth Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plaid-java Show documentation
Show all versions of plaid-java Show documentation
Bindings for the Plaid (plaid.com) API.
/*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.534.3
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Specifies options for initializing Link for use with the Auth product. This field can be used to enable or disable extended Auth flows for the resulting Link session. Omitting any field will result in a default that can be configured by your account manager. The default behavior described in the documentation is the default behavior that will apply if you have not requested your account manager to apply a different default.
*/
@ApiModel(description = "Specifies options for initializing Link for use with the Auth product. This field can be used to enable or disable extended Auth flows for the resulting Link session. Omitting any field will result in a default that can be configured by your account manager. The default behavior described in the documentation is the default behavior that will apply if you have not requested your account manager to apply a different default.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-07-05T19:36:13.426392Z[Etc/UTC]")
public class LinkTokenCreateRequestAuth {
public static final String SERIALIZED_NAME_AUTH_TYPE_SELECT_ENABLED = "auth_type_select_enabled";
@SerializedName(SERIALIZED_NAME_AUTH_TYPE_SELECT_ENABLED)
private Boolean authTypeSelectEnabled;
public static final String SERIALIZED_NAME_AUTOMATED_MICRODEPOSITS_ENABLED = "automated_microdeposits_enabled";
@SerializedName(SERIALIZED_NAME_AUTOMATED_MICRODEPOSITS_ENABLED)
private Boolean automatedMicrodepositsEnabled;
public static final String SERIALIZED_NAME_INSTANT_MATCH_ENABLED = "instant_match_enabled";
@SerializedName(SERIALIZED_NAME_INSTANT_MATCH_ENABLED)
private Boolean instantMatchEnabled;
public static final String SERIALIZED_NAME_SAME_DAY_MICRODEPOSITS_ENABLED = "same_day_microdeposits_enabled";
@SerializedName(SERIALIZED_NAME_SAME_DAY_MICRODEPOSITS_ENABLED)
private Boolean sameDayMicrodepositsEnabled;
public static final String SERIALIZED_NAME_INSTANT_MICRODEPOSITS_ENABLED = "instant_microdeposits_enabled";
@SerializedName(SERIALIZED_NAME_INSTANT_MICRODEPOSITS_ENABLED)
private Boolean instantMicrodepositsEnabled;
/**
* Specifies what type of [Reroute to Credentials](https://plaid.com/docs/auth/coverage/same-day/#reroute-to-credentials) pane should be used in the Link session for the Same Day Micro-deposits flow. Default behavior is `OPTIONAL`.
*/
@JsonAdapter(RerouteToCredentialsEnum.Adapter.class)
public enum RerouteToCredentialsEnum {
OFF("OFF"),
OPTIONAL("OPTIONAL"),
FORCED("FORCED");
private String value;
RerouteToCredentialsEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static RerouteToCredentialsEnum fromValue(String value) {
for (RerouteToCredentialsEnum b : RerouteToCredentialsEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
public static class Adapter extends TypeAdapter {
@Override
public void write(final JsonWriter jsonWriter, final RerouteToCredentialsEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public RerouteToCredentialsEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return RerouteToCredentialsEnum.fromValue(value);
}
}
}
public static final String SERIALIZED_NAME_REROUTE_TO_CREDENTIALS = "reroute_to_credentials";
@SerializedName(SERIALIZED_NAME_REROUTE_TO_CREDENTIALS)
private RerouteToCredentialsEnum rerouteToCredentials;
public static final String SERIALIZED_NAME_DATABASE_MATCH_ENABLED = "database_match_enabled";
@SerializedName(SERIALIZED_NAME_DATABASE_MATCH_ENABLED)
private Boolean databaseMatchEnabled;
public static final String SERIALIZED_NAME_DATABASE_INSIGHTS_ENABLED = "database_insights_enabled";
@SerializedName(SERIALIZED_NAME_DATABASE_INSIGHTS_ENABLED)
private Boolean databaseInsightsEnabled;
/**
* This field has been deprecated in favor of `auth_type_select_enabled`.
*/
@JsonAdapter(FlowTypeEnum.Adapter.class)
public enum FlowTypeEnum {
FLEXIBLE_AUTH("FLEXIBLE_AUTH");
private String value;
FlowTypeEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static FlowTypeEnum fromValue(String value) {
for (FlowTypeEnum b : FlowTypeEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
public static class Adapter extends TypeAdapter {
@Override
public void write(final JsonWriter jsonWriter, final FlowTypeEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public FlowTypeEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return FlowTypeEnum.fromValue(value);
}
}
}
public static final String SERIALIZED_NAME_FLOW_TYPE = "flow_type";
@SerializedName(SERIALIZED_NAME_FLOW_TYPE)
private FlowTypeEnum flowType;
public static final String SERIALIZED_NAME_SMS_MICRODEPOSITS_VERIFICATION_ENABLED = "sms_microdeposits_verification_enabled";
@SerializedName(SERIALIZED_NAME_SMS_MICRODEPOSITS_VERIFICATION_ENABLED)
private Boolean smsMicrodepositsVerificationEnabled;
public LinkTokenCreateRequestAuth authTypeSelectEnabled(Boolean authTypeSelectEnabled) {
this.authTypeSelectEnabled = authTypeSelectEnabled;
return this;
}
/**
* Specifies whether Auth Type Select is enabled for the Link session, allowing the end user to choose between linking via a credentials-based flow (i.e. Instant Auth, Instant Match, Automated Micro-deposits) or a manual flow that does not require login (all other Auth flows) prior to selecting their financial institution. Default behavior is `false`.
* @return authTypeSelectEnabled
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Specifies whether Auth Type Select is enabled for the Link session, allowing the end user to choose between linking via a credentials-based flow (i.e. Instant Auth, Instant Match, Automated Micro-deposits) or a manual flow that does not require login (all other Auth flows) prior to selecting their financial institution. Default behavior is `false`.")
public Boolean getAuthTypeSelectEnabled() {
return authTypeSelectEnabled;
}
public void setAuthTypeSelectEnabled(Boolean authTypeSelectEnabled) {
this.authTypeSelectEnabled = authTypeSelectEnabled;
}
public LinkTokenCreateRequestAuth automatedMicrodepositsEnabled(Boolean automatedMicrodepositsEnabled) {
this.automatedMicrodepositsEnabled = automatedMicrodepositsEnabled;
return this;
}
/**
* Specifies whether the Link session is enabled for the Automated Micro-deposits flow. Default behavior is `false`.
* @return automatedMicrodepositsEnabled
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Specifies whether the Link session is enabled for the Automated Micro-deposits flow. Default behavior is `false`.")
public Boolean getAutomatedMicrodepositsEnabled() {
return automatedMicrodepositsEnabled;
}
public void setAutomatedMicrodepositsEnabled(Boolean automatedMicrodepositsEnabled) {
this.automatedMicrodepositsEnabled = automatedMicrodepositsEnabled;
}
public LinkTokenCreateRequestAuth instantMatchEnabled(Boolean instantMatchEnabled) {
this.instantMatchEnabled = instantMatchEnabled;
return this;
}
/**
* Specifies whether the Link session is enabled for the Instant Match flow. Instant Match is enabled by default. Instant Match can be disabled by setting this field to `false`.
* @return instantMatchEnabled
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Specifies whether the Link session is enabled for the Instant Match flow. Instant Match is enabled by default. Instant Match can be disabled by setting this field to `false`.")
public Boolean getInstantMatchEnabled() {
return instantMatchEnabled;
}
public void setInstantMatchEnabled(Boolean instantMatchEnabled) {
this.instantMatchEnabled = instantMatchEnabled;
}
public LinkTokenCreateRequestAuth sameDayMicrodepositsEnabled(Boolean sameDayMicrodepositsEnabled) {
this.sameDayMicrodepositsEnabled = sameDayMicrodepositsEnabled;
return this;
}
/**
* Specifies whether the Link session is enabled for the Same Day Micro-deposits flow. Default behavior is `false`.
* @return sameDayMicrodepositsEnabled
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Specifies whether the Link session is enabled for the Same Day Micro-deposits flow. Default behavior is `false`.")
public Boolean getSameDayMicrodepositsEnabled() {
return sameDayMicrodepositsEnabled;
}
public void setSameDayMicrodepositsEnabled(Boolean sameDayMicrodepositsEnabled) {
this.sameDayMicrodepositsEnabled = sameDayMicrodepositsEnabled;
}
public LinkTokenCreateRequestAuth instantMicrodepositsEnabled(Boolean instantMicrodepositsEnabled) {
this.instantMicrodepositsEnabled = instantMicrodepositsEnabled;
return this;
}
/**
* Specifies whether the Link session is enabled for the Instant Micro-deposits flow. Default behavior for Plaid teams created after November 2023 is `false`; default behavior for Plaid teams created before that date is `true`.
* @return instantMicrodepositsEnabled
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Specifies whether the Link session is enabled for the Instant Micro-deposits flow. Default behavior for Plaid teams created after November 2023 is `false`; default behavior for Plaid teams created before that date is `true`.")
public Boolean getInstantMicrodepositsEnabled() {
return instantMicrodepositsEnabled;
}
public void setInstantMicrodepositsEnabled(Boolean instantMicrodepositsEnabled) {
this.instantMicrodepositsEnabled = instantMicrodepositsEnabled;
}
public LinkTokenCreateRequestAuth rerouteToCredentials(RerouteToCredentialsEnum rerouteToCredentials) {
this.rerouteToCredentials = rerouteToCredentials;
return this;
}
/**
* Specifies what type of [Reroute to Credentials](https://plaid.com/docs/auth/coverage/same-day/#reroute-to-credentials) pane should be used in the Link session for the Same Day Micro-deposits flow. Default behavior is `OPTIONAL`.
* @return rerouteToCredentials
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Specifies what type of [Reroute to Credentials](https://plaid.com/docs/auth/coverage/same-day/#reroute-to-credentials) pane should be used in the Link session for the Same Day Micro-deposits flow. Default behavior is `OPTIONAL`.")
public RerouteToCredentialsEnum getRerouteToCredentials() {
return rerouteToCredentials;
}
public void setRerouteToCredentials(RerouteToCredentialsEnum rerouteToCredentials) {
this.rerouteToCredentials = rerouteToCredentials;
}
public LinkTokenCreateRequestAuth databaseMatchEnabled(Boolean databaseMatchEnabled) {
this.databaseMatchEnabled = databaseMatchEnabled;
return this;
}
/**
* Specifies whether the Link session is enabled for the Database Match flow. Default behavior is `false`.
* @return databaseMatchEnabled
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Specifies whether the Link session is enabled for the Database Match flow. Default behavior is `false`.")
public Boolean getDatabaseMatchEnabled() {
return databaseMatchEnabled;
}
public void setDatabaseMatchEnabled(Boolean databaseMatchEnabled) {
this.databaseMatchEnabled = databaseMatchEnabled;
}
public LinkTokenCreateRequestAuth databaseInsightsEnabled(Boolean databaseInsightsEnabled) {
this.databaseInsightsEnabled = databaseInsightsEnabled;
return this;
}
/**
* Specifies whether the Link session is enabled for the Database Insights flow. Database Insights is currently in closed beta; for access, contact your Account Manager. Default behavior is `false`.
* @return databaseInsightsEnabled
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Specifies whether the Link session is enabled for the Database Insights flow. Database Insights is currently in closed beta; for access, contact your Account Manager. Default behavior is `false`.")
public Boolean getDatabaseInsightsEnabled() {
return databaseInsightsEnabled;
}
public void setDatabaseInsightsEnabled(Boolean databaseInsightsEnabled) {
this.databaseInsightsEnabled = databaseInsightsEnabled;
}
public LinkTokenCreateRequestAuth flowType(FlowTypeEnum flowType) {
this.flowType = flowType;
return this;
}
/**
* This field has been deprecated in favor of `auth_type_select_enabled`.
* @return flowType
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "This field has been deprecated in favor of `auth_type_select_enabled`.")
public FlowTypeEnum getFlowType() {
return flowType;
}
public void setFlowType(FlowTypeEnum flowType) {
this.flowType = flowType;
}
public LinkTokenCreateRequestAuth smsMicrodepositsVerificationEnabled(Boolean smsMicrodepositsVerificationEnabled) {
this.smsMicrodepositsVerificationEnabled = smsMicrodepositsVerificationEnabled;
return this;
}
/**
* Specifies whether the Link session is enabled for SMS micro-deposits verification. Default behavior is `true`.
* @return smsMicrodepositsVerificationEnabled
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Specifies whether the Link session is enabled for SMS micro-deposits verification. Default behavior is `true`.")
public Boolean getSmsMicrodepositsVerificationEnabled() {
return smsMicrodepositsVerificationEnabled;
}
public void setSmsMicrodepositsVerificationEnabled(Boolean smsMicrodepositsVerificationEnabled) {
this.smsMicrodepositsVerificationEnabled = smsMicrodepositsVerificationEnabled;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LinkTokenCreateRequestAuth linkTokenCreateRequestAuth = (LinkTokenCreateRequestAuth) o;
return Objects.equals(this.authTypeSelectEnabled, linkTokenCreateRequestAuth.authTypeSelectEnabled) &&
Objects.equals(this.automatedMicrodepositsEnabled, linkTokenCreateRequestAuth.automatedMicrodepositsEnabled) &&
Objects.equals(this.instantMatchEnabled, linkTokenCreateRequestAuth.instantMatchEnabled) &&
Objects.equals(this.sameDayMicrodepositsEnabled, linkTokenCreateRequestAuth.sameDayMicrodepositsEnabled) &&
Objects.equals(this.instantMicrodepositsEnabled, linkTokenCreateRequestAuth.instantMicrodepositsEnabled) &&
Objects.equals(this.rerouteToCredentials, linkTokenCreateRequestAuth.rerouteToCredentials) &&
Objects.equals(this.databaseMatchEnabled, linkTokenCreateRequestAuth.databaseMatchEnabled) &&
Objects.equals(this.databaseInsightsEnabled, linkTokenCreateRequestAuth.databaseInsightsEnabled) &&
Objects.equals(this.flowType, linkTokenCreateRequestAuth.flowType) &&
Objects.equals(this.smsMicrodepositsVerificationEnabled, linkTokenCreateRequestAuth.smsMicrodepositsVerificationEnabled);
}
@Override
public int hashCode() {
return Objects.hash(authTypeSelectEnabled, automatedMicrodepositsEnabled, instantMatchEnabled, sameDayMicrodepositsEnabled, instantMicrodepositsEnabled, rerouteToCredentials, databaseMatchEnabled, databaseInsightsEnabled, flowType, smsMicrodepositsVerificationEnabled);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class LinkTokenCreateRequestAuth {\n");
sb.append(" authTypeSelectEnabled: ").append(toIndentedString(authTypeSelectEnabled)).append("\n");
sb.append(" automatedMicrodepositsEnabled: ").append(toIndentedString(automatedMicrodepositsEnabled)).append("\n");
sb.append(" instantMatchEnabled: ").append(toIndentedString(instantMatchEnabled)).append("\n");
sb.append(" sameDayMicrodepositsEnabled: ").append(toIndentedString(sameDayMicrodepositsEnabled)).append("\n");
sb.append(" instantMicrodepositsEnabled: ").append(toIndentedString(instantMicrodepositsEnabled)).append("\n");
sb.append(" rerouteToCredentials: ").append(toIndentedString(rerouteToCredentials)).append("\n");
sb.append(" databaseMatchEnabled: ").append(toIndentedString(databaseMatchEnabled)).append("\n");
sb.append(" databaseInsightsEnabled: ").append(toIndentedString(databaseInsightsEnabled)).append("\n");
sb.append(" flowType: ").append(toIndentedString(flowType)).append("\n");
sb.append(" smsMicrodepositsVerificationEnabled: ").append(toIndentedString(smsMicrodepositsVerificationEnabled)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy