repo stringclasses 1k values | file_url stringlengths 96 373 | file_path stringlengths 11 294 | content stringlengths 0 32.8k | language stringclasses 1 value | license stringclasses 6 values | commit_sha stringclasses 1k values | retrieved_at stringdate 2026-01-04 14:45:56 2026-01-04 18:30:23 | truncated bool 2 classes |
|---|---|---|---|---|---|---|---|---|
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/OutlierTransactionsInsights.java | src/main/java/com/plaid/client/model/OutlierTransactionsInsights.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.AmountWithCurrency;
import com.plaid.client.model.CategoryExpenses;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* Insights into unusually large transactions that exceed typical spending patterns for the account.
*/
@ApiModel(description = "Insights into unusually large transactions that exceed typical spending patterns for the account.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class OutlierTransactionsInsights {
public static final String SERIALIZED_NAME_TRANSACTIONS_COUNT = "transactions_count";
@SerializedName(SERIALIZED_NAME_TRANSACTIONS_COUNT)
private Integer transactionsCount;
public static final String SERIALIZED_NAME_TOTAL_AMOUNT = "total_amount";
@SerializedName(SERIALIZED_NAME_TOTAL_AMOUNT)
private AmountWithCurrency totalAmount;
public static final String SERIALIZED_NAME_TOP_CATEGORIES = "top_categories";
@SerializedName(SERIALIZED_NAME_TOP_CATEGORIES)
private List<CategoryExpenses> topCategories = null;
public OutlierTransactionsInsights transactionsCount(Integer transactionsCount) {
this.transactionsCount = transactionsCount;
return this;
}
/**
* The total number of transactions whose value is above the threshold of normal amounts for a given account.
* @return transactionsCount
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The total number of transactions whose value is above the threshold of normal amounts for a given account.")
public Integer getTransactionsCount() {
return transactionsCount;
}
public void setTransactionsCount(Integer transactionsCount) {
this.transactionsCount = transactionsCount;
}
public OutlierTransactionsInsights totalAmount(AmountWithCurrency totalAmount) {
this.totalAmount = totalAmount;
return this;
}
/**
* Get totalAmount
* @return totalAmount
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public AmountWithCurrency getTotalAmount() {
return totalAmount;
}
public void setTotalAmount(AmountWithCurrency totalAmount) {
this.totalAmount = totalAmount;
}
public OutlierTransactionsInsights topCategories(List<CategoryExpenses> topCategories) {
this.topCategories = topCategories;
return this;
}
public OutlierTransactionsInsights addTopCategoriesItem(CategoryExpenses topCategoriesItem) {
if (this.topCategories == null) {
this.topCategories = new ArrayList<>();
}
this.topCategories.add(topCategoriesItem);
return this;
}
/**
* Up to 3 top categories of expenses in this group.
* @return topCategories
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Up to 3 top categories of expenses in this group.")
public List<CategoryExpenses> getTopCategories() {
return topCategories;
}
public void setTopCategories(List<CategoryExpenses> topCategories) {
this.topCategories = topCategories;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
OutlierTransactionsInsights outlierTransactionsInsights = (OutlierTransactionsInsights) o;
return Objects.equals(this.transactionsCount, outlierTransactionsInsights.transactionsCount) &&
Objects.equals(this.totalAmount, outlierTransactionsInsights.totalAmount) &&
Objects.equals(this.topCategories, outlierTransactionsInsights.topCategories);
}
@Override
public int hashCode() {
return Objects.hash(transactionsCount, totalAmount, topCategories);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class OutlierTransactionsInsights {\n");
sb.append(" transactionsCount: ").append(toIndentedString(transactionsCount)).append("\n");
sb.append(" totalAmount: ").append(toIndentedString(totalAmount)).append("\n");
sb.append(" topCategories: ").append(toIndentedString(topCategories)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/RecurringTransactionsUpdateWebhook.java | src/main/java/com/plaid/client/model/RecurringTransactionsUpdateWebhook.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.WebhookEnvironmentValues;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* Fired when recurring transactions data is updated. This includes when a new recurring stream is detected or when a new transaction is added to an existing recurring stream. The `RECURRING_TRANSACTIONS_UPDATE` webhook will also fire when one or more attributes of the recurring stream changes, which is usually a result of the addition, update, or removal of transactions to the stream. After receipt of this webhook, the updated data can be fetched from `/transactions/recurring/get`.
*/
@ApiModel(description = "Fired when recurring transactions data is updated. This includes when a new recurring stream is detected or when a new transaction is added to an existing recurring stream. The `RECURRING_TRANSACTIONS_UPDATE` webhook will also fire when one or more attributes of the recurring stream changes, which is usually a result of the addition, update, or removal of transactions to the stream. After receipt of this webhook, the updated data can be fetched from `/transactions/recurring/get`.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class RecurringTransactionsUpdateWebhook {
public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type";
@SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE)
private String webhookType;
public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code";
@SerializedName(SERIALIZED_NAME_WEBHOOK_CODE)
private String webhookCode;
public static final String SERIALIZED_NAME_ITEM_ID = "item_id";
@SerializedName(SERIALIZED_NAME_ITEM_ID)
private String itemId;
public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids";
@SerializedName(SERIALIZED_NAME_ACCOUNT_IDS)
private List<String> accountIds = new ArrayList<>();
public static final String SERIALIZED_NAME_ENVIRONMENT = "environment";
@SerializedName(SERIALIZED_NAME_ENVIRONMENT)
private WebhookEnvironmentValues environment;
public RecurringTransactionsUpdateWebhook webhookType(String webhookType) {
this.webhookType = webhookType;
return this;
}
/**
* `TRANSACTIONS`
* @return webhookType
**/
@ApiModelProperty(required = true, value = "`TRANSACTIONS`")
public String getWebhookType() {
return webhookType;
}
public void setWebhookType(String webhookType) {
this.webhookType = webhookType;
}
public RecurringTransactionsUpdateWebhook webhookCode(String webhookCode) {
this.webhookCode = webhookCode;
return this;
}
/**
* `RECURRING_TRANSACTIONS_UPDATE`
* @return webhookCode
**/
@ApiModelProperty(required = true, value = "`RECURRING_TRANSACTIONS_UPDATE`")
public String getWebhookCode() {
return webhookCode;
}
public void setWebhookCode(String webhookCode) {
this.webhookCode = webhookCode;
}
public RecurringTransactionsUpdateWebhook itemId(String itemId) {
this.itemId = itemId;
return this;
}
/**
* The `item_id` of the Item associated with this webhook, warning, or error
* @return itemId
**/
@ApiModelProperty(required = true, value = "The `item_id` of the Item associated with this webhook, warning, or error")
public String getItemId() {
return itemId;
}
public void setItemId(String itemId) {
this.itemId = itemId;
}
public RecurringTransactionsUpdateWebhook accountIds(List<String> accountIds) {
this.accountIds = accountIds;
return this;
}
public RecurringTransactionsUpdateWebhook addAccountIdsItem(String accountIdsItem) {
this.accountIds.add(accountIdsItem);
return this;
}
/**
* A list of `account_ids` for accounts that have new or updated recurring transactions data.
* @return accountIds
**/
@ApiModelProperty(required = true, value = "A list of `account_ids` for accounts that have new or updated recurring transactions data.")
public List<String> getAccountIds() {
return accountIds;
}
public void setAccountIds(List<String> accountIds) {
this.accountIds = accountIds;
}
public RecurringTransactionsUpdateWebhook environment(WebhookEnvironmentValues environment) {
this.environment = environment;
return this;
}
/**
* Get environment
* @return environment
**/
@ApiModelProperty(required = true, value = "")
public WebhookEnvironmentValues getEnvironment() {
return environment;
}
public void setEnvironment(WebhookEnvironmentValues environment) {
this.environment = environment;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RecurringTransactionsUpdateWebhook recurringTransactionsUpdateWebhook = (RecurringTransactionsUpdateWebhook) o;
return Objects.equals(this.webhookType, recurringTransactionsUpdateWebhook.webhookType) &&
Objects.equals(this.webhookCode, recurringTransactionsUpdateWebhook.webhookCode) &&
Objects.equals(this.itemId, recurringTransactionsUpdateWebhook.itemId) &&
Objects.equals(this.accountIds, recurringTransactionsUpdateWebhook.accountIds) &&
Objects.equals(this.environment, recurringTransactionsUpdateWebhook.environment);
}
@Override
public int hashCode() {
return Objects.hash(webhookType, webhookCode, itemId, accountIds, environment);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RecurringTransactionsUpdateWebhook {\n");
sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n");
sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n");
sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n");
sb.append(" accountIds: ").append(toIndentedString(accountIds)).append("\n");
sb.append(" environment: ").append(toIndentedString(environment)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IdentityVerificationRetryResponse.java | src/main/java/com/plaid/client/model/IdentityVerificationRetryResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.DocumentaryVerification;
import com.plaid.client.model.IDVProtectEvent;
import com.plaid.client.model.IdentityVerificationStatus;
import com.plaid.client.model.IdentityVerificationStepSummary;
import com.plaid.client.model.IdentityVerificationTemplateReference;
import com.plaid.client.model.IdentityVerificationUserData;
import com.plaid.client.model.KYCCheckDetails;
import com.plaid.client.model.RiskCheckDetails;
import com.plaid.client.model.SelfieCheck;
import com.plaid.client.model.VerifySMSDetails;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.time.OffsetDateTime;
/**
* A identity verification attempt represents a customer's attempt to verify their identity, reflecting the required steps for completing the session, the results for each step, and information collected in the process.
*/
@ApiModel(description = "A identity verification attempt represents a customer's attempt to verify their identity, reflecting the required steps for completing the session, the results for each step, and information collected in the process.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class IdentityVerificationRetryResponse {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
private String id;
public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id";
@SerializedName(SERIALIZED_NAME_CLIENT_USER_ID)
private String clientUserId;
public static final String SERIALIZED_NAME_CREATED_AT = "created_at";
@SerializedName(SERIALIZED_NAME_CREATED_AT)
private java.sql.Timestamp createdAt;
public static final String SERIALIZED_NAME_COMPLETED_AT = "completed_at";
@SerializedName(SERIALIZED_NAME_COMPLETED_AT)
private OffsetDateTime completedAt;
public static final String SERIALIZED_NAME_PREVIOUS_ATTEMPT_ID = "previous_attempt_id";
@SerializedName(SERIALIZED_NAME_PREVIOUS_ATTEMPT_ID)
private String previousAttemptId;
public static final String SERIALIZED_NAME_SHAREABLE_URL = "shareable_url";
@SerializedName(SERIALIZED_NAME_SHAREABLE_URL)
private String shareableUrl;
public static final String SERIALIZED_NAME_TEMPLATE = "template";
@SerializedName(SERIALIZED_NAME_TEMPLATE)
private IdentityVerificationTemplateReference template;
public static final String SERIALIZED_NAME_USER = "user";
@SerializedName(SERIALIZED_NAME_USER)
private IdentityVerificationUserData user;
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private IdentityVerificationStatus status;
public static final String SERIALIZED_NAME_STEPS = "steps";
@SerializedName(SERIALIZED_NAME_STEPS)
private IdentityVerificationStepSummary steps;
public static final String SERIALIZED_NAME_DOCUMENTARY_VERIFICATION = "documentary_verification";
@SerializedName(SERIALIZED_NAME_DOCUMENTARY_VERIFICATION)
private DocumentaryVerification documentaryVerification;
public static final String SERIALIZED_NAME_SELFIE_CHECK = "selfie_check";
@SerializedName(SERIALIZED_NAME_SELFIE_CHECK)
private SelfieCheck selfieCheck;
public static final String SERIALIZED_NAME_KYC_CHECK = "kyc_check";
@SerializedName(SERIALIZED_NAME_KYC_CHECK)
private KYCCheckDetails kycCheck;
public static final String SERIALIZED_NAME_RISK_CHECK = "risk_check";
@SerializedName(SERIALIZED_NAME_RISK_CHECK)
private RiskCheckDetails riskCheck;
public static final String SERIALIZED_NAME_VERIFY_SMS = "verify_sms";
@SerializedName(SERIALIZED_NAME_VERIFY_SMS)
private VerifySMSDetails verifySms;
public static final String SERIALIZED_NAME_WATCHLIST_SCREENING_ID = "watchlist_screening_id";
@SerializedName(SERIALIZED_NAME_WATCHLIST_SCREENING_ID)
private String watchlistScreeningId;
public static final String SERIALIZED_NAME_BEACON_USER_ID = "beacon_user_id";
@SerializedName(SERIALIZED_NAME_BEACON_USER_ID)
private String beaconUserId;
public static final String SERIALIZED_NAME_USER_ID = "user_id";
@SerializedName(SERIALIZED_NAME_USER_ID)
private String userId;
public static final String SERIALIZED_NAME_REDACTED_AT = "redacted_at";
@SerializedName(SERIALIZED_NAME_REDACTED_AT)
private OffsetDateTime redactedAt;
public static final String SERIALIZED_NAME_LATEST_SCORED_PROTECT_EVENT = "latest_scored_protect_event";
@SerializedName(SERIALIZED_NAME_LATEST_SCORED_PROTECT_EVENT)
private IDVProtectEvent latestScoredProtectEvent;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public IdentityVerificationRetryResponse id(String id) {
this.id = id;
return this;
}
/**
* ID of the associated Identity Verification attempt.
* @return id
**/
@ApiModelProperty(example = "idv_52xR9LKo77r1Np", required = true, value = "ID of the associated Identity Verification attempt.")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public IdentityVerificationRetryResponse clientUserId(String clientUserId) {
this.clientUserId = clientUserId;
return this;
}
/**
* A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the `/link/token/create` `client_user_id` to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the `client_user_id`.
* @return clientUserId
**/
@ApiModelProperty(example = "your-db-id-3b24110", required = true, value = "A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the `/link/token/create` `client_user_id` to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the `client_user_id`.")
public String getClientUserId() {
return clientUserId;
}
public void setClientUserId(String clientUserId) {
this.clientUserId = clientUserId;
}
public IdentityVerificationRetryResponse createdAt(java.sql.Timestamp createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* Get createdAt
* @return createdAt
**/
@ApiModelProperty(required = true, value = "")
public java.sql.Timestamp getCreatedAt() {
return createdAt;
}
public void setCreatedAt(java.sql.Timestamp createdAt) {
this.createdAt = createdAt;
}
public IdentityVerificationRetryResponse completedAt(OffsetDateTime completedAt) {
this.completedAt = completedAt;
return this;
}
/**
* An ISO8601 formatted timestamp.
* @return completedAt
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "2020-07-24T03:26:02Z", required = true, value = "An ISO8601 formatted timestamp.")
public OffsetDateTime getCompletedAt() {
return completedAt;
}
public void setCompletedAt(OffsetDateTime completedAt) {
this.completedAt = completedAt;
}
public IdentityVerificationRetryResponse previousAttemptId(String previousAttemptId) {
this.previousAttemptId = previousAttemptId;
return this;
}
/**
* The ID for the Identity Verification preceding this session. This field will only be filled if the current Identity Verification is a retry of a previous attempt.
* @return previousAttemptId
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "idv_42cF1MNo42r9Xj", required = true, value = "The ID for the Identity Verification preceding this session. This field will only be filled if the current Identity Verification is a retry of a previous attempt.")
public String getPreviousAttemptId() {
return previousAttemptId;
}
public void setPreviousAttemptId(String previousAttemptId) {
this.previousAttemptId = previousAttemptId;
}
public IdentityVerificationRetryResponse shareableUrl(String shareableUrl) {
this.shareableUrl = shareableUrl;
return this;
}
/**
* A shareable URL that can be sent directly to the user to complete verification
* @return shareableUrl
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "https://flow.plaid.com/verify/idv_4FrXJvfQU3zGUR?key=e004115db797f7cc3083bff3167cba30644ef630fb46f5b086cde6cc3b86a36f", required = true, value = "A shareable URL that can be sent directly to the user to complete verification")
public String getShareableUrl() {
return shareableUrl;
}
public void setShareableUrl(String shareableUrl) {
this.shareableUrl = shareableUrl;
}
public IdentityVerificationRetryResponse template(IdentityVerificationTemplateReference template) {
this.template = template;
return this;
}
/**
* Get template
* @return template
**/
@ApiModelProperty(required = true, value = "")
public IdentityVerificationTemplateReference getTemplate() {
return template;
}
public void setTemplate(IdentityVerificationTemplateReference template) {
this.template = template;
}
public IdentityVerificationRetryResponse user(IdentityVerificationUserData user) {
this.user = user;
return this;
}
/**
* Get user
* @return user
**/
@ApiModelProperty(required = true, value = "")
public IdentityVerificationUserData getUser() {
return user;
}
public void setUser(IdentityVerificationUserData user) {
this.user = user;
}
public IdentityVerificationRetryResponse status(IdentityVerificationStatus status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@ApiModelProperty(required = true, value = "")
public IdentityVerificationStatus getStatus() {
return status;
}
public void setStatus(IdentityVerificationStatus status) {
this.status = status;
}
public IdentityVerificationRetryResponse steps(IdentityVerificationStepSummary steps) {
this.steps = steps;
return this;
}
/**
* Get steps
* @return steps
**/
@ApiModelProperty(required = true, value = "")
public IdentityVerificationStepSummary getSteps() {
return steps;
}
public void setSteps(IdentityVerificationStepSummary steps) {
this.steps = steps;
}
public IdentityVerificationRetryResponse documentaryVerification(DocumentaryVerification documentaryVerification) {
this.documentaryVerification = documentaryVerification;
return this;
}
/**
* Get documentaryVerification
* @return documentaryVerification
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public DocumentaryVerification getDocumentaryVerification() {
return documentaryVerification;
}
public void setDocumentaryVerification(DocumentaryVerification documentaryVerification) {
this.documentaryVerification = documentaryVerification;
}
public IdentityVerificationRetryResponse selfieCheck(SelfieCheck selfieCheck) {
this.selfieCheck = selfieCheck;
return this;
}
/**
* Get selfieCheck
* @return selfieCheck
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public SelfieCheck getSelfieCheck() {
return selfieCheck;
}
public void setSelfieCheck(SelfieCheck selfieCheck) {
this.selfieCheck = selfieCheck;
}
public IdentityVerificationRetryResponse kycCheck(KYCCheckDetails kycCheck) {
this.kycCheck = kycCheck;
return this;
}
/**
* Get kycCheck
* @return kycCheck
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public KYCCheckDetails getKycCheck() {
return kycCheck;
}
public void setKycCheck(KYCCheckDetails kycCheck) {
this.kycCheck = kycCheck;
}
public IdentityVerificationRetryResponse riskCheck(RiskCheckDetails riskCheck) {
this.riskCheck = riskCheck;
return this;
}
/**
* Get riskCheck
* @return riskCheck
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public RiskCheckDetails getRiskCheck() {
return riskCheck;
}
public void setRiskCheck(RiskCheckDetails riskCheck) {
this.riskCheck = riskCheck;
}
public IdentityVerificationRetryResponse verifySms(VerifySMSDetails verifySms) {
this.verifySms = verifySms;
return this;
}
/**
* Get verifySms
* @return verifySms
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public VerifySMSDetails getVerifySms() {
return verifySms;
}
public void setVerifySms(VerifySMSDetails verifySms) {
this.verifySms = verifySms;
}
public IdentityVerificationRetryResponse watchlistScreeningId(String watchlistScreeningId) {
this.watchlistScreeningId = watchlistScreeningId;
return this;
}
/**
* ID of the associated screening.
* @return watchlistScreeningId
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "scr_52xR9LKo77r1Np", required = true, value = "ID of the associated screening.")
public String getWatchlistScreeningId() {
return watchlistScreeningId;
}
public void setWatchlistScreeningId(String watchlistScreeningId) {
this.watchlistScreeningId = watchlistScreeningId;
}
public IdentityVerificationRetryResponse beaconUserId(String beaconUserId) {
this.beaconUserId = beaconUserId;
return this;
}
/**
* ID of the associated Beacon User.
* @return beaconUserId
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "becusr_42cF1MNo42r9Xj", required = true, value = "ID of the associated Beacon User.")
public String getBeaconUserId() {
return beaconUserId;
}
public void setBeaconUserId(String beaconUserId) {
this.beaconUserId = beaconUserId;
}
public IdentityVerificationRetryResponse userId(String userId) {
this.userId = userId;
return this;
}
/**
* A unique user identifier, created by `/user/create`. All integrations that began using `/user/create` after December 10, 2025 use this field to identify a user instead of the `user_token`. For more details, see [new user APIs](https://plaid.com/docs/api/user/user-apis).
* @return userId
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "usr_dddAs9ewdcDQQQ", required = true, value = "A unique user identifier, created by `/user/create`. All integrations that began using `/user/create` after December 10, 2025 use this field to identify a user instead of the `user_token`. For more details, see [new user APIs](https://plaid.com/docs/api/user/user-apis).")
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public IdentityVerificationRetryResponse redactedAt(OffsetDateTime redactedAt) {
this.redactedAt = redactedAt;
return this;
}
/**
* An ISO8601 formatted timestamp.
* @return redactedAt
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "2020-07-24T03:26:02Z", required = true, value = "An ISO8601 formatted timestamp.")
public OffsetDateTime getRedactedAt() {
return redactedAt;
}
public void setRedactedAt(OffsetDateTime redactedAt) {
this.redactedAt = redactedAt;
}
public IdentityVerificationRetryResponse latestScoredProtectEvent(IDVProtectEvent latestScoredProtectEvent) {
this.latestScoredProtectEvent = latestScoredProtectEvent;
return this;
}
/**
* Get latestScoredProtectEvent
* @return latestScoredProtectEvent
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public IDVProtectEvent getLatestScoredProtectEvent() {
return latestScoredProtectEvent;
}
public void setLatestScoredProtectEvent(IDVProtectEvent latestScoredProtectEvent) {
this.latestScoredProtectEvent = latestScoredProtectEvent;
}
public IdentityVerificationRetryResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
IdentityVerificationRetryResponse identityVerificationRetryResponse = (IdentityVerificationRetryResponse) o;
return Objects.equals(this.id, identityVerificationRetryResponse.id) &&
Objects.equals(this.clientUserId, identityVerificationRetryResponse.clientUserId) &&
Objects.equals(this.createdAt, identityVerificationRetryResponse.createdAt) &&
Objects.equals(this.completedAt, identityVerificationRetryResponse.completedAt) &&
Objects.equals(this.previousAttemptId, identityVerificationRetryResponse.previousAttemptId) &&
Objects.equals(this.shareableUrl, identityVerificationRetryResponse.shareableUrl) &&
Objects.equals(this.template, identityVerificationRetryResponse.template) &&
Objects.equals(this.user, identityVerificationRetryResponse.user) &&
Objects.equals(this.status, identityVerificationRetryResponse.status) &&
Objects.equals(this.steps, identityVerificationRetryResponse.steps) &&
Objects.equals(this.documentaryVerification, identityVerificationRetryResponse.documentaryVerification) &&
Objects.equals(this.selfieCheck, identityVerificationRetryResponse.selfieCheck) &&
Objects.equals(this.kycCheck, identityVerificationRetryResponse.kycCheck) &&
Objects.equals(this.riskCheck, identityVerificationRetryResponse.riskCheck) &&
Objects.equals(this.verifySms, identityVerificationRetryResponse.verifySms) &&
Objects.equals(this.watchlistScreeningId, identityVerificationRetryResponse.watchlistScreeningId) &&
Objects.equals(this.beaconUserId, identityVerificationRetryResponse.beaconUserId) &&
Objects.equals(this.userId, identityVerificationRetryResponse.userId) &&
Objects.equals(this.redactedAt, identityVerificationRetryResponse.redactedAt) &&
Objects.equals(this.latestScoredProtectEvent, identityVerificationRetryResponse.latestScoredProtectEvent) &&
Objects.equals(this.requestId, identityVerificationRetryResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(id, clientUserId, createdAt, completedAt, previousAttemptId, shareableUrl, template, user, status, steps, documentaryVerification, selfieCheck, kycCheck, riskCheck, verifySms, watchlistScreeningId, beaconUserId, userId, redactedAt, latestScoredProtectEvent, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class IdentityVerificationRetryResponse {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" completedAt: ").append(toIndentedString(completedAt)).append("\n");
sb.append(" previousAttemptId: ").append(toIndentedString(previousAttemptId)).append("\n");
sb.append(" shareableUrl: ").append(toIndentedString(shareableUrl)).append("\n");
sb.append(" template: ").append(toIndentedString(template)).append("\n");
sb.append(" user: ").append(toIndentedString(user)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" steps: ").append(toIndentedString(steps)).append("\n");
sb.append(" documentaryVerification: ").append(toIndentedString(documentaryVerification)).append("\n");
sb.append(" selfieCheck: ").append(toIndentedString(selfieCheck)).append("\n");
sb.append(" kycCheck: ").append(toIndentedString(kycCheck)).append("\n");
sb.append(" riskCheck: ").append(toIndentedString(riskCheck)).append("\n");
sb.append(" verifySms: ").append(toIndentedString(verifySms)).append("\n");
sb.append(" watchlistScreeningId: ").append(toIndentedString(watchlistScreeningId)).append("\n");
sb.append(" beaconUserId: ").append(toIndentedString(beaconUserId)).append("\n");
sb.append(" userId: ").append(toIndentedString(userId)).append("\n");
sb.append(" redactedAt: ").append(toIndentedString(redactedAt)).append("\n");
sb.append(" latestScoredProtectEvent: ").append(toIndentedString(latestScoredProtectEvent)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkDeliveryGetResponse.java | src/main/java/com/plaid/client/model/LinkDeliveryGetResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.LinkDeliverySessionStatus;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.List;
/**
* LinkDeliveryGetRequest defines the response schema for `/link_delivery/get`
*/
@ApiModel(description = "LinkDeliveryGetRequest defines the response schema for `/link_delivery/get`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class LinkDeliveryGetResponse {
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private LinkDeliverySessionStatus status;
public static final String SERIALIZED_NAME_CREATED_AT = "created_at";
@SerializedName(SERIALIZED_NAME_CREATED_AT)
private OffsetDateTime createdAt;
public static final String SERIALIZED_NAME_COMPLETED_AT = "completed_at";
@SerializedName(SERIALIZED_NAME_COMPLETED_AT)
private OffsetDateTime completedAt;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public static final String SERIALIZED_NAME_ACCESS_TOKENS = "access_tokens";
@SerializedName(SERIALIZED_NAME_ACCESS_TOKENS)
private List<String> accessTokens = null;
public static final String SERIALIZED_NAME_ITEM_IDS = "item_ids";
@SerializedName(SERIALIZED_NAME_ITEM_IDS)
private List<String> itemIds = null;
public LinkDeliveryGetResponse status(LinkDeliverySessionStatus status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@ApiModelProperty(required = true, value = "")
public LinkDeliverySessionStatus getStatus() {
return status;
}
public void setStatus(LinkDeliverySessionStatus status) {
this.status = status;
}
public LinkDeliveryGetResponse createdAt(OffsetDateTime createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the time the given Hosted Link session was created at.
* @return createdAt
**/
@ApiModelProperty(required = true, value = "Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the time the given Hosted Link session was created at.")
public OffsetDateTime getCreatedAt() {
return createdAt;
}
public void setCreatedAt(OffsetDateTime createdAt) {
this.createdAt = createdAt;
}
public LinkDeliveryGetResponse completedAt(OffsetDateTime completedAt) {
this.completedAt = completedAt;
return this;
}
/**
* Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the time the given Hosted Link session was completed at.
* @return completedAt
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the time the given Hosted Link session was completed at.")
public OffsetDateTime getCompletedAt() {
return completedAt;
}
public void setCompletedAt(OffsetDateTime completedAt) {
this.completedAt = completedAt;
}
public LinkDeliveryGetResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public LinkDeliveryGetResponse accessTokens(List<String> accessTokens) {
this.accessTokens = accessTokens;
return this;
}
public LinkDeliveryGetResponse addAccessTokensItem(String accessTokensItem) {
if (this.accessTokens == null) {
this.accessTokens = new ArrayList<>();
}
this.accessTokens.add(accessTokensItem);
return this;
}
/**
* An array of access tokens associated with the Hosted Link session.
* @return accessTokens
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "An array of access tokens associated with the Hosted Link session.")
public List<String> getAccessTokens() {
return accessTokens;
}
public void setAccessTokens(List<String> accessTokens) {
this.accessTokens = accessTokens;
}
public LinkDeliveryGetResponse itemIds(List<String> itemIds) {
this.itemIds = itemIds;
return this;
}
public LinkDeliveryGetResponse addItemIdsItem(String itemIdsItem) {
if (this.itemIds == null) {
this.itemIds = new ArrayList<>();
}
this.itemIds.add(itemIdsItem);
return this;
}
/**
* An array of `item_id`s associated with the Hosted Link session.
* @return itemIds
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "An array of `item_id`s associated with the Hosted Link session.")
public List<String> getItemIds() {
return itemIds;
}
public void setItemIds(List<String> itemIds) {
this.itemIds = itemIds;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LinkDeliveryGetResponse linkDeliveryGetResponse = (LinkDeliveryGetResponse) o;
return Objects.equals(this.status, linkDeliveryGetResponse.status) &&
Objects.equals(this.createdAt, linkDeliveryGetResponse.createdAt) &&
Objects.equals(this.completedAt, linkDeliveryGetResponse.completedAt) &&
Objects.equals(this.requestId, linkDeliveryGetResponse.requestId) &&
Objects.equals(this.accessTokens, linkDeliveryGetResponse.accessTokens) &&
Objects.equals(this.itemIds, linkDeliveryGetResponse.itemIds);
}
@Override
public int hashCode() {
return Objects.hash(status, createdAt, completedAt, requestId, accessTokens, itemIds);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class LinkDeliveryGetResponse {\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" completedAt: ").append(toIndentedString(completedAt)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append(" accessTokens: ").append(toIndentedString(accessTokens)).append("\n");
sb.append(" itemIds: ").append(toIndentedString(itemIds)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkCallbackMetadata.java | src/main/java/com/plaid/client/model/LinkCallbackMetadata.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.LinkDeliveryAccount;
import com.plaid.client.model.LinkDeliveryInstitution;
import com.plaid.client.model.LinkDeliveryWebhookCallbackType;
import com.plaid.client.model.LinkEventName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* Information related to the callback from the Hosted Link session.
*/
@ApiModel(description = "Information related to the callback from the Hosted Link session.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class LinkCallbackMetadata {
public static final String SERIALIZED_NAME_CALLBACK_TYPE = "callback_type";
@SerializedName(SERIALIZED_NAME_CALLBACK_TYPE)
private LinkDeliveryWebhookCallbackType callbackType;
public static final String SERIALIZED_NAME_EVENT_NAME = "event_name";
@SerializedName(SERIALIZED_NAME_EVENT_NAME)
private LinkEventName eventName;
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private String status;
public static final String SERIALIZED_NAME_LINK_SESSION_ID = "link_session_id";
@SerializedName(SERIALIZED_NAME_LINK_SESSION_ID)
private String linkSessionId;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public static final String SERIALIZED_NAME_INSTITUTION = "institution";
@SerializedName(SERIALIZED_NAME_INSTITUTION)
private LinkDeliveryInstitution institution;
public static final String SERIALIZED_NAME_ACCOUNTS = "accounts";
@SerializedName(SERIALIZED_NAME_ACCOUNTS)
private List<LinkDeliveryAccount> accounts = null;
public LinkCallbackMetadata callbackType(LinkDeliveryWebhookCallbackType callbackType) {
this.callbackType = callbackType;
return this;
}
/**
* Get callbackType
* @return callbackType
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public LinkDeliveryWebhookCallbackType getCallbackType() {
return callbackType;
}
public void setCallbackType(LinkDeliveryWebhookCallbackType callbackType) {
this.callbackType = callbackType;
}
public LinkCallbackMetadata eventName(LinkEventName eventName) {
this.eventName = eventName;
return this;
}
/**
* Get eventName
* @return eventName
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public LinkEventName getEventName() {
return eventName;
}
public void setEventName(LinkEventName eventName) {
this.eventName = eventName;
}
public LinkCallbackMetadata status(String status) {
this.status = status;
return this;
}
/**
* Indicates where in the flow the Link user exited
* @return status
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Indicates where in the flow the Link user exited")
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public LinkCallbackMetadata linkSessionId(String linkSessionId) {
this.linkSessionId = linkSessionId;
return this;
}
/**
* A unique identifier associated with a user's actions and events through the Link flow. Include this identifier when opening a support ticket for faster turnaround.
* @return linkSessionId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A unique identifier associated with a user's actions and events through the Link flow. Include this identifier when opening a support ticket for faster turnaround.")
public String getLinkSessionId() {
return linkSessionId;
}
public void setLinkSessionId(String linkSessionId) {
this.linkSessionId = linkSessionId;
}
public LinkCallbackMetadata requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* The request ID for the last request made by Link. This can be shared with Plaid Support to expedite investigation.
* @return requestId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The request ID for the last request made by Link. This can be shared with Plaid Support to expedite investigation.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public LinkCallbackMetadata institution(LinkDeliveryInstitution institution) {
this.institution = institution;
return this;
}
/**
* Get institution
* @return institution
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public LinkDeliveryInstitution getInstitution() {
return institution;
}
public void setInstitution(LinkDeliveryInstitution institution) {
this.institution = institution;
}
public LinkCallbackMetadata accounts(List<LinkDeliveryAccount> accounts) {
this.accounts = accounts;
return this;
}
public LinkCallbackMetadata addAccountsItem(LinkDeliveryAccount accountsItem) {
if (this.accounts == null) {
this.accounts = new ArrayList<>();
}
this.accounts.add(accountsItem);
return this;
}
/**
* A list of accounts attached to the connected Item. If Account Select is enabled via the developer dashboard, accounts will only include selected accounts.
* @return accounts
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A list of accounts attached to the connected Item. If Account Select is enabled via the developer dashboard, accounts will only include selected accounts.")
public List<LinkDeliveryAccount> getAccounts() {
return accounts;
}
public void setAccounts(List<LinkDeliveryAccount> accounts) {
this.accounts = accounts;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LinkCallbackMetadata linkCallbackMetadata = (LinkCallbackMetadata) o;
return Objects.equals(this.callbackType, linkCallbackMetadata.callbackType) &&
Objects.equals(this.eventName, linkCallbackMetadata.eventName) &&
Objects.equals(this.status, linkCallbackMetadata.status) &&
Objects.equals(this.linkSessionId, linkCallbackMetadata.linkSessionId) &&
Objects.equals(this.requestId, linkCallbackMetadata.requestId) &&
Objects.equals(this.institution, linkCallbackMetadata.institution) &&
Objects.equals(this.accounts, linkCallbackMetadata.accounts);
}
@Override
public int hashCode() {
return Objects.hash(callbackType, eventName, status, linkSessionId, requestId, institution, accounts);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class LinkCallbackMetadata {\n");
sb.append(" callbackType: ").append(toIndentedString(callbackType)).append("\n");
sb.append(" eventName: ").append(toIndentedString(eventName)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" linkSessionId: ").append(toIndentedString(linkSessionId)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append(" institution: ").append(toIndentedString(institution)).append("\n");
sb.append(" accounts: ").append(toIndentedString(accounts)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetResponse.java | src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.CheckReportWarning;
import com.plaid.client.model.CraPartnerInsights;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* CraPartnerInsightsGetResponse defines the response schema for `/cra/partner_insights/get`.
*/
@ApiModel(description = "CraPartnerInsightsGetResponse defines the response schema for `/cra/partner_insights/get`.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CraCheckReportPartnerInsightsGetResponse {
public static final String SERIALIZED_NAME_REPORT = "report";
@SerializedName(SERIALIZED_NAME_REPORT)
private CraPartnerInsights report;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public static final String SERIALIZED_NAME_WARNINGS = "warnings";
@SerializedName(SERIALIZED_NAME_WARNINGS)
private List<CheckReportWarning> warnings = null;
public CraCheckReportPartnerInsightsGetResponse report(CraPartnerInsights report) {
this.report = report;
return this;
}
/**
* Get report
* @return report
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public CraPartnerInsights getReport() {
return report;
}
public void setReport(CraPartnerInsights report) {
this.report = report;
}
public CraCheckReportPartnerInsightsGetResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public CraCheckReportPartnerInsightsGetResponse warnings(List<CheckReportWarning> warnings) {
this.warnings = warnings;
return this;
}
public CraCheckReportPartnerInsightsGetResponse addWarningsItem(CheckReportWarning warningsItem) {
if (this.warnings == null) {
this.warnings = new ArrayList<>();
}
this.warnings.add(warningsItem);
return this;
}
/**
* If the Partner Insights generation was successful but a subset of data could not be retrieved, this array will contain information about the errors causing information to be missing
* @return warnings
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "If the Partner Insights generation was successful but a subset of data could not be retrieved, this array will contain information about the errors causing information to be missing")
public List<CheckReportWarning> getWarnings() {
return warnings;
}
public void setWarnings(List<CheckReportWarning> warnings) {
this.warnings = warnings;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CraCheckReportPartnerInsightsGetResponse craCheckReportPartnerInsightsGetResponse = (CraCheckReportPartnerInsightsGetResponse) o;
return Objects.equals(this.report, craCheckReportPartnerInsightsGetResponse.report) &&
Objects.equals(this.requestId, craCheckReportPartnerInsightsGetResponse.requestId) &&
Objects.equals(this.warnings, craCheckReportPartnerInsightsGetResponse.warnings);
}
@Override
public int hashCode() {
return Objects.hash(report, requestId, warnings);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CraCheckReportPartnerInsightsGetResponse {\n");
sb.append(" report: ").append(toIndentedString(report)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append(" warnings: ").append(toIndentedString(warnings)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/RiskCheckSyntheticIdentity.java | src/main/java/com/plaid/client/model/RiskCheckSyntheticIdentity.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.RiskLevel;
import com.plaid.client.model.SyntheticFraud;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Field containing the data used in determining the outcome of the synthetic identity risk check. Contains the following fields: `score` - A score from 0 to 100 indicating the likelihood that the user is a synthetic identity.
*/
@ApiModel(description = "Field containing the data used in determining the outcome of the synthetic identity risk check. Contains the following fields: `score` - A score from 0 to 100 indicating the likelihood that the user is a synthetic identity.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class RiskCheckSyntheticIdentity {
public static final String SERIALIZED_NAME_SCORE = "score";
@SerializedName(SERIALIZED_NAME_SCORE)
private Integer score;
public static final String SERIALIZED_NAME_RISK_LEVEL = "risk_level";
@SerializedName(SERIALIZED_NAME_RISK_LEVEL)
private RiskLevel riskLevel;
public static final String SERIALIZED_NAME_FIRST_PARTY_SYNTHETIC_FRAUD = "first_party_synthetic_fraud";
@SerializedName(SERIALIZED_NAME_FIRST_PARTY_SYNTHETIC_FRAUD)
private SyntheticFraud firstPartySyntheticFraud;
public static final String SERIALIZED_NAME_THIRD_PARTY_SYNTHETIC_FRAUD = "third_party_synthetic_fraud";
@SerializedName(SERIALIZED_NAME_THIRD_PARTY_SYNTHETIC_FRAUD)
private SyntheticFraud thirdPartySyntheticFraud;
public RiskCheckSyntheticIdentity score(Integer score) {
this.score = score;
return this;
}
/**
* A score from 0 to 100 indicating the likelihood that the user is a synthetic identity.
* @return score
**/
@ApiModelProperty(example = "0", required = true, value = "A score from 0 to 100 indicating the likelihood that the user is a synthetic identity.")
public Integer getScore() {
return score;
}
public void setScore(Integer score) {
this.score = score;
}
public RiskCheckSyntheticIdentity riskLevel(RiskLevel riskLevel) {
this.riskLevel = riskLevel;
return this;
}
/**
* Get riskLevel
* @return riskLevel
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public RiskLevel getRiskLevel() {
return riskLevel;
}
public void setRiskLevel(RiskLevel riskLevel) {
this.riskLevel = riskLevel;
}
public RiskCheckSyntheticIdentity firstPartySyntheticFraud(SyntheticFraud firstPartySyntheticFraud) {
this.firstPartySyntheticFraud = firstPartySyntheticFraud;
return this;
}
/**
* Get firstPartySyntheticFraud
* @return firstPartySyntheticFraud
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public SyntheticFraud getFirstPartySyntheticFraud() {
return firstPartySyntheticFraud;
}
public void setFirstPartySyntheticFraud(SyntheticFraud firstPartySyntheticFraud) {
this.firstPartySyntheticFraud = firstPartySyntheticFraud;
}
public RiskCheckSyntheticIdentity thirdPartySyntheticFraud(SyntheticFraud thirdPartySyntheticFraud) {
this.thirdPartySyntheticFraud = thirdPartySyntheticFraud;
return this;
}
/**
* Get thirdPartySyntheticFraud
* @return thirdPartySyntheticFraud
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public SyntheticFraud getThirdPartySyntheticFraud() {
return thirdPartySyntheticFraud;
}
public void setThirdPartySyntheticFraud(SyntheticFraud thirdPartySyntheticFraud) {
this.thirdPartySyntheticFraud = thirdPartySyntheticFraud;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RiskCheckSyntheticIdentity riskCheckSyntheticIdentity = (RiskCheckSyntheticIdentity) o;
return Objects.equals(this.score, riskCheckSyntheticIdentity.score) &&
Objects.equals(this.riskLevel, riskCheckSyntheticIdentity.riskLevel) &&
Objects.equals(this.firstPartySyntheticFraud, riskCheckSyntheticIdentity.firstPartySyntheticFraud) &&
Objects.equals(this.thirdPartySyntheticFraud, riskCheckSyntheticIdentity.thirdPartySyntheticFraud);
}
@Override
public int hashCode() {
return Objects.hash(score, riskLevel, firstPartySyntheticFraud, thirdPartySyntheticFraud);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RiskCheckSyntheticIdentity {\n");
sb.append(" score: ").append(toIndentedString(score)).append("\n");
sb.append(" riskLevel: ").append(toIndentedString(riskLevel)).append("\n");
sb.append(" firstPartySyntheticFraud: ").append(toIndentedString(firstPartySyntheticFraud)).append("\n");
sb.append(" thirdPartySyntheticFraud: ").append(toIndentedString(thirdPartySyntheticFraud)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ExternalPaymentScheduleBase.java | src/main/java/com/plaid/client/model/ExternalPaymentScheduleBase.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.PaymentScheduleInterval;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.time.LocalDate;
/**
* The schedule that the payment will be executed on. If a schedule is provided, the payment is automatically set up as a standing order. If no schedule is specified, the payment will be executed only once.
*/
@ApiModel(description = "The schedule that the payment will be executed on. If a schedule is provided, the payment is automatically set up as a standing order. If no schedule is specified, the payment will be executed only once.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ExternalPaymentScheduleBase {
public static final String SERIALIZED_NAME_INTERVAL = "interval";
@SerializedName(SERIALIZED_NAME_INTERVAL)
private PaymentScheduleInterval interval;
public static final String SERIALIZED_NAME_INTERVAL_EXECUTION_DAY = "interval_execution_day";
@SerializedName(SERIALIZED_NAME_INTERVAL_EXECUTION_DAY)
private Integer intervalExecutionDay;
public static final String SERIALIZED_NAME_START_DATE = "start_date";
@SerializedName(SERIALIZED_NAME_START_DATE)
private LocalDate startDate;
public static final String SERIALIZED_NAME_END_DATE = "end_date";
@SerializedName(SERIALIZED_NAME_END_DATE)
private LocalDate endDate;
public static final String SERIALIZED_NAME_ADJUSTED_START_DATE = "adjusted_start_date";
@SerializedName(SERIALIZED_NAME_ADJUSTED_START_DATE)
private LocalDate adjustedStartDate;
public ExternalPaymentScheduleBase interval(PaymentScheduleInterval interval) {
this.interval = interval;
return this;
}
/**
* Get interval
* @return interval
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public PaymentScheduleInterval getInterval() {
return interval;
}
public void setInterval(PaymentScheduleInterval interval) {
this.interval = interval;
}
public ExternalPaymentScheduleBase intervalExecutionDay(Integer intervalExecutionDay) {
this.intervalExecutionDay = intervalExecutionDay;
return this;
}
/**
* The day of the interval on which to schedule the payment. If the payment interval is weekly, `interval_execution_day` should be an integer from 1 (Monday) to 7 (Sunday). If the payment interval is monthly, `interval_execution_day` should be an integer indicating which day of the month to make the payment on. Integers from 1 to 28 can be used to make a payment on that day of the month. Negative integers from -1 to -5 can be used to make a payment relative to the end of the month. To make a payment on the last day of the month, use -1; to make the payment on the second-to-last day, use -2, and so on.
* @return intervalExecutionDay
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The day of the interval on which to schedule the payment. If the payment interval is weekly, `interval_execution_day` should be an integer from 1 (Monday) to 7 (Sunday). If the payment interval is monthly, `interval_execution_day` should be an integer indicating which day of the month to make the payment on. Integers from 1 to 28 can be used to make a payment on that day of the month. Negative integers from -1 to -5 can be used to make a payment relative to the end of the month. To make a payment on the last day of the month, use -1; to make the payment on the second-to-last day, use -2, and so on.")
public Integer getIntervalExecutionDay() {
return intervalExecutionDay;
}
public void setIntervalExecutionDay(Integer intervalExecutionDay) {
this.intervalExecutionDay = intervalExecutionDay;
}
public ExternalPaymentScheduleBase startDate(LocalDate startDate) {
this.startDate = startDate;
return this;
}
/**
* A date in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). Standing order payments will begin on the first `interval_execution_day` on or after the `start_date`. If the first `interval_execution_day` on or after the start date is also the same day that `/payment_initiation/payment/create` was called, the bank *may* make the first payment on that day, but it is not guaranteed to do so.
* @return startDate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A date in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). Standing order payments will begin on the first `interval_execution_day` on or after the `start_date`. If the first `interval_execution_day` on or after the start date is also the same day that `/payment_initiation/payment/create` was called, the bank *may* make the first payment on that day, but it is not guaranteed to do so.")
public LocalDate getStartDate() {
return startDate;
}
public void setStartDate(LocalDate startDate) {
this.startDate = startDate;
}
public ExternalPaymentScheduleBase endDate(LocalDate endDate) {
this.endDate = endDate;
return this;
}
/**
* A date in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). Standing order payments will end on the last `interval_execution_day` on or before the `end_date`. If the only `interval_execution_day` between the start date and the end date (inclusive) is also the same day that `/payment_initiation/payment/create` was called, the bank *may* make a payment on that day, but it is not guaranteed to do so.
* @return endDate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A date in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). Standing order payments will end on the last `interval_execution_day` on or before the `end_date`. If the only `interval_execution_day` between the start date and the end date (inclusive) is also the same day that `/payment_initiation/payment/create` was called, the bank *may* make a payment on that day, but it is not guaranteed to do so.")
public LocalDate getEndDate() {
return endDate;
}
public void setEndDate(LocalDate endDate) {
this.endDate = endDate;
}
public ExternalPaymentScheduleBase adjustedStartDate(LocalDate adjustedStartDate) {
this.adjustedStartDate = adjustedStartDate;
return this;
}
/**
* The start date sent to the bank after adjusting for holidays or weekends. Will be provided in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). If the start date did not require adjustment, this field will be `null`.
* @return adjustedStartDate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The start date sent to the bank after adjusting for holidays or weekends. Will be provided in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). If the start date did not require adjustment, this field will be `null`.")
public LocalDate getAdjustedStartDate() {
return adjustedStartDate;
}
public void setAdjustedStartDate(LocalDate adjustedStartDate) {
this.adjustedStartDate = adjustedStartDate;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ExternalPaymentScheduleBase externalPaymentScheduleBase = (ExternalPaymentScheduleBase) o;
return Objects.equals(this.interval, externalPaymentScheduleBase.interval) &&
Objects.equals(this.intervalExecutionDay, externalPaymentScheduleBase.intervalExecutionDay) &&
Objects.equals(this.startDate, externalPaymentScheduleBase.startDate) &&
Objects.equals(this.endDate, externalPaymentScheduleBase.endDate) &&
Objects.equals(this.adjustedStartDate, externalPaymentScheduleBase.adjustedStartDate);
}
@Override
public int hashCode() {
return Objects.hash(interval, intervalExecutionDay, startDate, endDate, adjustedStartDate);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ExternalPaymentScheduleBase {\n");
sb.append(" interval: ").append(toIndentedString(interval)).append("\n");
sb.append(" intervalExecutionDay: ").append(toIndentedString(intervalExecutionDay)).append("\n");
sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n");
sb.append(" endDate: ").append(toIndentedString(endDate)).append("\n");
sb.append(" adjustedStartDate: ").append(toIndentedString(adjustedStartDate)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BeaconReportCreateResponse.java | src/main/java/com/plaid/client/model/BeaconReportCreateResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.BeaconAuditTrail;
import com.plaid.client.model.BeaconReportType;
import com.plaid.client.model.FraudAmount;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.time.LocalDate;
/**
* A Beacon Report describes the type of fraud committed by a user as well as the date the fraud was committed and the total amount of money lost due to the fraud incident. This information is used to block similar fraud attempts on your platform as well as alert other companies who screen a user with matching identity information. Other companies will not receive any new identity information, just what matched, plus information such as industry, type of fraud, and date of fraud. You can manage your fraud reports by adding, deleting, or editing reports as you get additional information on fraudulent users.
*/
@ApiModel(description = "A Beacon Report describes the type of fraud committed by a user as well as the date the fraud was committed and the total amount of money lost due to the fraud incident. This information is used to block similar fraud attempts on your platform as well as alert other companies who screen a user with matching identity information. Other companies will not receive any new identity information, just what matched, plus information such as industry, type of fraud, and date of fraud. You can manage your fraud reports by adding, deleting, or editing reports as you get additional information on fraudulent users.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class BeaconReportCreateResponse {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
private String id;
public static final String SERIALIZED_NAME_BEACON_USER_ID = "beacon_user_id";
@SerializedName(SERIALIZED_NAME_BEACON_USER_ID)
private String beaconUserId;
public static final String SERIALIZED_NAME_CREATED_AT = "created_at";
@SerializedName(SERIALIZED_NAME_CREATED_AT)
private java.sql.Timestamp createdAt;
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
private BeaconReportType type;
public static final String SERIALIZED_NAME_FRAUD_DATE = "fraud_date";
@SerializedName(SERIALIZED_NAME_FRAUD_DATE)
private LocalDate fraudDate;
public static final String SERIALIZED_NAME_EVENT_DATE = "event_date";
@SerializedName(SERIALIZED_NAME_EVENT_DATE)
private LocalDate eventDate;
public static final String SERIALIZED_NAME_FRAUD_AMOUNT = "fraud_amount";
@SerializedName(SERIALIZED_NAME_FRAUD_AMOUNT)
private FraudAmount fraudAmount;
public static final String SERIALIZED_NAME_AUDIT_TRAIL = "audit_trail";
@SerializedName(SERIALIZED_NAME_AUDIT_TRAIL)
private BeaconAuditTrail auditTrail;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public BeaconReportCreateResponse id(String id) {
this.id = id;
return this;
}
/**
* ID of the associated Beacon Report.
* @return id
**/
@ApiModelProperty(example = "becrpt_11111111111111", required = true, value = "ID of the associated Beacon Report.")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public BeaconReportCreateResponse beaconUserId(String beaconUserId) {
this.beaconUserId = beaconUserId;
return this;
}
/**
* ID of the associated Beacon User.
* @return beaconUserId
**/
@ApiModelProperty(example = "becusr_42cF1MNo42r9Xj", required = true, value = "ID of the associated Beacon User.")
public String getBeaconUserId() {
return beaconUserId;
}
public void setBeaconUserId(String beaconUserId) {
this.beaconUserId = beaconUserId;
}
public BeaconReportCreateResponse createdAt(java.sql.Timestamp createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* Get createdAt
* @return createdAt
**/
@ApiModelProperty(required = true, value = "")
public java.sql.Timestamp getCreatedAt() {
return createdAt;
}
public void setCreatedAt(java.sql.Timestamp createdAt) {
this.createdAt = createdAt;
}
public BeaconReportCreateResponse type(BeaconReportType type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
**/
@ApiModelProperty(required = true, value = "")
public BeaconReportType getType() {
return type;
}
public void setType(BeaconReportType type) {
this.type = type;
}
public BeaconReportCreateResponse fraudDate(LocalDate fraudDate) {
this.fraudDate = fraudDate;
return this;
}
/**
* A date in the format YYYY-MM-DD (RFC 3339 Section 5.6).
* @return fraudDate
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "Tue May 29 00:00:00 UTC 1990", required = true, value = "A date in the format YYYY-MM-DD (RFC 3339 Section 5.6).")
public LocalDate getFraudDate() {
return fraudDate;
}
public void setFraudDate(LocalDate fraudDate) {
this.fraudDate = fraudDate;
}
public BeaconReportCreateResponse eventDate(LocalDate eventDate) {
this.eventDate = eventDate;
return this;
}
/**
* A date in the format YYYY-MM-DD (RFC 3339 Section 5.6).
* @return eventDate
**/
@ApiModelProperty(example = "Tue May 29 00:00:00 UTC 1990", required = true, value = "A date in the format YYYY-MM-DD (RFC 3339 Section 5.6).")
public LocalDate getEventDate() {
return eventDate;
}
public void setEventDate(LocalDate eventDate) {
this.eventDate = eventDate;
}
public BeaconReportCreateResponse fraudAmount(FraudAmount fraudAmount) {
this.fraudAmount = fraudAmount;
return this;
}
/**
* Get fraudAmount
* @return fraudAmount
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public FraudAmount getFraudAmount() {
return fraudAmount;
}
public void setFraudAmount(FraudAmount fraudAmount) {
this.fraudAmount = fraudAmount;
}
public BeaconReportCreateResponse auditTrail(BeaconAuditTrail auditTrail) {
this.auditTrail = auditTrail;
return this;
}
/**
* Get auditTrail
* @return auditTrail
**/
@ApiModelProperty(required = true, value = "")
public BeaconAuditTrail getAuditTrail() {
return auditTrail;
}
public void setAuditTrail(BeaconAuditTrail auditTrail) {
this.auditTrail = auditTrail;
}
public BeaconReportCreateResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BeaconReportCreateResponse beaconReportCreateResponse = (BeaconReportCreateResponse) o;
return Objects.equals(this.id, beaconReportCreateResponse.id) &&
Objects.equals(this.beaconUserId, beaconReportCreateResponse.beaconUserId) &&
Objects.equals(this.createdAt, beaconReportCreateResponse.createdAt) &&
Objects.equals(this.type, beaconReportCreateResponse.type) &&
Objects.equals(this.fraudDate, beaconReportCreateResponse.fraudDate) &&
Objects.equals(this.eventDate, beaconReportCreateResponse.eventDate) &&
Objects.equals(this.fraudAmount, beaconReportCreateResponse.fraudAmount) &&
Objects.equals(this.auditTrail, beaconReportCreateResponse.auditTrail) &&
Objects.equals(this.requestId, beaconReportCreateResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(id, beaconUserId, createdAt, type, fraudDate, eventDate, fraudAmount, auditTrail, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BeaconReportCreateResponse {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" beaconUserId: ").append(toIndentedString(beaconUserId)).append("\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" fraudDate: ").append(toIndentedString(fraudDate)).append("\n");
sb.append(" eventDate: ").append(toIndentedString(eventDate)).append("\n");
sb.append(" fraudAmount: ").append(toIndentedString(fraudAmount)).append("\n");
sb.append(" auditTrail: ").append(toIndentedString(auditTrail)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditRelayPDFGetRequest.java | src/main/java/com/plaid/client/model/CreditRelayPDFGetRequest.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.ReportType;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* CreditRelayPDFGetRequest defines the request schema for `/credit/relay/pdf/get`
*/
@ApiModel(description = "CreditRelayPDFGetRequest defines the request schema for `/credit/relay/pdf/get`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CreditRelayPDFGetRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
private String clientId;
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public static final String SERIALIZED_NAME_RELAY_TOKEN = "relay_token";
@SerializedName(SERIALIZED_NAME_RELAY_TOKEN)
private String relayToken;
public static final String SERIALIZED_NAME_REPORT_TYPE = "report_type";
@SerializedName(SERIALIZED_NAME_REPORT_TYPE)
private ReportType reportType;
public CreditRelayPDFGetRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public CreditRelayPDFGetRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public CreditRelayPDFGetRequest relayToken(String relayToken) {
this.relayToken = relayToken;
return this;
}
/**
* The `relay_token` granting access to the report you would like to get.
* @return relayToken
**/
@ApiModelProperty(required = true, value = "The `relay_token` granting access to the report you would like to get.")
public String getRelayToken() {
return relayToken;
}
public void setRelayToken(String relayToken) {
this.relayToken = relayToken;
}
public CreditRelayPDFGetRequest reportType(ReportType reportType) {
this.reportType = reportType;
return this;
}
/**
* Get reportType
* @return reportType
**/
@ApiModelProperty(required = true, value = "")
public ReportType getReportType() {
return reportType;
}
public void setReportType(ReportType reportType) {
this.reportType = reportType;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreditRelayPDFGetRequest creditRelayPDFGetRequest = (CreditRelayPDFGetRequest) o;
return Objects.equals(this.clientId, creditRelayPDFGetRequest.clientId) &&
Objects.equals(this.secret, creditRelayPDFGetRequest.secret) &&
Objects.equals(this.relayToken, creditRelayPDFGetRequest.relayToken) &&
Objects.equals(this.reportType, creditRelayPDFGetRequest.reportType);
}
@Override
public int hashCode() {
return Objects.hash(clientId, secret, relayToken, reportType);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreditRelayPDFGetRequest {\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" relayToken: ").append(toIndentedString(relayToken)).append("\n");
sb.append(" reportType: ").append(toIndentedString(reportType)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryAverageDailyInflowAmount.java | src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryAverageDailyInflowAmount.java | /*
* 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.680.0
*
*
* 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;
import java.math.BigDecimal;
/**
* The average daily sum of inflow transactions, calculated over the month. Always represented as a positive monetary amount.
*/
@ApiModel(description = "The average daily sum of inflow transactions, calculated over the month. Always represented as a positive monetary amount.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CashflowReportMonthlySummaryAverageDailyInflowAmount {
public static final String SERIALIZED_NAME_AMOUNT = "amount";
@SerializedName(SERIALIZED_NAME_AMOUNT)
private Double amount;
public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code";
@SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE)
private String isoCurrencyCode;
public static final String SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE = "unofficial_currency_code";
@SerializedName(SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE)
private String unofficialCurrencyCode;
public CashflowReportMonthlySummaryAverageDailyInflowAmount amount(Double amount) {
this.amount = amount;
return this;
}
/**
* Value of amount with up to 2 decimal places.
* @return amount
**/
@ApiModelProperty(required = true, value = "Value of amount with up to 2 decimal places.")
public Double getAmount() {
return amount;
}
public void setAmount(Double amount) {
this.amount = amount;
}
public CashflowReportMonthlySummaryAverageDailyInflowAmount isoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
return this;
}
/**
* The ISO-4217 currency code of the amount. Always `null` if `unofficial_currency_code` is non-`null`
* @return isoCurrencyCode
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The ISO-4217 currency code of the amount. Always `null` if `unofficial_currency_code` is non-`null`")
public String getIsoCurrencyCode() {
return isoCurrencyCode;
}
public void setIsoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
}
public CashflowReportMonthlySummaryAverageDailyInflowAmount unofficialCurrencyCode(String unofficialCurrencyCode) {
this.unofficialCurrencyCode = unofficialCurrencyCode;
return this;
}
/**
* The unofficial currency code of the amount. Always `null` if `iso_currency_code` is non-`null`. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.
* @return unofficialCurrencyCode
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The unofficial currency code of the amount. Always `null` if `iso_currency_code` is non-`null`. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.")
public String getUnofficialCurrencyCode() {
return unofficialCurrencyCode;
}
public void setUnofficialCurrencyCode(String unofficialCurrencyCode) {
this.unofficialCurrencyCode = unofficialCurrencyCode;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CashflowReportMonthlySummaryAverageDailyInflowAmount cashflowReportMonthlySummaryAverageDailyInflowAmount = (CashflowReportMonthlySummaryAverageDailyInflowAmount) o;
return Objects.equals(this.amount, cashflowReportMonthlySummaryAverageDailyInflowAmount.amount) &&
Objects.equals(this.isoCurrencyCode, cashflowReportMonthlySummaryAverageDailyInflowAmount.isoCurrencyCode) &&
Objects.equals(this.unofficialCurrencyCode, cashflowReportMonthlySummaryAverageDailyInflowAmount.unofficialCurrencyCode);
}
@Override
public int hashCode() {
return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CashflowReportMonthlySummaryAverageDailyInflowAmount {\n");
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n");
sb.append(" unofficialCurrencyCode: ").append(toIndentedString(unofficialCurrencyCode)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/EmploymentVerificationGetResponse.java | src/main/java/com/plaid/client/model/EmploymentVerificationGetResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.EmploymentVerification;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* EmploymentVerificationGetResponse defines the response schema for `/employment/verification/get`.
*/
@ApiModel(description = "EmploymentVerificationGetResponse defines the response schema for `/employment/verification/get`.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class EmploymentVerificationGetResponse {
public static final String SERIALIZED_NAME_EMPLOYMENTS = "employments";
@SerializedName(SERIALIZED_NAME_EMPLOYMENTS)
private List<EmploymentVerification> employments = new ArrayList<>();
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public EmploymentVerificationGetResponse employments(List<EmploymentVerification> employments) {
this.employments = employments;
return this;
}
public EmploymentVerificationGetResponse addEmploymentsItem(EmploymentVerification employmentsItem) {
this.employments.add(employmentsItem);
return this;
}
/**
* A list of employment verification summaries.
* @return employments
**/
@ApiModelProperty(required = true, value = "A list of employment verification summaries.")
public List<EmploymentVerification> getEmployments() {
return employments;
}
public void setEmployments(List<EmploymentVerification> employments) {
this.employments = employments;
}
public EmploymentVerificationGetResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
EmploymentVerificationGetResponse employmentVerificationGetResponse = (EmploymentVerificationGetResponse) o;
return Objects.equals(this.employments, employmentVerificationGetResponse.employments) &&
Objects.equals(this.requestId, employmentVerificationGetResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(employments, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class EmploymentVerificationGetResponse {\n");
sb.append(" employments: ").append(toIndentedString(employments)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SelfieAnalysisFacialAnalysisOutcome.java | src/main/java/com/plaid/client/model/SelfieAnalysisFacialAnalysisOutcome.java | /*
* 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.680.0
*
*
* 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 io.swagger.annotations.ApiModel;
import com.google.gson.annotations.SerializedName;
import java.io.IOException;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
/**
* Outcome of the facial analysis for a specific facial feature.
*/
@JsonAdapter(SelfieAnalysisFacialAnalysisOutcome.Adapter.class)
public enum SelfieAnalysisFacialAnalysisOutcome {
SUCCESS("success"),
FAILED("failed"),
// This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file.
// Try upgrading your client-library version.
ENUM_UNKNOWN("ENUM_UNKNOWN");
private String value;
SelfieAnalysisFacialAnalysisOutcome(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static SelfieAnalysisFacialAnalysisOutcome fromValue(String value) {
for (SelfieAnalysisFacialAnalysisOutcome b : SelfieAnalysisFacialAnalysisOutcome.values()) {
if (b.value.equals(value)) {
return b;
}
}
return SelfieAnalysisFacialAnalysisOutcome.ENUM_UNKNOWN;
}
public static class Adapter extends TypeAdapter<SelfieAnalysisFacialAnalysisOutcome> {
@Override
public void write(final JsonWriter jsonWriter, final SelfieAnalysisFacialAnalysisOutcome enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public SelfieAnalysisFacialAnalysisOutcome read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return SelfieAnalysisFacialAnalysisOutcome.fromValue(value);
}
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/UserItemsAssociateRequest.java | src/main/java/com/plaid/client/model/UserItemsAssociateRequest.java | /*
* 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.680.0
*
*
* 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;
import java.util.ArrayList;
import java.util.List;
/**
* UserItemsAssociateRequest defines the request schema for `/user/items/associate`
*/
@ApiModel(description = "UserItemsAssociateRequest defines the request schema for `/user/items/associate`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class UserItemsAssociateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
private String clientId;
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public static final String SERIALIZED_NAME_USER_ID = "user_id";
@SerializedName(SERIALIZED_NAME_USER_ID)
private String userId;
public static final String SERIALIZED_NAME_ITEM_IDS = "item_ids";
@SerializedName(SERIALIZED_NAME_ITEM_IDS)
private List<String> itemIds = new ArrayList<>();
public UserItemsAssociateRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public UserItemsAssociateRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public UserItemsAssociateRequest userId(String userId) {
this.userId = userId;
return this;
}
/**
* A unique user identifier, created by `/user/create`. Integrations that began using `/user/create` after December 10, 2025 use this field to identify a user instead of the `user_token`. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis).
* @return userId
**/
@ApiModelProperty(required = true, value = "A unique user identifier, created by `/user/create`. Integrations that began using `/user/create` after December 10, 2025 use this field to identify a user instead of the `user_token`. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis).")
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public UserItemsAssociateRequest itemIds(List<String> itemIds) {
this.itemIds = itemIds;
return this;
}
public UserItemsAssociateRequest addItemIdsItem(String itemIdsItem) {
this.itemIds.add(itemIdsItem);
return this;
}
/**
* An array of `item_id`s to be associated with the `user_id`.
* @return itemIds
**/
@ApiModelProperty(required = true, value = "An array of `item_id`s to be associated with the `user_id`.")
public List<String> getItemIds() {
return itemIds;
}
public void setItemIds(List<String> itemIds) {
this.itemIds = itemIds;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UserItemsAssociateRequest userItemsAssociateRequest = (UserItemsAssociateRequest) o;
return Objects.equals(this.clientId, userItemsAssociateRequest.clientId) &&
Objects.equals(this.secret, userItemsAssociateRequest.secret) &&
Objects.equals(this.userId, userItemsAssociateRequest.userId) &&
Objects.equals(this.itemIds, userItemsAssociateRequest.itemIds);
}
@Override
public int hashCode() {
return Objects.hash(clientId, secret, userId, itemIds);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UserItemsAssociateRequest {\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" userId: ").append(toIndentedString(userId)).append("\n");
sb.append(" itemIds: ").append(toIndentedString(itemIds)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/Numbers.java | src/main/java/com/plaid/client/model/Numbers.java | /*
* 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.680.0
*
*
* 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;
/**
* Account and bank identifier number data used to configure the test account. All values are optional.
*/
@ApiModel(description = "Account and bank identifier number data used to configure the test account. All values are optional.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class Numbers {
public static final String SERIALIZED_NAME_ACCOUNT = "account";
@SerializedName(SERIALIZED_NAME_ACCOUNT)
private String account;
public static final String SERIALIZED_NAME_ACH_ROUTING = "ach_routing";
@SerializedName(SERIALIZED_NAME_ACH_ROUTING)
private String achRouting;
public static final String SERIALIZED_NAME_ACH_WIRE_ROUTING = "ach_wire_routing";
@SerializedName(SERIALIZED_NAME_ACH_WIRE_ROUTING)
private String achWireRouting;
public static final String SERIALIZED_NAME_EFT_INSTITUTION = "eft_institution";
@SerializedName(SERIALIZED_NAME_EFT_INSTITUTION)
private String eftInstitution;
public static final String SERIALIZED_NAME_EFT_BRANCH = "eft_branch";
@SerializedName(SERIALIZED_NAME_EFT_BRANCH)
private String eftBranch;
public static final String SERIALIZED_NAME_INTERNATIONAL_BIC = "international_bic";
@SerializedName(SERIALIZED_NAME_INTERNATIONAL_BIC)
private String internationalBic;
public static final String SERIALIZED_NAME_INTERNATIONAL_IBAN = "international_iban";
@SerializedName(SERIALIZED_NAME_INTERNATIONAL_IBAN)
private String internationalIban;
public static final String SERIALIZED_NAME_BACS_SORT_CODE = "bacs_sort_code";
@SerializedName(SERIALIZED_NAME_BACS_SORT_CODE)
private String bacsSortCode;
public Numbers account(String account) {
this.account = account;
return this;
}
/**
* Will be used for the account number.
* @return account
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Will be used for the account number.")
public String getAccount() {
return account;
}
public void setAccount(String account) {
this.account = account;
}
public Numbers achRouting(String achRouting) {
this.achRouting = achRouting;
return this;
}
/**
* Must be a valid ACH routing number. To test `/transfer/capabilities/get`, set this to 322271627 to force a `true` result.
* @return achRouting
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Must be a valid ACH routing number. To test `/transfer/capabilities/get`, set this to 322271627 to force a `true` result.")
public String getAchRouting() {
return achRouting;
}
public void setAchRouting(String achRouting) {
this.achRouting = achRouting;
}
public Numbers achWireRouting(String achWireRouting) {
this.achWireRouting = achWireRouting;
return this;
}
/**
* Must be a valid wire transfer routing number.
* @return achWireRouting
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Must be a valid wire transfer routing number.")
public String getAchWireRouting() {
return achWireRouting;
}
public void setAchWireRouting(String achWireRouting) {
this.achWireRouting = achWireRouting;
}
public Numbers eftInstitution(String eftInstitution) {
this.eftInstitution = eftInstitution;
return this;
}
/**
* EFT institution number. Must be specified alongside `eft_branch`.
* @return eftInstitution
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "EFT institution number. Must be specified alongside `eft_branch`.")
public String getEftInstitution() {
return eftInstitution;
}
public void setEftInstitution(String eftInstitution) {
this.eftInstitution = eftInstitution;
}
public Numbers eftBranch(String eftBranch) {
this.eftBranch = eftBranch;
return this;
}
/**
* EFT branch number. Must be specified alongside `eft_institution`.
* @return eftBranch
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "EFT branch number. Must be specified alongside `eft_institution`.")
public String getEftBranch() {
return eftBranch;
}
public void setEftBranch(String eftBranch) {
this.eftBranch = eftBranch;
}
public Numbers internationalBic(String internationalBic) {
this.internationalBic = internationalBic;
return this;
}
/**
* Bank identifier code (BIC). Must be specified alongside `international_iban`.
* @return internationalBic
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Bank identifier code (BIC). Must be specified alongside `international_iban`.")
public String getInternationalBic() {
return internationalBic;
}
public void setInternationalBic(String internationalBic) {
this.internationalBic = internationalBic;
}
public Numbers internationalIban(String internationalIban) {
this.internationalIban = internationalIban;
return this;
}
/**
* International bank account number (IBAN). If no account number is specified via `account`, will also be used as the account number by default. Must be specified alongside `international_bic`.
* @return internationalIban
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "International bank account number (IBAN). If no account number is specified via `account`, will also be used as the account number by default. Must be specified alongside `international_bic`.")
public String getInternationalIban() {
return internationalIban;
}
public void setInternationalIban(String internationalIban) {
this.internationalIban = internationalIban;
}
public Numbers bacsSortCode(String bacsSortCode) {
this.bacsSortCode = bacsSortCode;
return this;
}
/**
* BACS sort code
* @return bacsSortCode
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "BACS sort code")
public String getBacsSortCode() {
return bacsSortCode;
}
public void setBacsSortCode(String bacsSortCode) {
this.bacsSortCode = bacsSortCode;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Numbers numbers = (Numbers) o;
return Objects.equals(this.account, numbers.account) &&
Objects.equals(this.achRouting, numbers.achRouting) &&
Objects.equals(this.achWireRouting, numbers.achWireRouting) &&
Objects.equals(this.eftInstitution, numbers.eftInstitution) &&
Objects.equals(this.eftBranch, numbers.eftBranch) &&
Objects.equals(this.internationalBic, numbers.internationalBic) &&
Objects.equals(this.internationalIban, numbers.internationalIban) &&
Objects.equals(this.bacsSortCode, numbers.bacsSortCode);
}
@Override
public int hashCode() {
return Objects.hash(account, achRouting, achWireRouting, eftInstitution, eftBranch, internationalBic, internationalIban, bacsSortCode);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Numbers {\n");
sb.append(" account: ").append(toIndentedString(account)).append("\n");
sb.append(" achRouting: ").append(toIndentedString(achRouting)).append("\n");
sb.append(" achWireRouting: ").append(toIndentedString(achWireRouting)).append("\n");
sb.append(" eftInstitution: ").append(toIndentedString(eftInstitution)).append("\n");
sb.append(" eftBranch: ").append(toIndentedString(eftBranch)).append("\n");
sb.append(" internationalBic: ").append(toIndentedString(internationalBic)).append("\n");
sb.append(" internationalIban: ").append(toIndentedString(internationalIban)).append("\n");
sb.append(" bacsSortCode: ").append(toIndentedString(bacsSortCode)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/UserDataOverview.java | src/main/java/com/plaid/client/model/UserDataOverview.java | /*
* 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.680.0
*
*
* 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;
import java.time.LocalDate;
/**
* metadata for the set of insights provided in `TransactionsUserInsightsGetResponse`
*/
@ApiModel(description = "metadata for the set of insights provided in `TransactionsUserInsightsGetResponse`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class UserDataOverview {
public static final String SERIALIZED_NAME_TRANSACTION_COUNT = "transaction_count";
@SerializedName(SERIALIZED_NAME_TRANSACTION_COUNT)
private Integer transactionCount;
public static final String SERIALIZED_NAME_OLDEST_TRANSACTION_DATE = "oldest_transaction_date";
@SerializedName(SERIALIZED_NAME_OLDEST_TRANSACTION_DATE)
private LocalDate oldestTransactionDate;
public static final String SERIALIZED_NAME_NEWEST_TRANSACTION_DATE = "newest_transaction_date";
@SerializedName(SERIALIZED_NAME_NEWEST_TRANSACTION_DATE)
private LocalDate newestTransactionDate;
public static final String SERIALIZED_NAME_DAYS_AVAILABLE = "days_available";
@SerializedName(SERIALIZED_NAME_DAYS_AVAILABLE)
private Integer daysAvailable;
public static final String SERIALIZED_NAME_TOTAL_OUTFLOWS = "total_outflows";
@SerializedName(SERIALIZED_NAME_TOTAL_OUTFLOWS)
private Double totalOutflows;
public static final String SERIALIZED_NAME_TOTAL_INFLOWS = "total_inflows";
@SerializedName(SERIALIZED_NAME_TOTAL_INFLOWS)
private Double totalInflows;
public UserDataOverview transactionCount(Integer transactionCount) {
this.transactionCount = transactionCount;
return this;
}
/**
* The total number of transactions.
* @return transactionCount
**/
@ApiModelProperty(required = true, value = "The total number of transactions.")
public Integer getTransactionCount() {
return transactionCount;
}
public void setTransactionCount(Integer transactionCount) {
this.transactionCount = transactionCount;
}
public UserDataOverview oldestTransactionDate(LocalDate oldestTransactionDate) {
this.oldestTransactionDate = oldestTransactionDate;
return this;
}
/**
* The date of the oldest transaction processed to generate insights.
* @return oldestTransactionDate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The date of the oldest transaction processed to generate insights.")
public LocalDate getOldestTransactionDate() {
return oldestTransactionDate;
}
public void setOldestTransactionDate(LocalDate oldestTransactionDate) {
this.oldestTransactionDate = oldestTransactionDate;
}
public UserDataOverview newestTransactionDate(LocalDate newestTransactionDate) {
this.newestTransactionDate = newestTransactionDate;
return this;
}
/**
* The date of the newest transaction processed to generate insights.
* @return newestTransactionDate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The date of the newest transaction processed to generate insights.")
public LocalDate getNewestTransactionDate() {
return newestTransactionDate;
}
public void setNewestTransactionDate(LocalDate newestTransactionDate) {
this.newestTransactionDate = newestTransactionDate;
}
public UserDataOverview daysAvailable(Integer daysAvailable) {
this.daysAvailable = daysAvailable;
return this;
}
/**
* The range of days of transactions available.
* @return daysAvailable
**/
@ApiModelProperty(required = true, value = "The range of days of transactions available.")
public Integer getDaysAvailable() {
return daysAvailable;
}
public void setDaysAvailable(Integer daysAvailable) {
this.daysAvailable = daysAvailable;
}
public UserDataOverview totalOutflows(Double totalOutflows) {
this.totalOutflows = totalOutflows;
return this;
}
/**
* Sum of outflow amounts.
* @return totalOutflows
**/
@ApiModelProperty(required = true, value = "Sum of outflow amounts.")
public Double getTotalOutflows() {
return totalOutflows;
}
public void setTotalOutflows(Double totalOutflows) {
this.totalOutflows = totalOutflows;
}
public UserDataOverview totalInflows(Double totalInflows) {
this.totalInflows = totalInflows;
return this;
}
/**
* Sum of inflow amounts.
* @return totalInflows
**/
@ApiModelProperty(required = true, value = "Sum of inflow amounts.")
public Double getTotalInflows() {
return totalInflows;
}
public void setTotalInflows(Double totalInflows) {
this.totalInflows = totalInflows;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UserDataOverview userDataOverview = (UserDataOverview) o;
return Objects.equals(this.transactionCount, userDataOverview.transactionCount) &&
Objects.equals(this.oldestTransactionDate, userDataOverview.oldestTransactionDate) &&
Objects.equals(this.newestTransactionDate, userDataOverview.newestTransactionDate) &&
Objects.equals(this.daysAvailable, userDataOverview.daysAvailable) &&
Objects.equals(this.totalOutflows, userDataOverview.totalOutflows) &&
Objects.equals(this.totalInflows, userDataOverview.totalInflows);
}
@Override
public int hashCode() {
return Objects.hash(transactionCount, oldestTransactionDate, newestTransactionDate, daysAvailable, totalOutflows, totalInflows);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UserDataOverview {\n");
sb.append(" transactionCount: ").append(toIndentedString(transactionCount)).append("\n");
sb.append(" oldestTransactionDate: ").append(toIndentedString(oldestTransactionDate)).append("\n");
sb.append(" newestTransactionDate: ").append(toIndentedString(newestTransactionDate)).append("\n");
sb.append(" daysAvailable: ").append(toIndentedString(daysAvailable)).append("\n");
sb.append(" totalOutflows: ").append(toIndentedString(totalOutflows)).append("\n");
sb.append(" totalInflows: ").append(toIndentedString(totalInflows)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditPayrollIncomeRefreshRequestOptions.java | src/main/java/com/plaid/client/model/CreditPayrollIncomeRefreshRequestOptions.java | /*
* 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.680.0
*
*
* 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;
import java.util.ArrayList;
import java.util.List;
/**
* An optional object for `/credit/payroll_income/refresh` request options.
*/
@ApiModel(description = "An optional object for `/credit/payroll_income/refresh` request options.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CreditPayrollIncomeRefreshRequestOptions {
public static final String SERIALIZED_NAME_ITEM_IDS = "item_ids";
@SerializedName(SERIALIZED_NAME_ITEM_IDS)
private List<String> itemIds = null;
public static final String SERIALIZED_NAME_WEBHOOK = "webhook";
@SerializedName(SERIALIZED_NAME_WEBHOOK)
private String webhook;
public CreditPayrollIncomeRefreshRequestOptions itemIds(List<String> itemIds) {
this.itemIds = itemIds;
return this;
}
public CreditPayrollIncomeRefreshRequestOptions addItemIdsItem(String itemIdsItem) {
if (this.itemIds == null) {
this.itemIds = new ArrayList<>();
}
this.itemIds.add(itemIdsItem);
return this;
}
/**
* An array of `item_id`s to be refreshed. Each `item_id` should uniquely identify a payroll income item. If this field is not provided, all `item_id`s associated with the `user_token` will be refreshed.
* @return itemIds
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "An array of `item_id`s to be refreshed. Each `item_id` should uniquely identify a payroll income item. If this field is not provided, all `item_id`s associated with the `user_token` will be refreshed.")
public List<String> getItemIds() {
return itemIds;
}
public void setItemIds(List<String> itemIds) {
this.itemIds = itemIds;
}
public CreditPayrollIncomeRefreshRequestOptions webhook(String webhook) {
this.webhook = webhook;
return this;
}
/**
* The URL where Plaid will send the payroll income refresh webhook.
* @return webhook
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The URL where Plaid will send the payroll income refresh webhook.")
public String getWebhook() {
return webhook;
}
public void setWebhook(String webhook) {
this.webhook = webhook;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreditPayrollIncomeRefreshRequestOptions creditPayrollIncomeRefreshRequestOptions = (CreditPayrollIncomeRefreshRequestOptions) o;
return Objects.equals(this.itemIds, creditPayrollIncomeRefreshRequestOptions.itemIds) &&
Objects.equals(this.webhook, creditPayrollIncomeRefreshRequestOptions.webhook);
}
@Override
public int hashCode() {
return Objects.hash(itemIds, webhook);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreditPayrollIncomeRefreshRequestOptions {\n");
sb.append(" itemIds: ").append(toIndentedString(itemIds)).append("\n");
sb.append(" webhook: ").append(toIndentedString(webhook)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PartnerEndCustomerSecrets.java | src/main/java/com/plaid/client/model/PartnerEndCustomerSecrets.java | /*
* 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.680.0
*
*
* 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;
/**
* The secrets for the newly created end customer.
*/
@ApiModel(description = "The secrets for the newly created end customer.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class PartnerEndCustomerSecrets {
public static final String SERIALIZED_NAME_SANDBOX = "sandbox";
@SerializedName(SERIALIZED_NAME_SANDBOX)
private String sandbox;
public static final String SERIALIZED_NAME_DEVELOPMENT = "development";
@SerializedName(SERIALIZED_NAME_DEVELOPMENT)
private String development;
public static final String SERIALIZED_NAME_PRODUCTION = "production";
@SerializedName(SERIALIZED_NAME_PRODUCTION)
private String production;
public PartnerEndCustomerSecrets sandbox(String sandbox) {
this.sandbox = sandbox;
return this;
}
/**
* The end customer's secret key for the Sandbox environment.
* @return sandbox
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The end customer's secret key for the Sandbox environment.")
public String getSandbox() {
return sandbox;
}
public void setSandbox(String sandbox) {
this.sandbox = sandbox;
}
public PartnerEndCustomerSecrets development(String development) {
this.development = development;
return this;
}
/**
* The end customer's secret key for the Development environment. The Development environment has been removed.
* @return development
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The end customer's secret key for the Development environment. The Development environment has been removed.")
public String getDevelopment() {
return development;
}
public void setDevelopment(String development) {
this.development = development;
}
public PartnerEndCustomerSecrets production(String production) {
this.production = production;
return this;
}
/**
* The end customer's secret key for the Production environment. The end customer will be provided with a limited number of credits to test in the Production environment before full enablement.
* @return production
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The end customer's secret key for the Production environment. The end customer will be provided with a limited number of credits to test in the Production environment before full enablement.")
public String getProduction() {
return production;
}
public void setProduction(String production) {
this.production = production;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PartnerEndCustomerSecrets partnerEndCustomerSecrets = (PartnerEndCustomerSecrets) o;
return Objects.equals(this.sandbox, partnerEndCustomerSecrets.sandbox) &&
Objects.equals(this.development, partnerEndCustomerSecrets.development) &&
Objects.equals(this.production, partnerEndCustomerSecrets.production);
}
@Override
public int hashCode() {
return Objects.hash(sandbox, development, production);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PartnerEndCustomerSecrets {\n");
sb.append(" sandbox: ").append(toIndentedString(sandbox)).append("\n");
sb.append(" development: ").append(toIndentedString(development)).append("\n");
sb.append(" production: ").append(toIndentedString(production)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferCancelResponse.java | src/main/java/com/plaid/client/model/TransferCancelResponse.java | /*
* 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.680.0
*
*
* 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;
/**
* Defines the response schema for `/transfer/cancel`
*/
@ApiModel(description = "Defines the response schema for `/transfer/cancel`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TransferCancelResponse {
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public TransferCancelResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransferCancelResponse transferCancelResponse = (TransferCancelResponse) o;
return Objects.equals(this.requestId, transferCancelResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransferCancelResponse {\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PartnerCustomerGetRequest.java | src/main/java/com/plaid/client/model/PartnerCustomerGetRequest.java | /*
* 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.680.0
*
*
* 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;
/**
* Request schema for `/partner/customer/get`.
*/
@ApiModel(description = "Request schema for `/partner/customer/get`.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class PartnerCustomerGetRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
private String clientId;
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public static final String SERIALIZED_NAME_END_CUSTOMER_CLIENT_ID = "end_customer_client_id";
@SerializedName(SERIALIZED_NAME_END_CUSTOMER_CLIENT_ID)
private String endCustomerClientId;
public PartnerCustomerGetRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public PartnerCustomerGetRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public PartnerCustomerGetRequest endCustomerClientId(String endCustomerClientId) {
this.endCustomerClientId = endCustomerClientId;
return this;
}
/**
* Get endCustomerClientId
* @return endCustomerClientId
**/
@ApiModelProperty(required = true, value = "")
public String getEndCustomerClientId() {
return endCustomerClientId;
}
public void setEndCustomerClientId(String endCustomerClientId) {
this.endCustomerClientId = endCustomerClientId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PartnerCustomerGetRequest partnerCustomerGetRequest = (PartnerCustomerGetRequest) o;
return Objects.equals(this.clientId, partnerCustomerGetRequest.clientId) &&
Objects.equals(this.secret, partnerCustomerGetRequest.secret) &&
Objects.equals(this.endCustomerClientId, partnerCustomerGetRequest.endCustomerClientId);
}
@Override
public int hashCode() {
return Objects.hash(clientId, secret, endCustomerClientId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PartnerCustomerGetRequest {\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" endCustomerClientId: ").append(toIndentedString(endCustomerClientId)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransactionsSyncResponse.java | src/main/java/com/plaid/client/model/TransactionsSyncResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.AccountBase;
import com.plaid.client.model.RemovedTransaction;
import com.plaid.client.model.Transaction;
import com.plaid.client.model.TransactionsUpdateStatus;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* TransactionsSyncResponse defines the response schema for `/transactions/sync`
*/
@ApiModel(description = "TransactionsSyncResponse defines the response schema for `/transactions/sync`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TransactionsSyncResponse {
public static final String SERIALIZED_NAME_TRANSACTIONS_UPDATE_STATUS = "transactions_update_status";
@SerializedName(SERIALIZED_NAME_TRANSACTIONS_UPDATE_STATUS)
private TransactionsUpdateStatus transactionsUpdateStatus;
public static final String SERIALIZED_NAME_ACCOUNTS = "accounts";
@SerializedName(SERIALIZED_NAME_ACCOUNTS)
private List<AccountBase> accounts = new ArrayList<>();
public static final String SERIALIZED_NAME_ADDED = "added";
@SerializedName(SERIALIZED_NAME_ADDED)
private List<Transaction> added = new ArrayList<>();
public static final String SERIALIZED_NAME_MODIFIED = "modified";
@SerializedName(SERIALIZED_NAME_MODIFIED)
private List<Transaction> modified = new ArrayList<>();
public static final String SERIALIZED_NAME_REMOVED = "removed";
@SerializedName(SERIALIZED_NAME_REMOVED)
private List<RemovedTransaction> removed = new ArrayList<>();
public static final String SERIALIZED_NAME_NEXT_CURSOR = "next_cursor";
@SerializedName(SERIALIZED_NAME_NEXT_CURSOR)
private String nextCursor;
public static final String SERIALIZED_NAME_HAS_MORE = "has_more";
@SerializedName(SERIALIZED_NAME_HAS_MORE)
private Boolean hasMore;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public TransactionsSyncResponse transactionsUpdateStatus(TransactionsUpdateStatus transactionsUpdateStatus) {
this.transactionsUpdateStatus = transactionsUpdateStatus;
return this;
}
/**
* Get transactionsUpdateStatus
* @return transactionsUpdateStatus
**/
@ApiModelProperty(required = true, value = "")
public TransactionsUpdateStatus getTransactionsUpdateStatus() {
return transactionsUpdateStatus;
}
public void setTransactionsUpdateStatus(TransactionsUpdateStatus transactionsUpdateStatus) {
this.transactionsUpdateStatus = transactionsUpdateStatus;
}
public TransactionsSyncResponse accounts(List<AccountBase> accounts) {
this.accounts = accounts;
return this;
}
public TransactionsSyncResponse addAccountsItem(AccountBase accountsItem) {
this.accounts.add(accountsItem);
return this;
}
/**
* An array of accounts at a financial institution associated with the transactions in this response. Only accounts that have associated transactions will be shown. For example, `investment`-type accounts will be omitted.
* @return accounts
**/
@ApiModelProperty(required = true, value = "An array of accounts at a financial institution associated with the transactions in this response. Only accounts that have associated transactions will be shown. For example, `investment`-type accounts will be omitted.")
public List<AccountBase> getAccounts() {
return accounts;
}
public void setAccounts(List<AccountBase> accounts) {
this.accounts = accounts;
}
public TransactionsSyncResponse added(List<Transaction> added) {
this.added = added;
return this;
}
public TransactionsSyncResponse addAddedItem(Transaction addedItem) {
this.added.add(addedItem);
return this;
}
/**
* Transactions that have been added to the Item since `cursor` ordered by ascending last modified time.
* @return added
**/
@ApiModelProperty(required = true, value = "Transactions that have been added to the Item since `cursor` ordered by ascending last modified time.")
public List<Transaction> getAdded() {
return added;
}
public void setAdded(List<Transaction> added) {
this.added = added;
}
public TransactionsSyncResponse modified(List<Transaction> modified) {
this.modified = modified;
return this;
}
public TransactionsSyncResponse addModifiedItem(Transaction modifiedItem) {
this.modified.add(modifiedItem);
return this;
}
/**
* Transactions that have been modified on the Item since `cursor` ordered by ascending last modified time.
* @return modified
**/
@ApiModelProperty(required = true, value = "Transactions that have been modified on the Item since `cursor` ordered by ascending last modified time.")
public List<Transaction> getModified() {
return modified;
}
public void setModified(List<Transaction> modified) {
this.modified = modified;
}
public TransactionsSyncResponse removed(List<RemovedTransaction> removed) {
this.removed = removed;
return this;
}
public TransactionsSyncResponse addRemovedItem(RemovedTransaction removedItem) {
this.removed.add(removedItem);
return this;
}
/**
* Transactions that have been removed from the Item since `cursor` ordered by ascending last modified time.
* @return removed
**/
@ApiModelProperty(required = true, value = "Transactions that have been removed from the Item since `cursor` ordered by ascending last modified time.")
public List<RemovedTransaction> getRemoved() {
return removed;
}
public void setRemoved(List<RemovedTransaction> removed) {
this.removed = removed;
}
public TransactionsSyncResponse nextCursor(String nextCursor) {
this.nextCursor = nextCursor;
return this;
}
/**
* Cursor used for fetching any future updates after the latest update provided in this response. The cursor obtained after all pages have been pulled (indicated by `has_more` being `false`) will be valid for at least 1 year. This cursor should be persisted for later calls. If transactions are not yet available, this will be an empty string. If `account_id` is included in the request, the returned cursor will reflect updates for that specific account.
* @return nextCursor
**/
@ApiModelProperty(required = true, value = "Cursor used for fetching any future updates after the latest update provided in this response. The cursor obtained after all pages have been pulled (indicated by `has_more` being `false`) will be valid for at least 1 year. This cursor should be persisted for later calls. If transactions are not yet available, this will be an empty string. If `account_id` is included in the request, the returned cursor will reflect updates for that specific account.")
public String getNextCursor() {
return nextCursor;
}
public void setNextCursor(String nextCursor) {
this.nextCursor = nextCursor;
}
public TransactionsSyncResponse hasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
/**
* Represents if more than requested count of transaction updates exist. If true, the additional updates can be fetched by making an additional request with `cursor` set to `next_cursor`. If `has_more` is true, it’s important to pull all available pages, to make it less likely for underlying data changes to conflict with pagination.
* @return hasMore
**/
@ApiModelProperty(required = true, value = "Represents if more than requested count of transaction updates exist. If true, the additional updates can be fetched by making an additional request with `cursor` set to `next_cursor`. If `has_more` is true, it’s important to pull all available pages, to make it less likely for underlying data changes to conflict with pagination.")
public Boolean getHasMore() {
return hasMore;
}
public void setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
}
public TransactionsSyncResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransactionsSyncResponse transactionsSyncResponse = (TransactionsSyncResponse) o;
return Objects.equals(this.transactionsUpdateStatus, transactionsSyncResponse.transactionsUpdateStatus) &&
Objects.equals(this.accounts, transactionsSyncResponse.accounts) &&
Objects.equals(this.added, transactionsSyncResponse.added) &&
Objects.equals(this.modified, transactionsSyncResponse.modified) &&
Objects.equals(this.removed, transactionsSyncResponse.removed) &&
Objects.equals(this.nextCursor, transactionsSyncResponse.nextCursor) &&
Objects.equals(this.hasMore, transactionsSyncResponse.hasMore) &&
Objects.equals(this.requestId, transactionsSyncResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(transactionsUpdateStatus, accounts, added, modified, removed, nextCursor, hasMore, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransactionsSyncResponse {\n");
sb.append(" transactionsUpdateStatus: ").append(toIndentedString(transactionsUpdateStatus)).append("\n");
sb.append(" accounts: ").append(toIndentedString(accounts)).append("\n");
sb.append(" added: ").append(toIndentedString(added)).append("\n");
sb.append(" modified: ").append(toIndentedString(modified)).append("\n");
sb.append(" removed: ").append(toIndentedString(removed)).append("\n");
sb.append(" nextCursor: ").append(toIndentedString(nextCursor)).append("\n");
sb.append(" hasMore: ").append(toIndentedString(hasMore)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/KYCCheckNameSummary.java | src/main/java/com/plaid/client/model/KYCCheckNameSummary.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.HiddenMatchSummaryCode;
import com.plaid.client.model.MatchSummaryCode;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Result summary object specifying how the `name` field matched.
*/
@ApiModel(description = "Result summary object specifying how the `name` field matched.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class KYCCheckNameSummary {
public static final String SERIALIZED_NAME_SUMMARY = "summary";
@SerializedName(SERIALIZED_NAME_SUMMARY)
private MatchSummaryCode summary;
public static final String SERIALIZED_NAME_GIVEN_NAME = "given_name";
@SerializedName(SERIALIZED_NAME_GIVEN_NAME)
private HiddenMatchSummaryCode givenName;
public static final String SERIALIZED_NAME_FAMILY_NAME = "family_name";
@SerializedName(SERIALIZED_NAME_FAMILY_NAME)
private HiddenMatchSummaryCode familyName;
public KYCCheckNameSummary summary(MatchSummaryCode summary) {
this.summary = summary;
return this;
}
/**
* Get summary
* @return summary
**/
@ApiModelProperty(required = true, value = "")
public MatchSummaryCode getSummary() {
return summary;
}
public void setSummary(MatchSummaryCode summary) {
this.summary = summary;
}
public KYCCheckNameSummary givenName(HiddenMatchSummaryCode givenName) {
this.givenName = givenName;
return this;
}
/**
* Get givenName
* @return givenName
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public HiddenMatchSummaryCode getGivenName() {
return givenName;
}
public void setGivenName(HiddenMatchSummaryCode givenName) {
this.givenName = givenName;
}
public KYCCheckNameSummary familyName(HiddenMatchSummaryCode familyName) {
this.familyName = familyName;
return this;
}
/**
* Get familyName
* @return familyName
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public HiddenMatchSummaryCode getFamilyName() {
return familyName;
}
public void setFamilyName(HiddenMatchSummaryCode familyName) {
this.familyName = familyName;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
KYCCheckNameSummary kyCCheckNameSummary = (KYCCheckNameSummary) o;
return Objects.equals(this.summary, kyCCheckNameSummary.summary) &&
Objects.equals(this.givenName, kyCCheckNameSummary.givenName) &&
Objects.equals(this.familyName, kyCCheckNameSummary.familyName);
}
@Override
public int hashCode() {
return Objects.hash(summary, givenName, familyName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class KYCCheckNameSummary {\n");
sb.append(" summary: ").append(toIndentedString(summary)).append("\n");
sb.append(" givenName: ").append(toIndentedString(givenName)).append("\n");
sb.append(" familyName: ").append(toIndentedString(familyName)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaystubDetails.java | src/main/java/com/plaid/client/model/PaystubDetails.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.PaystubPayFrequency;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.time.LocalDate;
/**
* An object representing details that can be found on the paystub.
*/
@ApiModel(description = "An object representing details that can be found on the paystub.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class PaystubDetails {
public static final String SERIALIZED_NAME_PAY_PERIOD_START_DATE = "pay_period_start_date";
@SerializedName(SERIALIZED_NAME_PAY_PERIOD_START_DATE)
private LocalDate payPeriodStartDate;
public static final String SERIALIZED_NAME_PAY_PERIOD_END_DATE = "pay_period_end_date";
@SerializedName(SERIALIZED_NAME_PAY_PERIOD_END_DATE)
private LocalDate payPeriodEndDate;
public static final String SERIALIZED_NAME_PAY_DATE = "pay_date";
@SerializedName(SERIALIZED_NAME_PAY_DATE)
private LocalDate payDate;
public static final String SERIALIZED_NAME_PAYSTUB_PROVIDER = "paystub_provider";
@SerializedName(SERIALIZED_NAME_PAYSTUB_PROVIDER)
private String paystubProvider;
public static final String SERIALIZED_NAME_PAY_FREQUENCY = "pay_frequency";
@SerializedName(SERIALIZED_NAME_PAY_FREQUENCY)
private PaystubPayFrequency payFrequency;
public PaystubDetails payPeriodStartDate(LocalDate payPeriodStartDate) {
this.payPeriodStartDate = payPeriodStartDate;
return this;
}
/**
* Beginning date of the pay period on the paystub in the 'YYYY-MM-DD' format.
* @return payPeriodStartDate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Beginning date of the pay period on the paystub in the 'YYYY-MM-DD' format.")
public LocalDate getPayPeriodStartDate() {
return payPeriodStartDate;
}
public void setPayPeriodStartDate(LocalDate payPeriodStartDate) {
this.payPeriodStartDate = payPeriodStartDate;
}
public PaystubDetails payPeriodEndDate(LocalDate payPeriodEndDate) {
this.payPeriodEndDate = payPeriodEndDate;
return this;
}
/**
* Ending date of the pay period on the paystub in the 'YYYY-MM-DD' format.
* @return payPeriodEndDate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Ending date of the pay period on the paystub in the 'YYYY-MM-DD' format.")
public LocalDate getPayPeriodEndDate() {
return payPeriodEndDate;
}
public void setPayPeriodEndDate(LocalDate payPeriodEndDate) {
this.payPeriodEndDate = payPeriodEndDate;
}
public PaystubDetails payDate(LocalDate payDate) {
this.payDate = payDate;
return this;
}
/**
* Pay date on the paystub in the 'YYYY-MM-DD' format.
* @return payDate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Pay date on the paystub in the 'YYYY-MM-DD' format.")
public LocalDate getPayDate() {
return payDate;
}
public void setPayDate(LocalDate payDate) {
this.payDate = payDate;
}
public PaystubDetails paystubProvider(String paystubProvider) {
this.paystubProvider = paystubProvider;
return this;
}
/**
* The name of the payroll provider that generated the paystub, e.g. ADP
* @return paystubProvider
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The name of the payroll provider that generated the paystub, e.g. ADP")
public String getPaystubProvider() {
return paystubProvider;
}
public void setPaystubProvider(String paystubProvider) {
this.paystubProvider = paystubProvider;
}
public PaystubDetails payFrequency(PaystubPayFrequency payFrequency) {
this.payFrequency = payFrequency;
return this;
}
/**
* Get payFrequency
* @return payFrequency
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public PaystubPayFrequency getPayFrequency() {
return payFrequency;
}
public void setPayFrequency(PaystubPayFrequency payFrequency) {
this.payFrequency = payFrequency;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PaystubDetails paystubDetails = (PaystubDetails) o;
return Objects.equals(this.payPeriodStartDate, paystubDetails.payPeriodStartDate) &&
Objects.equals(this.payPeriodEndDate, paystubDetails.payPeriodEndDate) &&
Objects.equals(this.payDate, paystubDetails.payDate) &&
Objects.equals(this.paystubProvider, paystubDetails.paystubProvider) &&
Objects.equals(this.payFrequency, paystubDetails.payFrequency);
}
@Override
public int hashCode() {
return Objects.hash(payPeriodStartDate, payPeriodEndDate, payDate, paystubProvider, payFrequency);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PaystubDetails {\n");
sb.append(" payPeriodStartDate: ").append(toIndentedString(payPeriodStartDate)).append("\n");
sb.append(" payPeriodEndDate: ").append(toIndentedString(payPeriodEndDate)).append("\n");
sb.append(" payDate: ").append(toIndentedString(payDate)).append("\n");
sb.append(" paystubProvider: ").append(toIndentedString(paystubProvider)).append("\n");
sb.append(" payFrequency: ").append(toIndentedString(payFrequency)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualListRequest.java | src/main/java/com/plaid/client/model/WatchlistScreeningIndividualListRequest.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.WatchlistScreeningStatus;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Request input for listinging watchlist screenings for individuals
*/
@ApiModel(description = "Request input for listinging watchlist screenings for individuals")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class WatchlistScreeningIndividualListRequest {
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
private String clientId;
public static final String SERIALIZED_NAME_WATCHLIST_PROGRAM_ID = "watchlist_program_id";
@SerializedName(SERIALIZED_NAME_WATCHLIST_PROGRAM_ID)
private String watchlistProgramId;
public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id";
@SerializedName(SERIALIZED_NAME_CLIENT_USER_ID)
private String clientUserId;
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private WatchlistScreeningStatus status;
public static final String SERIALIZED_NAME_ASSIGNEE = "assignee";
@SerializedName(SERIALIZED_NAME_ASSIGNEE)
private String assignee;
public static final String SERIALIZED_NAME_CURSOR = "cursor";
@SerializedName(SERIALIZED_NAME_CURSOR)
private String cursor;
public WatchlistScreeningIndividualListRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public WatchlistScreeningIndividualListRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public WatchlistScreeningIndividualListRequest watchlistProgramId(String watchlistProgramId) {
this.watchlistProgramId = watchlistProgramId;
return this;
}
/**
* ID of the associated program.
* @return watchlistProgramId
**/
@ApiModelProperty(example = "prg_2eRPsDnL66rZ7H", required = true, value = "ID of the associated program.")
public String getWatchlistProgramId() {
return watchlistProgramId;
}
public void setWatchlistProgramId(String watchlistProgramId) {
this.watchlistProgramId = watchlistProgramId;
}
public WatchlistScreeningIndividualListRequest clientUserId(String clientUserId) {
this.clientUserId = clientUserId;
return this;
}
/**
* A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the `/link/token/create` `client_user_id` to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the `client_user_id`.
* @return clientUserId
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "your-db-id-3b24110", value = "A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the `/link/token/create` `client_user_id` to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the `client_user_id`.")
public String getClientUserId() {
return clientUserId;
}
public void setClientUserId(String clientUserId) {
this.clientUserId = clientUserId;
}
public WatchlistScreeningIndividualListRequest status(WatchlistScreeningStatus status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public WatchlistScreeningStatus getStatus() {
return status;
}
public void setStatus(WatchlistScreeningStatus status) {
this.status = status;
}
public WatchlistScreeningIndividualListRequest assignee(String assignee) {
this.assignee = assignee;
return this;
}
/**
* ID of the associated user. To retrieve the email address or other details of the person corresponding to this id, use `/dashboard_user/get`.
* @return assignee
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "54350110fedcbaf01234ffee", value = "ID of the associated user. To retrieve the email address or other details of the person corresponding to this id, use `/dashboard_user/get`.")
public String getAssignee() {
return assignee;
}
public void setAssignee(String assignee) {
this.assignee = assignee;
}
public WatchlistScreeningIndividualListRequest cursor(String cursor) {
this.cursor = cursor;
return this;
}
/**
* An identifier that determines which page of results you receive.
* @return cursor
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "eyJkaXJlY3Rpb24iOiJuZXh0Iiwib2Zmc2V0IjoiMTU5NDM", value = "An identifier that determines which page of results you receive.")
public String getCursor() {
return cursor;
}
public void setCursor(String cursor) {
this.cursor = cursor;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
WatchlistScreeningIndividualListRequest watchlistScreeningIndividualListRequest = (WatchlistScreeningIndividualListRequest) o;
return Objects.equals(this.secret, watchlistScreeningIndividualListRequest.secret) &&
Objects.equals(this.clientId, watchlistScreeningIndividualListRequest.clientId) &&
Objects.equals(this.watchlistProgramId, watchlistScreeningIndividualListRequest.watchlistProgramId) &&
Objects.equals(this.clientUserId, watchlistScreeningIndividualListRequest.clientUserId) &&
Objects.equals(this.status, watchlistScreeningIndividualListRequest.status) &&
Objects.equals(this.assignee, watchlistScreeningIndividualListRequest.assignee) &&
Objects.equals(this.cursor, watchlistScreeningIndividualListRequest.cursor);
}
@Override
public int hashCode() {
return Objects.hash(secret, clientId, watchlistProgramId, clientUserId, status, assignee, cursor);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class WatchlistScreeningIndividualListRequest {\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" watchlistProgramId: ").append(toIndentedString(watchlistProgramId)).append("\n");
sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" assignee: ").append(toIndentedString(assignee)).append("\n");
sb.append(" cursor: ").append(toIndentedString(cursor)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AmountWithCurrencyWithMonthlyAverage.java | src/main/java/com/plaid/client/model/AmountWithCurrencyWithMonthlyAverage.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.AmountWithCurrency;
import com.plaid.client.model.MonthlyAverage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Represents an amount and a monthly average
*/
@ApiModel(description = "Represents an amount and a monthly average")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class AmountWithCurrencyWithMonthlyAverage {
public static final String SERIALIZED_NAME_AMOUNT = "amount";
@SerializedName(SERIALIZED_NAME_AMOUNT)
private Double amount;
public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code";
@SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE)
private String isoCurrencyCode;
public static final String SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE = "unofficial_currency_code";
@SerializedName(SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE)
private String unofficialCurrencyCode;
public AmountWithCurrencyWithMonthlyAverage amount(Double amount) {
this.amount = amount;
return this;
}
/**
* The monthly average amount of all the aggregated transactions of the given category, across all the accounts for the given time window. The average is calculated by dividing the total amount of the transactions by the number of calendar months in the given time window.
* @return amount
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The monthly average amount of all the aggregated transactions of the given category, across all the accounts for the given time window. The average is calculated by dividing the total amount of the transactions by the number of calendar months in the given time window.")
public Double getAmount() {
return amount;
}
public void setAmount(Double amount) {
this.amount = amount;
}
public AmountWithCurrencyWithMonthlyAverage isoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
return this;
}
/**
* The ISO-4217 currency code of the amount. Always `null` if `unofficial_currency_code` is non-`null`.
* @return isoCurrencyCode
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The ISO-4217 currency code of the amount. Always `null` if `unofficial_currency_code` is non-`null`.")
public String getIsoCurrencyCode() {
return isoCurrencyCode;
}
public void setIsoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
}
public AmountWithCurrencyWithMonthlyAverage unofficialCurrencyCode(String unofficialCurrencyCode) {
this.unofficialCurrencyCode = unofficialCurrencyCode;
return this;
}
/**
* The unofficial currency code associated with the amount. Always `null` if `iso_currency_code` is non-`null`. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported `unofficial_currency_code`s.
* @return unofficialCurrencyCode
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The unofficial currency code associated with the amount. Always `null` if `iso_currency_code` is non-`null`. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported `unofficial_currency_code`s.")
public String getUnofficialCurrencyCode() {
return unofficialCurrencyCode;
}
public void setUnofficialCurrencyCode(String unofficialCurrencyCode) {
this.unofficialCurrencyCode = unofficialCurrencyCode;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AmountWithCurrencyWithMonthlyAverage amountWithCurrencyWithMonthlyAverage = (AmountWithCurrencyWithMonthlyAverage) o;
return Objects.equals(this.amount, amountWithCurrencyWithMonthlyAverage.amount) &&
Objects.equals(this.isoCurrencyCode, amountWithCurrencyWithMonthlyAverage.isoCurrencyCode) &&
Objects.equals(this.unofficialCurrencyCode, amountWithCurrencyWithMonthlyAverage.unofficialCurrencyCode);
}
@Override
public int hashCode() {
return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AmountWithCurrencyWithMonthlyAverage {\n");
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n");
sb.append(" unofficialCurrencyCode: ").append(toIndentedString(unofficialCurrencyCode)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SandboxProcessorTokenCreateRequest.java | src/main/java/com/plaid/client/model/SandboxProcessorTokenCreateRequest.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.SandboxProcessorTokenCreateRequestOptions;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* SandboxProcessorTokenCreateRequest defines the request schema for `/sandbox/processor_token/create`
*/
@ApiModel(description = "SandboxProcessorTokenCreateRequest defines the request schema for `/sandbox/processor_token/create`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class SandboxProcessorTokenCreateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
private String clientId;
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id";
@SerializedName(SERIALIZED_NAME_INSTITUTION_ID)
private String institutionId;
public static final String SERIALIZED_NAME_OPTIONS = "options";
@SerializedName(SERIALIZED_NAME_OPTIONS)
private SandboxProcessorTokenCreateRequestOptions options;
public SandboxProcessorTokenCreateRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public SandboxProcessorTokenCreateRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public SandboxProcessorTokenCreateRequest institutionId(String institutionId) {
this.institutionId = institutionId;
return this;
}
/**
* The ID of the institution the Item will be associated with
* @return institutionId
**/
@ApiModelProperty(required = true, value = "The ID of the institution the Item will be associated with")
public String getInstitutionId() {
return institutionId;
}
public void setInstitutionId(String institutionId) {
this.institutionId = institutionId;
}
public SandboxProcessorTokenCreateRequest options(SandboxProcessorTokenCreateRequestOptions options) {
this.options = options;
return this;
}
/**
* Get options
* @return options
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public SandboxProcessorTokenCreateRequestOptions getOptions() {
return options;
}
public void setOptions(SandboxProcessorTokenCreateRequestOptions options) {
this.options = options;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SandboxProcessorTokenCreateRequest sandboxProcessorTokenCreateRequest = (SandboxProcessorTokenCreateRequest) o;
return Objects.equals(this.clientId, sandboxProcessorTokenCreateRequest.clientId) &&
Objects.equals(this.secret, sandboxProcessorTokenCreateRequest.secret) &&
Objects.equals(this.institutionId, sandboxProcessorTokenCreateRequest.institutionId) &&
Objects.equals(this.options, sandboxProcessorTokenCreateRequest.options);
}
@Override
public int hashCode() {
return Objects.hash(clientId, secret, institutionId, options);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SandboxProcessorTokenCreateRequest {\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" institutionId: ").append(toIndentedString(institutionId)).append("\n");
sb.append(" options: ").append(toIndentedString(options)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransactionsEnrichRequestOptions.java | src/main/java/com/plaid/client/model/TransactionsEnrichRequestOptions.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.PersonalFinanceCategoryVersion;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* An optional object to be used with the request.
*/
@ApiModel(description = "An optional object to be used with the request.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TransactionsEnrichRequestOptions {
public static final String SERIALIZED_NAME_INCLUDE_LEGACY_CATEGORY = "include_legacy_category";
@SerializedName(SERIALIZED_NAME_INCLUDE_LEGACY_CATEGORY)
private Boolean includeLegacyCategory = false;
public static final String SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY_VERSION = "personal_finance_category_version";
@SerializedName(SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY_VERSION)
private PersonalFinanceCategoryVersion personalFinanceCategoryVersion;
public TransactionsEnrichRequestOptions includeLegacyCategory(Boolean includeLegacyCategory) {
this.includeLegacyCategory = includeLegacyCategory;
return this;
}
/**
* Include `legacy_category` and `legacy_category_id` in the response (in addition to the default `personal_finance_category`). Categories are based on Plaid's legacy taxonomy. For a full list of legacy categories, see [`/categories/get`](https://plaid.com/docs/api/products/transactions/#categoriesget).
* @return includeLegacyCategory
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Include `legacy_category` and `legacy_category_id` in the response (in addition to the default `personal_finance_category`). Categories are based on Plaid's legacy taxonomy. For a full list of legacy categories, see [`/categories/get`](https://plaid.com/docs/api/products/transactions/#categoriesget).")
public Boolean getIncludeLegacyCategory() {
return includeLegacyCategory;
}
public void setIncludeLegacyCategory(Boolean includeLegacyCategory) {
this.includeLegacyCategory = includeLegacyCategory;
}
public TransactionsEnrichRequestOptions personalFinanceCategoryVersion(PersonalFinanceCategoryVersion personalFinanceCategoryVersion) {
this.personalFinanceCategoryVersion = personalFinanceCategoryVersion;
return this;
}
/**
* Get personalFinanceCategoryVersion
* @return personalFinanceCategoryVersion
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public PersonalFinanceCategoryVersion getPersonalFinanceCategoryVersion() {
return personalFinanceCategoryVersion;
}
public void setPersonalFinanceCategoryVersion(PersonalFinanceCategoryVersion personalFinanceCategoryVersion) {
this.personalFinanceCategoryVersion = personalFinanceCategoryVersion;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransactionsEnrichRequestOptions transactionsEnrichRequestOptions = (TransactionsEnrichRequestOptions) o;
return Objects.equals(this.includeLegacyCategory, transactionsEnrichRequestOptions.includeLegacyCategory) &&
Objects.equals(this.personalFinanceCategoryVersion, transactionsEnrichRequestOptions.personalFinanceCategoryVersion);
}
@Override
public int hashCode() {
return Objects.hash(includeLegacyCategory, personalFinanceCategoryVersion);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransactionsEnrichRequestOptions {\n");
sb.append(" includeLegacyCategory: ").append(toIndentedString(includeLegacyCategory)).append("\n");
sb.append(" personalFinanceCategoryVersion: ").append(toIndentedString(personalFinanceCategoryVersion)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraBankIncomeCompleteWebhook.java | src/main/java/com/plaid/client/model/CraBankIncomeCompleteWebhook.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.CraBankIncomeCompleteResult;
import com.plaid.client.model.WebhookEnvironmentValues;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Fired when a bank income report has finished generating or failed to generate, triggered by calling `/cra/bank_income/get`.
*/
@ApiModel(description = "Fired when a bank income report has finished generating or failed to generate, triggered by calling `/cra/bank_income/get`.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CraBankIncomeCompleteWebhook {
public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type";
@SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE)
private String webhookType;
public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code";
@SerializedName(SERIALIZED_NAME_WEBHOOK_CODE)
private String webhookCode;
public static final String SERIALIZED_NAME_USER_ID = "user_id";
@SerializedName(SERIALIZED_NAME_USER_ID)
private String userId;
public static final String SERIALIZED_NAME_RESULT = "result";
@SerializedName(SERIALIZED_NAME_RESULT)
private CraBankIncomeCompleteResult result;
public static final String SERIALIZED_NAME_ENVIRONMENT = "environment";
@SerializedName(SERIALIZED_NAME_ENVIRONMENT)
private WebhookEnvironmentValues environment;
public CraBankIncomeCompleteWebhook webhookType(String webhookType) {
this.webhookType = webhookType;
return this;
}
/**
* `CRA_INCOME`
* @return webhookType
**/
@ApiModelProperty(required = true, value = "`CRA_INCOME`")
public String getWebhookType() {
return webhookType;
}
public void setWebhookType(String webhookType) {
this.webhookType = webhookType;
}
public CraBankIncomeCompleteWebhook webhookCode(String webhookCode) {
this.webhookCode = webhookCode;
return this;
}
/**
* `BANK_INCOME_COMPLETE`
* @return webhookCode
**/
@ApiModelProperty(required = true, value = "`BANK_INCOME_COMPLETE`")
public String getWebhookCode() {
return webhookCode;
}
public void setWebhookCode(String webhookCode) {
this.webhookCode = webhookCode;
}
public CraBankIncomeCompleteWebhook userId(String userId) {
this.userId = userId;
return this;
}
/**
* The `user_id` corresponding to the user the webhook has fired for.
* @return userId
**/
@ApiModelProperty(required = true, value = "The `user_id` corresponding to the user the webhook has fired for.")
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public CraBankIncomeCompleteWebhook result(CraBankIncomeCompleteResult result) {
this.result = result;
return this;
}
/**
* Get result
* @return result
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public CraBankIncomeCompleteResult getResult() {
return result;
}
public void setResult(CraBankIncomeCompleteResult result) {
this.result = result;
}
public CraBankIncomeCompleteWebhook environment(WebhookEnvironmentValues environment) {
this.environment = environment;
return this;
}
/**
* Get environment
* @return environment
**/
@ApiModelProperty(required = true, value = "")
public WebhookEnvironmentValues getEnvironment() {
return environment;
}
public void setEnvironment(WebhookEnvironmentValues environment) {
this.environment = environment;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CraBankIncomeCompleteWebhook craBankIncomeCompleteWebhook = (CraBankIncomeCompleteWebhook) o;
return Objects.equals(this.webhookType, craBankIncomeCompleteWebhook.webhookType) &&
Objects.equals(this.webhookCode, craBankIncomeCompleteWebhook.webhookCode) &&
Objects.equals(this.userId, craBankIncomeCompleteWebhook.userId) &&
Objects.equals(this.result, craBankIncomeCompleteWebhook.result) &&
Objects.equals(this.environment, craBankIncomeCompleteWebhook.environment);
}
@Override
public int hashCode() {
return Objects.hash(webhookType, webhookCode, userId, result, environment);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CraBankIncomeCompleteWebhook {\n");
sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n");
sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n");
sb.append(" userId: ").append(toIndentedString(userId)).append("\n");
sb.append(" result: ").append(toIndentedString(result)).append("\n");
sb.append(" environment: ").append(toIndentedString(environment)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetReportFreddieGetResponse.java | src/main/java/com/plaid/client/model/AssetReportFreddieGetResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.AssetReportFreddie;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
/**
* AssetReportFreddieGetResponse defines the response schema for `/asset_report/get`
*/
@ApiModel(description = "AssetReportFreddieGetResponse defines the response schema for `/asset_report/get`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class AssetReportFreddieGetResponse {
public static final String SERIALIZED_NAME_D_E_A_L = "DEAL";
@SerializedName(SERIALIZED_NAME_D_E_A_L)
private AssetReportFreddie DEAL;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public static final String SERIALIZED_NAME_SCHEMA_VERSION = "SchemaVersion";
@SerializedName(SERIALIZED_NAME_SCHEMA_VERSION)
private Double schemaVersion;
public AssetReportFreddieGetResponse DEAL(AssetReportFreddie DEAL) {
this.DEAL = DEAL;
return this;
}
/**
* Get DEAL
* @return DEAL
**/
@ApiModelProperty(required = true, value = "")
public AssetReportFreddie getDEAL() {
return DEAL;
}
public void setDEAL(AssetReportFreddie DEAL) {
this.DEAL = DEAL;
}
public AssetReportFreddieGetResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public AssetReportFreddieGetResponse schemaVersion(Double schemaVersion) {
this.schemaVersion = schemaVersion;
return this;
}
/**
* The Verification Of Assets (aka VOA or Freddie Mac Schema) schema version.
* @return schemaVersion
**/
@ApiModelProperty(required = true, value = "The Verification Of Assets (aka VOA or Freddie Mac Schema) schema version.")
public Double getSchemaVersion() {
return schemaVersion;
}
public void setSchemaVersion(Double schemaVersion) {
this.schemaVersion = schemaVersion;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AssetReportFreddieGetResponse assetReportFreddieGetResponse = (AssetReportFreddieGetResponse) o;
return Objects.equals(this.DEAL, assetReportFreddieGetResponse.DEAL) &&
Objects.equals(this.requestId, assetReportFreddieGetResponse.requestId) &&
Objects.equals(this.schemaVersion, assetReportFreddieGetResponse.schemaVersion);
}
@Override
public int hashCode() {
return Objects.hash(DEAL, requestId, schemaVersion);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AssetReportFreddieGetResponse {\n");
sb.append(" DEAL: ").append(toIndentedString(DEAL)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append(" schemaVersion: ").append(toIndentedString(schemaVersion)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferMetricsGetReturnRatesOverInterval.java | src/main/java/com/plaid/client/model/TransferMetricsGetReturnRatesOverInterval.java | /*
* 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.680.0
*
*
* 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;
/**
* Details regarding return rates.
*/
@ApiModel(description = "Details regarding return rates.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TransferMetricsGetReturnRatesOverInterval {
public static final String SERIALIZED_NAME_OVERALL_RETURN_RATE = "overall_return_rate";
@SerializedName(SERIALIZED_NAME_OVERALL_RETURN_RATE)
private String overallReturnRate;
public static final String SERIALIZED_NAME_UNAUTHORIZED_RETURN_RATE = "unauthorized_return_rate";
@SerializedName(SERIALIZED_NAME_UNAUTHORIZED_RETURN_RATE)
private String unauthorizedReturnRate;
public static final String SERIALIZED_NAME_ADMINISTRATIVE_RETURN_RATE = "administrative_return_rate";
@SerializedName(SERIALIZED_NAME_ADMINISTRATIVE_RETURN_RATE)
private String administrativeReturnRate;
public TransferMetricsGetReturnRatesOverInterval overallReturnRate(String overallReturnRate) {
this.overallReturnRate = overallReturnRate;
return this;
}
/**
* The overall return rate.
* @return overallReturnRate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The overall return rate.")
public String getOverallReturnRate() {
return overallReturnRate;
}
public void setOverallReturnRate(String overallReturnRate) {
this.overallReturnRate = overallReturnRate;
}
public TransferMetricsGetReturnRatesOverInterval unauthorizedReturnRate(String unauthorizedReturnRate) {
this.unauthorizedReturnRate = unauthorizedReturnRate;
return this;
}
/**
* The unauthorized return rate.
* @return unauthorizedReturnRate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The unauthorized return rate.")
public String getUnauthorizedReturnRate() {
return unauthorizedReturnRate;
}
public void setUnauthorizedReturnRate(String unauthorizedReturnRate) {
this.unauthorizedReturnRate = unauthorizedReturnRate;
}
public TransferMetricsGetReturnRatesOverInterval administrativeReturnRate(String administrativeReturnRate) {
this.administrativeReturnRate = administrativeReturnRate;
return this;
}
/**
* The administrative return rate.
* @return administrativeReturnRate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The administrative return rate.")
public String getAdministrativeReturnRate() {
return administrativeReturnRate;
}
public void setAdministrativeReturnRate(String administrativeReturnRate) {
this.administrativeReturnRate = administrativeReturnRate;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransferMetricsGetReturnRatesOverInterval transferMetricsGetReturnRatesOverInterval = (TransferMetricsGetReturnRatesOverInterval) o;
return Objects.equals(this.overallReturnRate, transferMetricsGetReturnRatesOverInterval.overallReturnRate) &&
Objects.equals(this.unauthorizedReturnRate, transferMetricsGetReturnRatesOverInterval.unauthorizedReturnRate) &&
Objects.equals(this.administrativeReturnRate, transferMetricsGetReturnRatesOverInterval.administrativeReturnRate);
}
@Override
public int hashCode() {
return Objects.hash(overallReturnRate, unauthorizedReturnRate, administrativeReturnRate);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransferMetricsGetReturnRatesOverInterval {\n");
sb.append(" overallReturnRate: ").append(toIndentedString(overallReturnRate)).append("\n");
sb.append(" unauthorizedReturnRate: ").append(toIndentedString(unauthorizedReturnRate)).append("\n");
sb.append(" administrativeReturnRate: ").append(toIndentedString(administrativeReturnRate)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WatchlistScreeningEntityUpdateRequest.java | src/main/java/com/plaid/client/model/WatchlistScreeningEntityUpdateRequest.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.UpdateEntityScreeningRequestSearchTerms;
import com.plaid.client.model.WatchlistScreeningEntityUpdateRequestResettableField;
import com.plaid.client.model.WatchlistScreeningStatus;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* Request input for editing an entity watchlist screening
*/
@ApiModel(description = "Request input for editing an entity watchlist screening")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class WatchlistScreeningEntityUpdateRequest {
public static final String SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENING_ID = "entity_watchlist_screening_id";
@SerializedName(SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENING_ID)
private String entityWatchlistScreeningId;
public static final String SERIALIZED_NAME_SEARCH_TERMS = "search_terms";
@SerializedName(SERIALIZED_NAME_SEARCH_TERMS)
private UpdateEntityScreeningRequestSearchTerms searchTerms;
public static final String SERIALIZED_NAME_ASSIGNEE = "assignee";
@SerializedName(SERIALIZED_NAME_ASSIGNEE)
private String assignee;
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private WatchlistScreeningStatus status;
public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id";
@SerializedName(SERIALIZED_NAME_CLIENT_USER_ID)
private String clientUserId;
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
private String clientId;
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public static final String SERIALIZED_NAME_RESET_FIELDS = "reset_fields";
@SerializedName(SERIALIZED_NAME_RESET_FIELDS)
private List<WatchlistScreeningEntityUpdateRequestResettableField> resetFields = null;
public WatchlistScreeningEntityUpdateRequest entityWatchlistScreeningId(String entityWatchlistScreeningId) {
this.entityWatchlistScreeningId = entityWatchlistScreeningId;
return this;
}
/**
* ID of the associated entity screening.
* @return entityWatchlistScreeningId
**/
@ApiModelProperty(example = "entscr_52xR9LKo77r1Np", required = true, value = "ID of the associated entity screening.")
public String getEntityWatchlistScreeningId() {
return entityWatchlistScreeningId;
}
public void setEntityWatchlistScreeningId(String entityWatchlistScreeningId) {
this.entityWatchlistScreeningId = entityWatchlistScreeningId;
}
public WatchlistScreeningEntityUpdateRequest searchTerms(UpdateEntityScreeningRequestSearchTerms searchTerms) {
this.searchTerms = searchTerms;
return this;
}
/**
* Get searchTerms
* @return searchTerms
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public UpdateEntityScreeningRequestSearchTerms getSearchTerms() {
return searchTerms;
}
public void setSearchTerms(UpdateEntityScreeningRequestSearchTerms searchTerms) {
this.searchTerms = searchTerms;
}
public WatchlistScreeningEntityUpdateRequest assignee(String assignee) {
this.assignee = assignee;
return this;
}
/**
* ID of the associated user. To retrieve the email address or other details of the person corresponding to this id, use `/dashboard_user/get`.
* @return assignee
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "54350110fedcbaf01234ffee", value = "ID of the associated user. To retrieve the email address or other details of the person corresponding to this id, use `/dashboard_user/get`.")
public String getAssignee() {
return assignee;
}
public void setAssignee(String assignee) {
this.assignee = assignee;
}
public WatchlistScreeningEntityUpdateRequest status(WatchlistScreeningStatus status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public WatchlistScreeningStatus getStatus() {
return status;
}
public void setStatus(WatchlistScreeningStatus status) {
this.status = status;
}
public WatchlistScreeningEntityUpdateRequest clientUserId(String clientUserId) {
this.clientUserId = clientUserId;
return this;
}
/**
* A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the `/link/token/create` `client_user_id` to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the `client_user_id`.
* @return clientUserId
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "your-db-id-3b24110", value = "A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the `/link/token/create` `client_user_id` to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the `client_user_id`.")
public String getClientUserId() {
return clientUserId;
}
public void setClientUserId(String clientUserId) {
this.clientUserId = clientUserId;
}
public WatchlistScreeningEntityUpdateRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public WatchlistScreeningEntityUpdateRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public WatchlistScreeningEntityUpdateRequest resetFields(List<WatchlistScreeningEntityUpdateRequestResettableField> resetFields) {
this.resetFields = resetFields;
return this;
}
public WatchlistScreeningEntityUpdateRequest addResetFieldsItem(WatchlistScreeningEntityUpdateRequestResettableField resetFieldsItem) {
if (this.resetFields == null) {
this.resetFields = new ArrayList<>();
}
this.resetFields.add(resetFieldsItem);
return this;
}
/**
* A list of fields to reset back to null
* @return resetFields
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A list of fields to reset back to null")
public List<WatchlistScreeningEntityUpdateRequestResettableField> getResetFields() {
return resetFields;
}
public void setResetFields(List<WatchlistScreeningEntityUpdateRequestResettableField> resetFields) {
this.resetFields = resetFields;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
WatchlistScreeningEntityUpdateRequest watchlistScreeningEntityUpdateRequest = (WatchlistScreeningEntityUpdateRequest) o;
return Objects.equals(this.entityWatchlistScreeningId, watchlistScreeningEntityUpdateRequest.entityWatchlistScreeningId) &&
Objects.equals(this.searchTerms, watchlistScreeningEntityUpdateRequest.searchTerms) &&
Objects.equals(this.assignee, watchlistScreeningEntityUpdateRequest.assignee) &&
Objects.equals(this.status, watchlistScreeningEntityUpdateRequest.status) &&
Objects.equals(this.clientUserId, watchlistScreeningEntityUpdateRequest.clientUserId) &&
Objects.equals(this.clientId, watchlistScreeningEntityUpdateRequest.clientId) &&
Objects.equals(this.secret, watchlistScreeningEntityUpdateRequest.secret) &&
Objects.equals(this.resetFields, watchlistScreeningEntityUpdateRequest.resetFields);
}
@Override
public int hashCode() {
return Objects.hash(entityWatchlistScreeningId, searchTerms, assignee, status, clientUserId, clientId, secret, resetFields);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class WatchlistScreeningEntityUpdateRequest {\n");
sb.append(" entityWatchlistScreeningId: ").append(toIndentedString(entityWatchlistScreeningId)).append("\n");
sb.append(" searchTerms: ").append(toIndentedString(searchTerms)).append("\n");
sb.append(" assignee: ").append(toIndentedString(assignee)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" resetFields: ").append(toIndentedString(resetFields)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/DashboardUserGetResponse.java | src/main/java/com/plaid/client/model/DashboardUserGetResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.DashboardUserStatus;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Account information associated with a team member with access to the Plaid dashboard.
*/
@ApiModel(description = "Account information associated with a team member with access to the Plaid dashboard.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class DashboardUserGetResponse {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
private String id;
public static final String SERIALIZED_NAME_CREATED_AT = "created_at";
@SerializedName(SERIALIZED_NAME_CREATED_AT)
private java.sql.Timestamp createdAt;
public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address";
@SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS)
private String emailAddress;
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private DashboardUserStatus status;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public DashboardUserGetResponse id(String id) {
this.id = id;
return this;
}
/**
* ID of the associated user. To retrieve the email address or other details of the person corresponding to this id, use `/dashboard_user/get`.
* @return id
**/
@ApiModelProperty(example = "54350110fedcbaf01234ffee", required = true, value = "ID of the associated user. To retrieve the email address or other details of the person corresponding to this id, use `/dashboard_user/get`.")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public DashboardUserGetResponse createdAt(java.sql.Timestamp createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* Get createdAt
* @return createdAt
**/
@ApiModelProperty(required = true, value = "")
public java.sql.Timestamp getCreatedAt() {
return createdAt;
}
public void setCreatedAt(java.sql.Timestamp createdAt) {
this.createdAt = createdAt;
}
public DashboardUserGetResponse emailAddress(String emailAddress) {
this.emailAddress = emailAddress;
return this;
}
/**
* A valid email address. Must not have leading or trailing spaces and address must be RFC compliant. For more information, see [RFC 3696](https://datatracker.ietf.org/doc/html/rfc3696).
* @return emailAddress
**/
@ApiModelProperty(example = "user@example.com", required = true, value = "A valid email address. Must not have leading or trailing spaces and address must be RFC compliant. For more information, see [RFC 3696](https://datatracker.ietf.org/doc/html/rfc3696).")
public String getEmailAddress() {
return emailAddress;
}
public void setEmailAddress(String emailAddress) {
this.emailAddress = emailAddress;
}
public DashboardUserGetResponse status(DashboardUserStatus status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@ApiModelProperty(required = true, value = "")
public DashboardUserStatus getStatus() {
return status;
}
public void setStatus(DashboardUserStatus status) {
this.status = status;
}
public DashboardUserGetResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DashboardUserGetResponse dashboardUserGetResponse = (DashboardUserGetResponse) o;
return Objects.equals(this.id, dashboardUserGetResponse.id) &&
Objects.equals(this.createdAt, dashboardUserGetResponse.createdAt) &&
Objects.equals(this.emailAddress, dashboardUserGetResponse.emailAddress) &&
Objects.equals(this.status, dashboardUserGetResponse.status) &&
Objects.equals(this.requestId, dashboardUserGetResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(id, createdAt, emailAddress, status, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DashboardUserGetResponse {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetOwner.java | src/main/java/com/plaid/client/model/AssetOwner.java | /*
* 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.680.0
*
*
* 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;
/**
* Documentation not found in the MISMO model viewer and not provided by Freddie Mac.
*/
@ApiModel(description = "Documentation not found in the MISMO model viewer and not provided by Freddie Mac.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class AssetOwner {
public static final String SERIALIZED_NAME_ASSET_OWNER_TEXT = "AssetOwnerText";
@SerializedName(SERIALIZED_NAME_ASSET_OWNER_TEXT)
private String assetOwnerText;
public AssetOwner assetOwnerText(String assetOwnerText) {
this.assetOwnerText = assetOwnerText;
return this;
}
/**
* Account Owner Full Name.
* @return assetOwnerText
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Account Owner Full Name.")
public String getAssetOwnerText() {
return assetOwnerText;
}
public void setAssetOwnerText(String assetOwnerText) {
this.assetOwnerText = assetOwnerText;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AssetOwner assetOwner = (AssetOwner) o;
return Objects.equals(this.assetOwnerText, assetOwner.assetOwnerText);
}
@Override
public int hashCode() {
return Objects.hash(assetOwnerText);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AssetOwner {\n");
sb.append(" assetOwnerText: ").append(toIndentedString(assetOwnerText)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditFreddieMacParties.java | src/main/java/com/plaid/client/model/CreditFreddieMacParties.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.CreditFreddieMacParty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* A collection of objects that define specific parties to a deal. This includes the direct participating parties, such as borrower and seller and the indirect parties such as the credit report provider.
*/
@ApiModel(description = "A collection of objects that define specific parties to a deal. This includes the direct participating parties, such as borrower and seller and the indirect parties such as the credit report provider.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CreditFreddieMacParties {
public static final String SERIALIZED_NAME_P_A_R_T_Y = "PARTY";
@SerializedName(SERIALIZED_NAME_P_A_R_T_Y)
private List<CreditFreddieMacParty> PARTY = new ArrayList<>();
public CreditFreddieMacParties PARTY(List<CreditFreddieMacParty> PARTY) {
this.PARTY = PARTY;
return this;
}
public CreditFreddieMacParties addPARTYItem(CreditFreddieMacParty PARTYItem) {
this.PARTY.add(PARTYItem);
return this;
}
/**
* Get PARTY
* @return PARTY
**/
@ApiModelProperty(required = true, value = "")
public List<CreditFreddieMacParty> getPARTY() {
return PARTY;
}
public void setPARTY(List<CreditFreddieMacParty> PARTY) {
this.PARTY = PARTY;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreditFreddieMacParties creditFreddieMacParties = (CreditFreddieMacParties) o;
return Objects.equals(this.PARTY, creditFreddieMacParties.PARTY);
}
@Override
public int hashCode() {
return Objects.hash(PARTY);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreditFreddieMacParties {\n");
sb.append(" PARTY: ").append(toIndentedString(PARTY)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorTokenWebhookUpdateRequest.java | src/main/java/com/plaid/client/model/ProcessorTokenWebhookUpdateRequest.java | /*
* 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.680.0
*
*
* 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;
/**
* ProcessorTokenWebhookUpdateRequest defines the request schema for `/processor/token/webhook/update`
*/
@ApiModel(description = "ProcessorTokenWebhookUpdateRequest defines the request schema for `/processor/token/webhook/update`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ProcessorTokenWebhookUpdateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
private String clientId;
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public static final String SERIALIZED_NAME_PROCESSOR_TOKEN = "processor_token";
@SerializedName(SERIALIZED_NAME_PROCESSOR_TOKEN)
private String processorToken;
public static final String SERIALIZED_NAME_WEBHOOK = "webhook";
@SerializedName(SERIALIZED_NAME_WEBHOOK)
private String webhook;
public ProcessorTokenWebhookUpdateRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public ProcessorTokenWebhookUpdateRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public ProcessorTokenWebhookUpdateRequest processorToken(String processorToken) {
this.processorToken = processorToken;
return this;
}
/**
* The processor token obtained from the Plaid integration partner. Processor tokens are in the format: `processor-<environment>-<identifier>`
* @return processorToken
**/
@ApiModelProperty(required = true, value = "The processor token obtained from the Plaid integration partner. Processor tokens are in the format: `processor-<environment>-<identifier>`")
public String getProcessorToken() {
return processorToken;
}
public void setProcessorToken(String processorToken) {
this.processorToken = processorToken;
}
public ProcessorTokenWebhookUpdateRequest webhook(String webhook) {
this.webhook = webhook;
return this;
}
/**
* The new webhook URL to associate with the processor token. To remove a webhook from a processor token, set to `null`.
* @return webhook
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The new webhook URL to associate with the processor token. To remove a webhook from a processor token, set to `null`.")
public String getWebhook() {
return webhook;
}
public void setWebhook(String webhook) {
this.webhook = webhook;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ProcessorTokenWebhookUpdateRequest processorTokenWebhookUpdateRequest = (ProcessorTokenWebhookUpdateRequest) o;
return Objects.equals(this.clientId, processorTokenWebhookUpdateRequest.clientId) &&
Objects.equals(this.secret, processorTokenWebhookUpdateRequest.secret) &&
Objects.equals(this.processorToken, processorTokenWebhookUpdateRequest.processorToken) &&
Objects.equals(this.webhook, processorTokenWebhookUpdateRequest.webhook);
}
@Override
public int hashCode() {
return Objects.hash(clientId, secret, processorToken, webhook);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ProcessorTokenWebhookUpdateRequest {\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" processorToken: ").append(toIndentedString(processorToken)).append("\n");
sb.append(" webhook: ").append(toIndentedString(webhook)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferDiligenceDocumentUploadRequest.java | src/main/java/com/plaid/client/model/TransferDiligenceDocumentUploadRequest.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.TransferDocumentPurpose;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.File;
import java.io.IOException;
/**
* Defines the request schema for `/transfer/diligence/document/upload`
*/
@ApiModel(description = "Defines the request schema for `/transfer/diligence/document/upload`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TransferDiligenceDocumentUploadRequest {
public static final String SERIALIZED_NAME_ORIGINATOR_CLIENT_ID = "originator_client_id";
@SerializedName(SERIALIZED_NAME_ORIGINATOR_CLIENT_ID)
private String originatorClientId;
public static final String SERIALIZED_NAME_FILE = "file";
@SerializedName(SERIALIZED_NAME_FILE)
private File file;
public static final String SERIALIZED_NAME_PURPOSE = "purpose";
@SerializedName(SERIALIZED_NAME_PURPOSE)
private TransferDocumentPurpose purpose;
public TransferDiligenceDocumentUploadRequest originatorClientId(String originatorClientId) {
this.originatorClientId = originatorClientId;
return this;
}
/**
* The Client ID of the originator whose document that you want to upload.
* @return originatorClientId
**/
@ApiModelProperty(required = true, value = "The Client ID of the originator whose document that you want to upload.")
public String getOriginatorClientId() {
return originatorClientId;
}
public void setOriginatorClientId(String originatorClientId) {
this.originatorClientId = originatorClientId;
}
public TransferDiligenceDocumentUploadRequest file(File file) {
this.file = file;
return this;
}
/**
* A file to upload. The file size must be less than 20MB. Supported file extensions: .pdf.
* @return file
**/
@ApiModelProperty(required = true, value = "A file to upload. The file size must be less than 20MB. Supported file extensions: .pdf.")
public File getFile() {
return file;
}
public void setFile(File file) {
this.file = file;
}
public TransferDiligenceDocumentUploadRequest purpose(TransferDocumentPurpose purpose) {
this.purpose = purpose;
return this;
}
/**
* Get purpose
* @return purpose
**/
@ApiModelProperty(required = true, value = "")
public TransferDocumentPurpose getPurpose() {
return purpose;
}
public void setPurpose(TransferDocumentPurpose purpose) {
this.purpose = purpose;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransferDiligenceDocumentUploadRequest transferDiligenceDocumentUploadRequest = (TransferDiligenceDocumentUploadRequest) o;
return Objects.equals(this.originatorClientId, transferDiligenceDocumentUploadRequest.originatorClientId) &&
Objects.equals(this.file, transferDiligenceDocumentUploadRequest.file) &&
Objects.equals(this.purpose, transferDiligenceDocumentUploadRequest.purpose);
}
@Override
public int hashCode() {
return Objects.hash(originatorClientId, file, purpose);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransferDiligenceDocumentUploadRequest {\n");
sb.append(" originatorClientId: ").append(toIndentedString(originatorClientId)).append("\n");
sb.append(" file: ").append(toIndentedString(file)).append("\n");
sb.append(" purpose: ").append(toIndentedString(purpose)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ItemApplicationListResponse.java | src/main/java/com/plaid/client/model/ItemApplicationListResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.ConnectedApplication;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* Describes the connected application for a particular end user.
*/
@ApiModel(description = "Describes the connected application for a particular end user.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ItemApplicationListResponse {
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public static final String SERIALIZED_NAME_APPLICATIONS = "applications";
@SerializedName(SERIALIZED_NAME_APPLICATIONS)
private List<ConnectedApplication> applications = new ArrayList<>();
public ItemApplicationListResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public ItemApplicationListResponse applications(List<ConnectedApplication> applications) {
this.applications = applications;
return this;
}
public ItemApplicationListResponse addApplicationsItem(ConnectedApplication applicationsItem) {
this.applications.add(applicationsItem);
return this;
}
/**
* A list of connected applications.
* @return applications
**/
@ApiModelProperty(required = true, value = "A list of connected applications.")
public List<ConnectedApplication> getApplications() {
return applications;
}
public void setApplications(List<ConnectedApplication> applications) {
this.applications = applications;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ItemApplicationListResponse itemApplicationListResponse = (ItemApplicationListResponse) o;
return Objects.equals(this.requestId, itemApplicationListResponse.requestId) &&
Objects.equals(this.applications, itemApplicationListResponse.applications);
}
@Override
public int hashCode() {
return Objects.hash(requestId, applications);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ItemApplicationListResponse {\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append(" applications: ").append(toIndentedString(applications)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorTokenPermissionsGetResponse.java | src/main/java/com/plaid/client/model/ProcessorTokenPermissionsGetResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.Products;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* ProcessorTokenPermissionsGetResponse defines the response schema for `/processor/token/permissions/get`
*/
@ApiModel(description = "ProcessorTokenPermissionsGetResponse defines the response schema for `/processor/token/permissions/get`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ProcessorTokenPermissionsGetResponse {
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public static final String SERIALIZED_NAME_PRODUCTS = "products";
@SerializedName(SERIALIZED_NAME_PRODUCTS)
private List<Products> products = new ArrayList<>();
public ProcessorTokenPermissionsGetResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public ProcessorTokenPermissionsGetResponse products(List<Products> products) {
this.products = products;
return this;
}
public ProcessorTokenPermissionsGetResponse addProductsItem(Products productsItem) {
this.products.add(productsItem);
return this;
}
/**
* A list of products the processor token should have access to. An empty list means that the processor has access to all available products, including future products.
* @return products
**/
@ApiModelProperty(required = true, value = "A list of products the processor token should have access to. An empty list means that the processor has access to all available products, including future products.")
public List<Products> getProducts() {
return products;
}
public void setProducts(List<Products> products) {
this.products = products;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ProcessorTokenPermissionsGetResponse processorTokenPermissionsGetResponse = (ProcessorTokenPermissionsGetResponse) o;
return Objects.equals(this.requestId, processorTokenPermissionsGetResponse.requestId) &&
Objects.equals(this.products, processorTokenPermissionsGetResponse.products);
}
@Override
public int hashCode() {
return Objects.hash(requestId, products);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ProcessorTokenPermissionsGetResponse {\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append(" products: ").append(toIndentedString(products)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferLedgerBalance.java | src/main/java/com/plaid/client/model/TransferLedgerBalance.java | /*
* 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.680.0
*
*
* 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;
/**
* Information about the balance of the ledger held with Plaid.
*/
@ApiModel(description = "Information about the balance of the ledger held with Plaid.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TransferLedgerBalance {
public static final String SERIALIZED_NAME_AVAILABLE = "available";
@SerializedName(SERIALIZED_NAME_AVAILABLE)
private String available;
public static final String SERIALIZED_NAME_PENDING = "pending";
@SerializedName(SERIALIZED_NAME_PENDING)
private String pending;
public TransferLedgerBalance available(String available) {
this.available = available;
return this;
}
/**
* The amount of this balance available for use (decimal string with two digits of precision e.g. \"10.00\").
* @return available
**/
@ApiModelProperty(required = true, value = "The amount of this balance available for use (decimal string with two digits of precision e.g. \"10.00\").")
public String getAvailable() {
return available;
}
public void setAvailable(String available) {
this.available = available;
}
public TransferLedgerBalance pending(String pending) {
this.pending = pending;
return this;
}
/**
* The amount of pending funds that are in processing (decimal string with two digits of precision e.g. \"10.00\").
* @return pending
**/
@ApiModelProperty(required = true, value = "The amount of pending funds that are in processing (decimal string with two digits of precision e.g. \"10.00\").")
public String getPending() {
return pending;
}
public void setPending(String pending) {
this.pending = pending;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransferLedgerBalance transferLedgerBalance = (TransferLedgerBalance) o;
return Objects.equals(this.available, transferLedgerBalance.available) &&
Objects.equals(this.pending, transferLedgerBalance.pending);
}
@Override
public int hashCode() {
return Objects.hash(available, pending);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransferLedgerBalance {\n");
sb.append(" available: ").append(toIndentedString(available)).append("\n");
sb.append(" pending: ").append(toIndentedString(pending)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ConsumerReportPermissiblePurpose.java | src/main/java/com/plaid/client/model/ConsumerReportPermissiblePurpose.java | /*
* 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.680.0
*
*
* 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 io.swagger.annotations.ApiModel;
import com.google.gson.annotations.SerializedName;
import java.io.IOException;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
/**
* Describes the reason you are generating a Consumer Report for this user. `ACCOUNT_REVIEW_CREDIT`: In connection with a consumer credit transaction for the review or collection of an account pursuant to FCRA Section 604(a)(3)(A). `ACCOUNT_REVIEW_NON_CREDIT`: For a legitimate business need of the information to review a non-credit account provided primarily for personal, family, or household purposes to determine whether the consumer continues to meet the terms of the account pursuant to FCRA Section 604(a)(3)(F)(2). `EXTENSION_OF_CREDIT`: In connection with a credit transaction initiated by and involving the consumer pursuant to FCRA Section 604(a)(3)(A). `LEGITIMATE_BUSINESS_NEED_TENANT_SCREENING`: For a legitimate business need in connection with a business transaction initiated by the consumer primarily for personal, family, or household purposes in connection with a property rental assessment pursuant to FCRA Section 604(a)(3)(F)(i). `LEGITIMATE_BUSINESS_NEED_OTHER`: For a legitimate business need in connection with a business transaction made primarily for personal, family, or household initiated by the consumer pursuant to FCRA Section 604(a)(3)(F)(i). `WRITTEN_INSTRUCTION_PREQUALIFICATION`: In accordance with the written instructions of the consumer pursuant to FCRA Section 604(a)(2), to evaluate an application’s profile to make an offer to the consumer. `WRITTEN_INSTRUCTION_OTHER`: In accordance with the written instructions of the consumer pursuant to FCRA Section 604(a)(2), such as when an individual agrees to act as a guarantor or assumes personal liability for a consumer, business, or commercial loan.
*/
@JsonAdapter(ConsumerReportPermissiblePurpose.Adapter.class)
public enum ConsumerReportPermissiblePurpose {
ACCOUNT_REVIEW_CREDIT("ACCOUNT_REVIEW_CREDIT"),
ACCOUNT_REVIEW_NON_CREDIT("ACCOUNT_REVIEW_NON_CREDIT"),
EXTENSION_OF_CREDIT("EXTENSION_OF_CREDIT"),
LEGITIMATE_BUSINESS_NEED_TENANT_SCREENING("LEGITIMATE_BUSINESS_NEED_TENANT_SCREENING"),
LEGITIMATE_BUSINESS_NEED_OTHER("LEGITIMATE_BUSINESS_NEED_OTHER"),
WRITTEN_INSTRUCTION_PREQUALIFICATION("WRITTEN_INSTRUCTION_PREQUALIFICATION"),
WRITTEN_INSTRUCTION_OTHER("WRITTEN_INSTRUCTION_OTHER"),
// This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file.
// Try upgrading your client-library version.
ENUM_UNKNOWN("ENUM_UNKNOWN");
private String value;
ConsumerReportPermissiblePurpose(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static ConsumerReportPermissiblePurpose fromValue(String value) {
for (ConsumerReportPermissiblePurpose b : ConsumerReportPermissiblePurpose.values()) {
if (b.value.equals(value)) {
return b;
}
}
return ConsumerReportPermissiblePurpose.ENUM_UNKNOWN;
}
public static class Adapter extends TypeAdapter<ConsumerReportPermissiblePurpose> {
@Override
public void write(final JsonWriter jsonWriter, final ConsumerReportPermissiblePurpose enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public ConsumerReportPermissiblePurpose read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return ConsumerReportPermissiblePurpose.fromValue(value);
}
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BankInitiatedReturnRisk.java | src/main/java/com/plaid/client/model/BankInitiatedReturnRisk.java | /*
* 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.680.0
*
*
* 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;
/**
* The object contains a risk score and a risk tier that evaluate the transaction return risk because an account is overdrawn or because an ineligible account is used. Common return codes in this category include: \"R01\", \"R02\", \"R03\", \"R04\", \"R06\", \"R08\", \"R09\", \"R13\", \"R16\", \"R17\", \"R20\", \"R23\". These returns have a turnaround time of 2 banking days.
*/
@ApiModel(description = "The object contains a risk score and a risk tier that evaluate the transaction return risk because an account is overdrawn or because an ineligible account is used. Common return codes in this category include: \"R01\", \"R02\", \"R03\", \"R04\", \"R06\", \"R08\", \"R09\", \"R13\", \"R16\", \"R17\", \"R20\", \"R23\". These returns have a turnaround time of 2 banking days.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class BankInitiatedReturnRisk {
public static final String SERIALIZED_NAME_SCORE = "score";
@SerializedName(SERIALIZED_NAME_SCORE)
private Integer score;
public static final String SERIALIZED_NAME_RISK_TIER = "risk_tier";
@SerializedName(SERIALIZED_NAME_RISK_TIER)
private Integer riskTier;
public BankInitiatedReturnRisk score(Integer score) {
this.score = score;
return this;
}
/**
* A score from 1-99 that indicates the transaction return risk: a higher risk score suggests a higher return likelihood.
* minimum: 1
* maximum: 99
* @return score
**/
@ApiModelProperty(required = true, value = "A score from 1-99 that indicates the transaction return risk: a higher risk score suggests a higher return likelihood.")
public Integer getScore() {
return score;
}
public void setScore(Integer score) {
this.score = score;
}
public BankInitiatedReturnRisk riskTier(Integer riskTier) {
this.riskTier = riskTier;
return this;
}
/**
* DEPRECATED. Use Signal Rules instead to transform the `score` into a useful action. In the `bank_initiated_return_risk` object, there are eight risk tiers corresponding to the scores: 1: Predicted bank-initiated return incidence rate between 0.0% - 0.5% 2: Predicted bank-initiated return incidence rate between 0.5% - 1.5% 3: Predicted bank-initiated return incidence rate between 1.5% - 3% 4: Predicted bank-initiated return incidence rate between 3% - 5% 5: Predicted bank-initiated return incidence rate between 5% - 10% 6: Predicted bank-initiated return incidence rate between 10% - 15% 7: Predicted bank-initiated return incidence rate between 15% and 50% 8: Predicted bank-initiated return incidence rate greater than 50%
* minimum: 1
* maximum: 8
* @return riskTier
**/
@ApiModelProperty(required = true, value = "DEPRECATED. Use Signal Rules instead to transform the `score` into a useful action. In the `bank_initiated_return_risk` object, there are eight risk tiers corresponding to the scores: 1: Predicted bank-initiated return incidence rate between 0.0% - 0.5% 2: Predicted bank-initiated return incidence rate between 0.5% - 1.5% 3: Predicted bank-initiated return incidence rate between 1.5% - 3% 4: Predicted bank-initiated return incidence rate between 3% - 5% 5: Predicted bank-initiated return incidence rate between 5% - 10% 6: Predicted bank-initiated return incidence rate between 10% - 15% 7: Predicted bank-initiated return incidence rate between 15% and 50% 8: Predicted bank-initiated return incidence rate greater than 50% ")
public Integer getRiskTier() {
return riskTier;
}
public void setRiskTier(Integer riskTier) {
this.riskTier = riskTier;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BankInitiatedReturnRisk bankInitiatedReturnRisk = (BankInitiatedReturnRisk) o;
return Objects.equals(this.score, bankInitiatedReturnRisk.score) &&
Objects.equals(this.riskTier, bankInitiatedReturnRisk.riskTier);
}
@Override
public int hashCode() {
return Objects.hash(score, riskTier);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BankInitiatedReturnRisk {\n");
sb.append(" score: ").append(toIndentedString(score)).append("\n");
sb.append(" riskTier: ").append(toIndentedString(riskTier)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferRepaymentListRequest.java | src/main/java/com/plaid/client/model/TransferRepaymentListRequest.java | /*
* 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.680.0
*
*
* 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;
import java.time.OffsetDateTime;
/**
* Defines the request schema for `/transfer/repayment/list`
*/
@ApiModel(description = "Defines the request schema for `/transfer/repayment/list`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TransferRepaymentListRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
private String clientId;
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public static final String SERIALIZED_NAME_START_DATE = "start_date";
@SerializedName(SERIALIZED_NAME_START_DATE)
private OffsetDateTime startDate;
public static final String SERIALIZED_NAME_END_DATE = "end_date";
@SerializedName(SERIALIZED_NAME_END_DATE)
private OffsetDateTime endDate;
public static final String SERIALIZED_NAME_COUNT = "count";
@SerializedName(SERIALIZED_NAME_COUNT)
private Integer count = 25;
public static final String SERIALIZED_NAME_OFFSET = "offset";
@SerializedName(SERIALIZED_NAME_OFFSET)
private Integer offset = 0;
public TransferRepaymentListRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public TransferRepaymentListRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public TransferRepaymentListRequest startDate(OffsetDateTime startDate) {
this.startDate = startDate;
return this;
}
/**
* The start `created` datetime of repayments to return (RFC 3339 format).
* @return startDate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The start `created` datetime of repayments to return (RFC 3339 format).")
public OffsetDateTime getStartDate() {
return startDate;
}
public void setStartDate(OffsetDateTime startDate) {
this.startDate = startDate;
}
public TransferRepaymentListRequest endDate(OffsetDateTime endDate) {
this.endDate = endDate;
return this;
}
/**
* The end `created` datetime of repayments to return (RFC 3339 format).
* @return endDate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The end `created` datetime of repayments to return (RFC 3339 format).")
public OffsetDateTime getEndDate() {
return endDate;
}
public void setEndDate(OffsetDateTime endDate) {
this.endDate = endDate;
}
public TransferRepaymentListRequest count(Integer count) {
this.count = count;
return this;
}
/**
* The maximum number of repayments to return.
* minimum: 1
* maximum: 25
* @return count
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The maximum number of repayments to return.")
public Integer getCount() {
return count;
}
public void setCount(Integer count) {
this.count = count;
}
public TransferRepaymentListRequest offset(Integer offset) {
this.offset = offset;
return this;
}
/**
* The number of repayments to skip before returning results.
* minimum: 0
* @return offset
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The number of repayments to skip before returning results.")
public Integer getOffset() {
return offset;
}
public void setOffset(Integer offset) {
this.offset = offset;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransferRepaymentListRequest transferRepaymentListRequest = (TransferRepaymentListRequest) o;
return Objects.equals(this.clientId, transferRepaymentListRequest.clientId) &&
Objects.equals(this.secret, transferRepaymentListRequest.secret) &&
Objects.equals(this.startDate, transferRepaymentListRequest.startDate) &&
Objects.equals(this.endDate, transferRepaymentListRequest.endDate) &&
Objects.equals(this.count, transferRepaymentListRequest.count) &&
Objects.equals(this.offset, transferRepaymentListRequest.offset);
}
@Override
public int hashCode() {
return Objects.hash(clientId, secret, startDate, endDate, count, offset);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransferRepaymentListRequest {\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n");
sb.append(" endDate: ").append(toIndentedString(endDate)).append("\n");
sb.append(" count: ").append(toIndentedString(count)).append("\n");
sb.append(" offset: ").append(toIndentedString(offset)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/UserGetResponse.java | src/main/java/com/plaid/client/model/UserGetResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.ClientUserIdentity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.time.OffsetDateTime;
/**
* UserGetResponse defines the response schema for `/user/get`.
*/
@ApiModel(description = "UserGetResponse defines the response schema for `/user/get`.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class UserGetResponse {
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public static final String SERIALIZED_NAME_USER_ID = "user_id";
@SerializedName(SERIALIZED_NAME_USER_ID)
private String userId;
public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id";
@SerializedName(SERIALIZED_NAME_CLIENT_USER_ID)
private String clientUserId;
public static final String SERIALIZED_NAME_CREATED_AT = "created_at";
@SerializedName(SERIALIZED_NAME_CREATED_AT)
private OffsetDateTime createdAt;
public static final String SERIALIZED_NAME_UPDATED_AT = "updated_at";
@SerializedName(SERIALIZED_NAME_UPDATED_AT)
private OffsetDateTime updatedAt;
public static final String SERIALIZED_NAME_IDENTITY = "identity";
@SerializedName(SERIALIZED_NAME_IDENTITY)
private ClientUserIdentity identity;
public UserGetResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public UserGetResponse userId(String userId) {
this.userId = userId;
return this;
}
/**
* A unique user identifier, created by `/user/create`. Integrations that began using `/user/create` after December 10, 2025 use this field to identify a user instead of the `user_token`. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis).
* @return userId
**/
@ApiModelProperty(required = true, value = "A unique user identifier, created by `/user/create`. Integrations that began using `/user/create` after December 10, 2025 use this field to identify a user instead of the `user_token`. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis).")
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public UserGetResponse clientUserId(String clientUserId) {
this.clientUserId = clientUserId;
return this;
}
/**
* Client provided user ID.
* @return clientUserId
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Client provided user ID.")
public String getClientUserId() {
return clientUserId;
}
public void setClientUserId(String clientUserId) {
this.clientUserId = clientUserId;
}
public UserGetResponse createdAt(OffsetDateTime createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* Timestamp of user creation.
* @return createdAt
**/
@ApiModelProperty(required = true, value = "Timestamp of user creation.")
public OffsetDateTime getCreatedAt() {
return createdAt;
}
public void setCreatedAt(OffsetDateTime createdAt) {
this.createdAt = createdAt;
}
public UserGetResponse updatedAt(OffsetDateTime updatedAt) {
this.updatedAt = updatedAt;
return this;
}
/**
* Timestamp of last user update.
* @return updatedAt
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Timestamp of last user update.")
public OffsetDateTime getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(OffsetDateTime updatedAt) {
this.updatedAt = updatedAt;
}
public UserGetResponse identity(ClientUserIdentity identity) {
this.identity = identity;
return this;
}
/**
* Get identity
* @return identity
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public ClientUserIdentity getIdentity() {
return identity;
}
public void setIdentity(ClientUserIdentity identity) {
this.identity = identity;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UserGetResponse userGetResponse = (UserGetResponse) o;
return Objects.equals(this.requestId, userGetResponse.requestId) &&
Objects.equals(this.userId, userGetResponse.userId) &&
Objects.equals(this.clientUserId, userGetResponse.clientUserId) &&
Objects.equals(this.createdAt, userGetResponse.createdAt) &&
Objects.equals(this.updatedAt, userGetResponse.updatedAt) &&
Objects.equals(this.identity, userGetResponse.identity);
}
@Override
public int hashCode() {
return Objects.hash(requestId, userId, clientUserId, createdAt, updatedAt, identity);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UserGetResponse {\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append(" userId: ").append(toIndentedString(userId)).append("\n");
sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).append("\n");
sb.append(" identity: ").append(toIndentedString(identity)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PrismCashScoreVersion.java | src/main/java/com/plaid/client/model/PrismCashScoreVersion.java | /*
* 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.680.0
*
*
* 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 io.swagger.annotations.ApiModel;
import com.google.gson.annotations.SerializedName;
import java.io.IOException;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
/**
* The version of Prism CashScore. If not specified, will default to v3.
*/
@JsonAdapter(PrismCashScoreVersion.Adapter.class)
public enum PrismCashScoreVersion {
_4("4"),
_3_LITE("3_lite"),
_3("3"),
NULL("null"),
// This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file.
// Try upgrading your client-library version.
ENUM_UNKNOWN("ENUM_UNKNOWN");
private String value;
PrismCashScoreVersion(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static PrismCashScoreVersion fromValue(String value) {
for (PrismCashScoreVersion b : PrismCashScoreVersion.values()) {
if (b.value.equals(value)) {
return b;
}
}
return null; }
public static class Adapter extends TypeAdapter<PrismCashScoreVersion> {
@Override
public void write(final JsonWriter jsonWriter, final PrismCashScoreVersion enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public PrismCashScoreVersion read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return PrismCashScoreVersion.fromValue(value);
}
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/NetworkInsightsItem.java | src/main/java/com/plaid/client/model/NetworkInsightsItem.java | /*
* 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.680.0
*
*
* 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;
/**
* Contains data about the connected Item.
*/
@ApiModel(description = "Contains data about the connected Item.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class NetworkInsightsItem {
public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id";
@SerializedName(SERIALIZED_NAME_INSTITUTION_ID)
private String institutionId;
public static final String SERIALIZED_NAME_INSTITUTION_NAME = "institution_name";
@SerializedName(SERIALIZED_NAME_INSTITUTION_NAME)
private String institutionName;
public static final String SERIALIZED_NAME_ITEM_ID = "item_id";
@SerializedName(SERIALIZED_NAME_ITEM_ID)
private String itemId;
public NetworkInsightsItem institutionId(String institutionId) {
this.institutionId = institutionId;
return this;
}
/**
* The ID for the institution the user linked.
* @return institutionId
**/
@ApiModelProperty(required = true, value = "The ID for the institution the user linked.")
public String getInstitutionId() {
return institutionId;
}
public void setInstitutionId(String institutionId) {
this.institutionId = institutionId;
}
public NetworkInsightsItem institutionName(String institutionName) {
this.institutionName = institutionName;
return this;
}
/**
* The name of the institution the user linked.
* @return institutionName
**/
@ApiModelProperty(required = true, value = "The name of the institution the user linked.")
public String getInstitutionName() {
return institutionName;
}
public void setInstitutionName(String institutionName) {
this.institutionName = institutionName;
}
public NetworkInsightsItem itemId(String itemId) {
this.itemId = itemId;
return this;
}
/**
* The identifier for the Item.
* @return itemId
**/
@ApiModelProperty(required = true, value = "The identifier for the Item.")
public String getItemId() {
return itemId;
}
public void setItemId(String itemId) {
this.itemId = itemId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
NetworkInsightsItem networkInsightsItem = (NetworkInsightsItem) o;
return Objects.equals(this.institutionId, networkInsightsItem.institutionId) &&
Objects.equals(this.institutionName, networkInsightsItem.institutionName) &&
Objects.equals(this.itemId, networkInsightsItem.itemId);
}
@Override
public int hashCode() {
return Objects.hash(institutionId, institutionName, itemId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class NetworkInsightsItem {\n");
sb.append(" institutionId: ").append(toIndentedString(institutionId)).append("\n");
sb.append(" institutionName: ").append(toIndentedString(institutionName)).append("\n");
sb.append(" itemId: ").append(toIndentedString(itemId)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorSignalEvaluateResponse.java | src/main/java/com/plaid/client/model/ProcessorSignalEvaluateResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.Ruleset;
import com.plaid.client.model.SignalEvaluateCoreAttributes;
import com.plaid.client.model.SignalScores;
import com.plaid.client.model.SignalWarning;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* ProcessorSignalEvaluateResponse defines the response schema for `/processor/signal/evaluate`
*/
@ApiModel(description = "ProcessorSignalEvaluateResponse defines the response schema for `/processor/signal/evaluate`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ProcessorSignalEvaluateResponse {
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public static final String SERIALIZED_NAME_SCORES = "scores";
@SerializedName(SERIALIZED_NAME_SCORES)
private SignalScores scores;
public static final String SERIALIZED_NAME_CORE_ATTRIBUTES = "core_attributes";
@SerializedName(SERIALIZED_NAME_CORE_ATTRIBUTES)
private SignalEvaluateCoreAttributes coreAttributes;
public static final String SERIALIZED_NAME_RULESET = "ruleset";
@SerializedName(SERIALIZED_NAME_RULESET)
private Ruleset ruleset;
public static final String SERIALIZED_NAME_WARNINGS = "warnings";
@SerializedName(SERIALIZED_NAME_WARNINGS)
private List<SignalWarning> warnings = null;
public ProcessorSignalEvaluateResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public ProcessorSignalEvaluateResponse scores(SignalScores scores) {
this.scores = scores;
return this;
}
/**
* Get scores
* @return scores
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public SignalScores getScores() {
return scores;
}
public void setScores(SignalScores scores) {
this.scores = scores;
}
public ProcessorSignalEvaluateResponse coreAttributes(SignalEvaluateCoreAttributes coreAttributes) {
this.coreAttributes = coreAttributes;
return this;
}
/**
* Get coreAttributes
* @return coreAttributes
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public SignalEvaluateCoreAttributes getCoreAttributes() {
return coreAttributes;
}
public void setCoreAttributes(SignalEvaluateCoreAttributes coreAttributes) {
this.coreAttributes = coreAttributes;
}
public ProcessorSignalEvaluateResponse ruleset(Ruleset ruleset) {
this.ruleset = ruleset;
return this;
}
/**
* Get ruleset
* @return ruleset
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public Ruleset getRuleset() {
return ruleset;
}
public void setRuleset(Ruleset ruleset) {
this.ruleset = ruleset;
}
public ProcessorSignalEvaluateResponse warnings(List<SignalWarning> warnings) {
this.warnings = warnings;
return this;
}
public ProcessorSignalEvaluateResponse addWarningsItem(SignalWarning warningsItem) {
if (this.warnings == null) {
this.warnings = new ArrayList<>();
}
this.warnings.add(warningsItem);
return this;
}
/**
* If bank information was not available to be used in the Signal Transaction Scores model, this array contains warnings describing why bank data is missing. If you want to receive an API error instead of scores in the case of missing bank data, file a support ticket or contact your Plaid account manager.
* @return warnings
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "If bank information was not available to be used in the Signal Transaction Scores model, this array contains warnings describing why bank data is missing. If you want to receive an API error instead of scores in the case of missing bank data, file a support ticket or contact your Plaid account manager.")
public List<SignalWarning> getWarnings() {
return warnings;
}
public void setWarnings(List<SignalWarning> warnings) {
this.warnings = warnings;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ProcessorSignalEvaluateResponse processorSignalEvaluateResponse = (ProcessorSignalEvaluateResponse) o;
return Objects.equals(this.requestId, processorSignalEvaluateResponse.requestId) &&
Objects.equals(this.scores, processorSignalEvaluateResponse.scores) &&
Objects.equals(this.coreAttributes, processorSignalEvaluateResponse.coreAttributes) &&
Objects.equals(this.ruleset, processorSignalEvaluateResponse.ruleset) &&
Objects.equals(this.warnings, processorSignalEvaluateResponse.warnings);
}
@Override
public int hashCode() {
return Objects.hash(requestId, scores, coreAttributes, ruleset, warnings);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ProcessorSignalEvaluateResponse {\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append(" scores: ").append(toIndentedString(scores)).append("\n");
sb.append(" coreAttributes: ").append(toIndentedString(coreAttributes)).append("\n");
sb.append(" ruleset: ").append(toIndentedString(ruleset)).append("\n");
sb.append(" warnings: ").append(toIndentedString(warnings)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/Statuses.java | src/main/java/com/plaid/client/model/Statuses.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.Status;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* A collection of STATUS containers.
*/
@ApiModel(description = "A collection of STATUS containers.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class Statuses {
public static final String SERIALIZED_NAME_S_T_A_T_U_S = "STATUS";
@SerializedName(SERIALIZED_NAME_S_T_A_T_U_S)
private Status STATUS;
public Statuses STATUS(Status STATUS) {
this.STATUS = STATUS;
return this;
}
/**
* Get STATUS
* @return STATUS
**/
@ApiModelProperty(required = true, value = "")
public Status getSTATUS() {
return STATUS;
}
public void setSTATUS(Status STATUS) {
this.STATUS = STATUS;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Statuses statuses = (Statuses) o;
return Objects.equals(this.STATUS, statuses.STATUS);
}
@Override
public int hashCode() {
return Objects.hash(STATUS);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Statuses {\n");
sb.append(" STATUS: ").append(toIndentedString(STATUS)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WalletTransactionListRequest.java | src/main/java/com/plaid/client/model/WalletTransactionListRequest.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.WalletTransactionListRequestOptions;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* WalletTransactionListRequest defines the request schema for `/wallet/transaction/list`
*/
@ApiModel(description = "WalletTransactionListRequest defines the request schema for `/wallet/transaction/list`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class WalletTransactionListRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
private String clientId;
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public static final String SERIALIZED_NAME_WALLET_ID = "wallet_id";
@SerializedName(SERIALIZED_NAME_WALLET_ID)
private String walletId;
public static final String SERIALIZED_NAME_CURSOR = "cursor";
@SerializedName(SERIALIZED_NAME_CURSOR)
private String cursor;
public static final String SERIALIZED_NAME_COUNT = "count";
@SerializedName(SERIALIZED_NAME_COUNT)
private Integer count = 10;
public static final String SERIALIZED_NAME_OPTIONS = "options";
@SerializedName(SERIALIZED_NAME_OPTIONS)
private WalletTransactionListRequestOptions options;
public WalletTransactionListRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public WalletTransactionListRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public WalletTransactionListRequest walletId(String walletId) {
this.walletId = walletId;
return this;
}
/**
* The ID of the e-wallet to fetch transactions from
* @return walletId
**/
@ApiModelProperty(required = true, value = "The ID of the e-wallet to fetch transactions from")
public String getWalletId() {
return walletId;
}
public void setWalletId(String walletId) {
this.walletId = walletId;
}
public WalletTransactionListRequest cursor(String cursor) {
this.cursor = cursor;
return this;
}
/**
* A value representing the latest transaction to be included in the response. Set this from `next_cursor` received in the previous `/wallet/transaction/list` request. If provided, the response will only contain that transaction and transactions created before it. If omitted, the response will contain transactions starting from the most recent, and in descending order by the `created_at` time.
* @return cursor
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A value representing the latest transaction to be included in the response. Set this from `next_cursor` received in the previous `/wallet/transaction/list` request. If provided, the response will only contain that transaction and transactions created before it. If omitted, the response will contain transactions starting from the most recent, and in descending order by the `created_at` time.")
public String getCursor() {
return cursor;
}
public void setCursor(String cursor) {
this.cursor = cursor;
}
public WalletTransactionListRequest count(Integer count) {
this.count = count;
return this;
}
/**
* The number of transactions to fetch
* minimum: 1
* maximum: 200
* @return count
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The number of transactions to fetch")
public Integer getCount() {
return count;
}
public void setCount(Integer count) {
this.count = count;
}
public WalletTransactionListRequest options(WalletTransactionListRequestOptions options) {
this.options = options;
return this;
}
/**
* Get options
* @return options
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public WalletTransactionListRequestOptions getOptions() {
return options;
}
public void setOptions(WalletTransactionListRequestOptions options) {
this.options = options;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
WalletTransactionListRequest walletTransactionListRequest = (WalletTransactionListRequest) o;
return Objects.equals(this.clientId, walletTransactionListRequest.clientId) &&
Objects.equals(this.secret, walletTransactionListRequest.secret) &&
Objects.equals(this.walletId, walletTransactionListRequest.walletId) &&
Objects.equals(this.cursor, walletTransactionListRequest.cursor) &&
Objects.equals(this.count, walletTransactionListRequest.count) &&
Objects.equals(this.options, walletTransactionListRequest.options);
}
@Override
public int hashCode() {
return Objects.hash(clientId, secret, walletId, cursor, count, options);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class WalletTransactionListRequest {\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" walletId: ").append(toIndentedString(walletId)).append("\n");
sb.append(" cursor: ").append(toIndentedString(cursor)).append("\n");
sb.append(" count: ").append(toIndentedString(count)).append("\n");
sb.append(" options: ").append(toIndentedString(options)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ApplicationGetResponse.java | src/main/java/com/plaid/client/model/ApplicationGetResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.Application;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* ApplicationGetResponse defines the response schema for `/application/get`
*/
@ApiModel(description = "ApplicationGetResponse defines the response schema for `/application/get`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ApplicationGetResponse {
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public static final String SERIALIZED_NAME_APPLICATION = "application";
@SerializedName(SERIALIZED_NAME_APPLICATION)
private Application application;
public ApplicationGetResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public ApplicationGetResponse application(Application application) {
this.application = application;
return this;
}
/**
* Get application
* @return application
**/
@ApiModelProperty(required = true, value = "")
public Application getApplication() {
return application;
}
public void setApplication(Application application) {
this.application = application;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ApplicationGetResponse applicationGetResponse = (ApplicationGetResponse) o;
return Objects.equals(this.requestId, applicationGetResponse.requestId) &&
Objects.equals(this.application, applicationGetResponse.application);
}
@Override
public int hashCode() {
return Objects.hash(requestId, application);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ApplicationGetResponse {\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append(" application: ").append(toIndentedString(application)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorTransactionsGetResponse.java | src/main/java/com/plaid/client/model/ProcessorTransactionsGetResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.AccountBase;
import com.plaid.client.model.Transaction;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* ProcessorTransactionsGetResponse defines the response schema for `/processor/transactions/get`
*/
@ApiModel(description = "ProcessorTransactionsGetResponse defines the response schema for `/processor/transactions/get`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ProcessorTransactionsGetResponse {
public static final String SERIALIZED_NAME_ACCOUNT = "account";
@SerializedName(SERIALIZED_NAME_ACCOUNT)
private AccountBase account;
public static final String SERIALIZED_NAME_TRANSACTIONS = "transactions";
@SerializedName(SERIALIZED_NAME_TRANSACTIONS)
private List<Transaction> transactions = new ArrayList<>();
public static final String SERIALIZED_NAME_TOTAL_TRANSACTIONS = "total_transactions";
@SerializedName(SERIALIZED_NAME_TOTAL_TRANSACTIONS)
private Integer totalTransactions;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public ProcessorTransactionsGetResponse account(AccountBase account) {
this.account = account;
return this;
}
/**
* Get account
* @return account
**/
@ApiModelProperty(required = true, value = "")
public AccountBase getAccount() {
return account;
}
public void setAccount(AccountBase account) {
this.account = account;
}
public ProcessorTransactionsGetResponse transactions(List<Transaction> transactions) {
this.transactions = transactions;
return this;
}
public ProcessorTransactionsGetResponse addTransactionsItem(Transaction transactionsItem) {
this.transactions.add(transactionsItem);
return this;
}
/**
* An array containing transactions from the account. Transactions are returned in reverse chronological order, with the most recent at the beginning of the array. The maximum number of transactions returned is determined by the `count` parameter.
* @return transactions
**/
@ApiModelProperty(required = true, value = "An array containing transactions from the account. Transactions are returned in reverse chronological order, with the most recent at the beginning of the array. The maximum number of transactions returned is determined by the `count` parameter.")
public List<Transaction> getTransactions() {
return transactions;
}
public void setTransactions(List<Transaction> transactions) {
this.transactions = transactions;
}
public ProcessorTransactionsGetResponse totalTransactions(Integer totalTransactions) {
this.totalTransactions = totalTransactions;
return this;
}
/**
* The total number of transactions available within the date range specified. If `total_transactions` is larger than the size of the `transactions` array, more transactions are available and can be fetched via manipulating the `offset` parameter.
* @return totalTransactions
**/
@ApiModelProperty(required = true, value = "The total number of transactions available within the date range specified. If `total_transactions` is larger than the size of the `transactions` array, more transactions are available and can be fetched via manipulating the `offset` parameter.")
public Integer getTotalTransactions() {
return totalTransactions;
}
public void setTotalTransactions(Integer totalTransactions) {
this.totalTransactions = totalTransactions;
}
public ProcessorTransactionsGetResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ProcessorTransactionsGetResponse processorTransactionsGetResponse = (ProcessorTransactionsGetResponse) o;
return Objects.equals(this.account, processorTransactionsGetResponse.account) &&
Objects.equals(this.transactions, processorTransactionsGetResponse.transactions) &&
Objects.equals(this.totalTransactions, processorTransactionsGetResponse.totalTransactions) &&
Objects.equals(this.requestId, processorTransactionsGetResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(account, transactions, totalTransactions, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ProcessorTransactionsGetResponse {\n");
sb.append(" account: ").append(toIndentedString(account)).append("\n");
sb.append(" transactions: ").append(toIndentedString(transactions)).append("\n");
sb.append(" totalTransactions: ").append(toIndentedString(totalTransactions)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferAuthorizationDecisionRationale.java | src/main/java/com/plaid/client/model/TransferAuthorizationDecisionRationale.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.TransferAuthorizationDecisionRationaleCode;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* The rationale for Plaid's decision regarding a proposed transfer. It is always set for `declined` decisions, and may or may not be null for `approved` decisions.
*/
@ApiModel(description = "The rationale for Plaid's decision regarding a proposed transfer. It is always set for `declined` decisions, and may or may not be null for `approved` decisions.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TransferAuthorizationDecisionRationale {
public static final String SERIALIZED_NAME_CODE = "code";
@SerializedName(SERIALIZED_NAME_CODE)
private TransferAuthorizationDecisionRationaleCode code;
public static final String SERIALIZED_NAME_DESCRIPTION = "description";
@SerializedName(SERIALIZED_NAME_DESCRIPTION)
private String description;
public TransferAuthorizationDecisionRationale code(TransferAuthorizationDecisionRationaleCode code) {
this.code = code;
return this;
}
/**
* Get code
* @return code
**/
@ApiModelProperty(required = true, value = "")
public TransferAuthorizationDecisionRationaleCode getCode() {
return code;
}
public void setCode(TransferAuthorizationDecisionRationaleCode code) {
this.code = code;
}
public TransferAuthorizationDecisionRationale description(String description) {
this.description = description;
return this;
}
/**
* A human-readable description of the code associated with a transfer approval or transfer decline.
* @return description
**/
@ApiModelProperty(required = true, value = "A human-readable description of the code associated with a transfer approval or transfer decline.")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransferAuthorizationDecisionRationale transferAuthorizationDecisionRationale = (TransferAuthorizationDecisionRationale) o;
return Objects.equals(this.code, transferAuthorizationDecisionRationale.code) &&
Objects.equals(this.description, transferAuthorizationDecisionRationale.description);
}
@Override
public int hashCode() {
return Objects.hash(code, description);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransferAuthorizationDecisionRationale {\n");
sb.append(" code: ").append(toIndentedString(code)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferIntentGetResponse.java | src/main/java/com/plaid/client/model/TransferIntentGetResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.TransferIntentGet;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Defines the response schema for `/transfer/intent/get`
*/
@ApiModel(description = "Defines the response schema for `/transfer/intent/get`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TransferIntentGetResponse {
public static final String SERIALIZED_NAME_TRANSFER_INTENT = "transfer_intent";
@SerializedName(SERIALIZED_NAME_TRANSFER_INTENT)
private TransferIntentGet transferIntent;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public TransferIntentGetResponse transferIntent(TransferIntentGet transferIntent) {
this.transferIntent = transferIntent;
return this;
}
/**
* Get transferIntent
* @return transferIntent
**/
@ApiModelProperty(required = true, value = "")
public TransferIntentGet getTransferIntent() {
return transferIntent;
}
public void setTransferIntent(TransferIntentGet transferIntent) {
this.transferIntent = transferIntent;
}
public TransferIntentGetResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransferIntentGetResponse transferIntentGetResponse = (TransferIntentGetResponse) o;
return Objects.equals(this.transferIntent, transferIntentGetResponse.transferIntent) &&
Objects.equals(this.requestId, transferIntentGetResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(transferIntent, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransferIntentGetResponse {\n");
sb.append(" transferIntent: ").append(toIndentedString(transferIntent)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SandboxTransferFireWebhookResponse.java | src/main/java/com/plaid/client/model/SandboxTransferFireWebhookResponse.java | /*
* 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.680.0
*
*
* 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;
/**
* Defines the response schema for `/sandbox/transfer/fire_webhook`
*/
@ApiModel(description = "Defines the response schema for `/sandbox/transfer/fire_webhook`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class SandboxTransferFireWebhookResponse {
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public SandboxTransferFireWebhookResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SandboxTransferFireWebhookResponse sandboxTransferFireWebhookResponse = (SandboxTransferFireWebhookResponse) o;
return Objects.equals(this.requestId, sandboxTransferFireWebhookResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SandboxTransferFireWebhookResponse {\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LatestScoredEvent.java | src/main/java/com/plaid/client/model/LatestScoredEvent.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.TrustIndex;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.time.OffsetDateTime;
/**
* The latest scored event for a user.
*/
@ApiModel(description = "The latest scored event for a user.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class LatestScoredEvent {
public static final String SERIALIZED_NAME_EVENT_ID = "event_id";
@SerializedName(SERIALIZED_NAME_EVENT_ID)
private String eventId;
public static final String SERIALIZED_NAME_TIMESTAMP = "timestamp";
@SerializedName(SERIALIZED_NAME_TIMESTAMP)
private OffsetDateTime timestamp;
public static final String SERIALIZED_NAME_EVENT_TYPE = "event_type";
@SerializedName(SERIALIZED_NAME_EVENT_TYPE)
private String eventType;
public static final String SERIALIZED_NAME_TRUST_INDEX = "trust_index";
@SerializedName(SERIALIZED_NAME_TRUST_INDEX)
private TrustIndex trustIndex;
public static final String SERIALIZED_NAME_FRAUD_ATTRIBUTES = "fraud_attributes";
@SerializedName(SERIALIZED_NAME_FRAUD_ATTRIBUTES)
private Object fraudAttributes;
public LatestScoredEvent eventId(String eventId) {
this.eventId = eventId;
return this;
}
/**
* The event ID.
* @return eventId
**/
@ApiModelProperty(required = true, value = "The event ID.")
public String getEventId() {
return eventId;
}
public void setEventId(String eventId) {
this.eventId = eventId;
}
public LatestScoredEvent timestamp(OffsetDateTime timestamp) {
this.timestamp = timestamp;
return this;
}
/**
* The timestamp of the event, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format, e.g. `\"2017-09-14T14:42:19.350Z\"`
* @return timestamp
**/
@ApiModelProperty(required = true, value = "The timestamp of the event, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format, e.g. `\"2017-09-14T14:42:19.350Z\"`")
public OffsetDateTime getTimestamp() {
return timestamp;
}
public void setTimestamp(OffsetDateTime timestamp) {
this.timestamp = timestamp;
}
public LatestScoredEvent eventType(String eventType) {
this.eventType = eventType;
return this;
}
/**
* The type of event.
* @return eventType
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The type of event.")
public String getEventType() {
return eventType;
}
public void setEventType(String eventType) {
this.eventType = eventType;
}
public LatestScoredEvent trustIndex(TrustIndex trustIndex) {
this.trustIndex = trustIndex;
return this;
}
/**
* Get trustIndex
* @return trustIndex
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public TrustIndex getTrustIndex() {
return trustIndex;
}
public void setTrustIndex(TrustIndex trustIndex) {
this.trustIndex = trustIndex;
}
public LatestScoredEvent fraudAttributes(Object fraudAttributes) {
this.fraudAttributes = fraudAttributes;
return this;
}
/**
* Event fraud attributes as an arbitrary set of key-value pairs.
* @return fraudAttributes
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Event fraud attributes as an arbitrary set of key-value pairs.")
public Object getFraudAttributes() {
return fraudAttributes;
}
public void setFraudAttributes(Object fraudAttributes) {
this.fraudAttributes = fraudAttributes;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LatestScoredEvent latestScoredEvent = (LatestScoredEvent) o;
return Objects.equals(this.eventId, latestScoredEvent.eventId) &&
Objects.equals(this.timestamp, latestScoredEvent.timestamp) &&
Objects.equals(this.eventType, latestScoredEvent.eventType) &&
Objects.equals(this.trustIndex, latestScoredEvent.trustIndex) &&
Objects.equals(this.fraudAttributes, latestScoredEvent.fraudAttributes);
}
@Override
public int hashCode() {
return Objects.hash(eventId, timestamp, eventType, trustIndex, fraudAttributes);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class LatestScoredEvent {\n");
sb.append(" eventId: ").append(toIndentedString(eventId)).append("\n");
sb.append(" timestamp: ").append(toIndentedString(timestamp)).append("\n");
sb.append(" eventType: ").append(toIndentedString(eventType)).append("\n");
sb.append(" trustIndex: ").append(toIndentedString(trustIndex)).append("\n");
sb.append(" fraudAttributes: ").append(toIndentedString(fraudAttributes)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/NumbersEFTNullable.java | src/main/java/com/plaid/client/model/NumbersEFTNullable.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.NumbersEFT;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Identifying information for transferring money to or from a Canadian bank account via EFT.
*/
@ApiModel(description = "Identifying information for transferring money to or from a Canadian bank account via EFT.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class NumbersEFTNullable {
public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
private String accountId;
public static final String SERIALIZED_NAME_ACCOUNT = "account";
@SerializedName(SERIALIZED_NAME_ACCOUNT)
private String account;
public static final String SERIALIZED_NAME_INSTITUTION = "institution";
@SerializedName(SERIALIZED_NAME_INSTITUTION)
private String institution;
public static final String SERIALIZED_NAME_BRANCH = "branch";
@SerializedName(SERIALIZED_NAME_BRANCH)
private String branch;
public NumbersEFTNullable accountId(String accountId) {
this.accountId = accountId;
return this;
}
/**
* The Plaid account ID associated with the account numbers
* @return accountId
**/
@ApiModelProperty(required = true, value = "The Plaid account ID associated with the account numbers")
public String getAccountId() {
return accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public NumbersEFTNullable account(String account) {
this.account = account;
return this;
}
/**
* The EFT account number for the account
* @return account
**/
@ApiModelProperty(required = true, value = "The EFT account number for the account")
public String getAccount() {
return account;
}
public void setAccount(String account) {
this.account = account;
}
public NumbersEFTNullable institution(String institution) {
this.institution = institution;
return this;
}
/**
* The EFT institution number for the account
* @return institution
**/
@ApiModelProperty(required = true, value = "The EFT institution number for the account")
public String getInstitution() {
return institution;
}
public void setInstitution(String institution) {
this.institution = institution;
}
public NumbersEFTNullable branch(String branch) {
this.branch = branch;
return this;
}
/**
* The EFT branch number for the account
* @return branch
**/
@ApiModelProperty(required = true, value = "The EFT branch number for the account")
public String getBranch() {
return branch;
}
public void setBranch(String branch) {
this.branch = branch;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
NumbersEFTNullable numbersEFTNullable = (NumbersEFTNullable) o;
return Objects.equals(this.accountId, numbersEFTNullable.accountId) &&
Objects.equals(this.account, numbersEFTNullable.account) &&
Objects.equals(this.institution, numbersEFTNullable.institution) &&
Objects.equals(this.branch, numbersEFTNullable.branch);
}
@Override
public int hashCode() {
return Objects.hash(accountId, account, institution, branch);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class NumbersEFTNullable {\n");
sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
sb.append(" account: ").append(toIndentedString(account)).append("\n");
sb.append(" institution: ").append(toIndentedString(institution)).append("\n");
sb.append(" branch: ").append(toIndentedString(branch)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BankTransferEventListDirection.java | src/main/java/com/plaid/client/model/BankTransferEventListDirection.java | /*
* 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.680.0
*
*
* 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 io.swagger.annotations.ApiModel;
import com.google.gson.annotations.SerializedName;
import java.io.IOException;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
/**
* Indicates the direction of the transfer: `outbound`: for API-initiated transfers `inbound`: for payments received by the FBO account.
*/
@JsonAdapter(BankTransferEventListDirection.Adapter.class)
public enum BankTransferEventListDirection {
INBOUND("inbound"),
OUTBOUND("outbound"),
NULL("null"),
// This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file.
// Try upgrading your client-library version.
ENUM_UNKNOWN("ENUM_UNKNOWN");
private String value;
BankTransferEventListDirection(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static BankTransferEventListDirection fromValue(String value) {
for (BankTransferEventListDirection b : BankTransferEventListDirection.values()) {
if (b.value.equals(value)) {
return b;
}
}
return null; }
public static class Adapter extends TypeAdapter<BankTransferEventListDirection> {
@Override
public void write(final JsonWriter jsonWriter, final BankTransferEventListDirection enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public BankTransferEventListDirection read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return BankTransferEventListDirection.fromValue(value);
}
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BeaconUserRequestData.java | src/main/java/com/plaid/client/model/BeaconUserRequestData.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.BeaconUserIDNumber;
import com.plaid.client.model.BeaconUserName;
import com.plaid.client.model.BeaconUserRequestAddress;
import com.plaid.client.model.BeaconUserRequestDepositoryAccount;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.time.LocalDate;
import java.util.ArrayList;
import java.util.List;
/**
* A Beacon User's data which is used to check against duplicate records and the Beacon Fraud Network. In order to create a Beacon User, in addition to the `name`, _either_ the `date_of_birth` _or_ the `depository_accounts` field must be provided.
*/
@ApiModel(description = "A Beacon User's data which is used to check against duplicate records and the Beacon Fraud Network. In order to create a Beacon User, in addition to the `name`, _either_ the `date_of_birth` _or_ the `depository_accounts` field must be provided.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class BeaconUserRequestData {
public static final String SERIALIZED_NAME_DATE_OF_BIRTH = "date_of_birth";
@SerializedName(SERIALIZED_NAME_DATE_OF_BIRTH)
private LocalDate dateOfBirth;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private BeaconUserName name;
public static final String SERIALIZED_NAME_ADDRESS = "address";
@SerializedName(SERIALIZED_NAME_ADDRESS)
private BeaconUserRequestAddress address;
public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address";
@SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS)
private String emailAddress;
public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number";
@SerializedName(SERIALIZED_NAME_PHONE_NUMBER)
private String phoneNumber;
public static final String SERIALIZED_NAME_ID_NUMBER = "id_number";
@SerializedName(SERIALIZED_NAME_ID_NUMBER)
private BeaconUserIDNumber idNumber;
public static final String SERIALIZED_NAME_IP_ADDRESS = "ip_address";
@SerializedName(SERIALIZED_NAME_IP_ADDRESS)
private String ipAddress;
public static final String SERIALIZED_NAME_DEPOSITORY_ACCOUNTS = "depository_accounts";
@SerializedName(SERIALIZED_NAME_DEPOSITORY_ACCOUNTS)
private List<BeaconUserRequestDepositoryAccount> depositoryAccounts = null;
public BeaconUserRequestData dateOfBirth(LocalDate dateOfBirth) {
this.dateOfBirth = dateOfBirth;
return this;
}
/**
* A date in the format YYYY-MM-DD (RFC 3339 Section 5.6).
* @return dateOfBirth
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "Tue May 29 00:00:00 UTC 1990", value = "A date in the format YYYY-MM-DD (RFC 3339 Section 5.6).")
public LocalDate getDateOfBirth() {
return dateOfBirth;
}
public void setDateOfBirth(LocalDate dateOfBirth) {
this.dateOfBirth = dateOfBirth;
}
public BeaconUserRequestData name(BeaconUserName name) {
this.name = name;
return this;
}
/**
* Get name
* @return name
**/
@ApiModelProperty(required = true, value = "")
public BeaconUserName getName() {
return name;
}
public void setName(BeaconUserName name) {
this.name = name;
}
public BeaconUserRequestData address(BeaconUserRequestAddress address) {
this.address = address;
return this;
}
/**
* Get address
* @return address
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public BeaconUserRequestAddress getAddress() {
return address;
}
public void setAddress(BeaconUserRequestAddress address) {
this.address = address;
}
public BeaconUserRequestData emailAddress(String emailAddress) {
this.emailAddress = emailAddress;
return this;
}
/**
* A valid email address. Must not have leading or trailing spaces and address must be RFC compliant. For more information, see [RFC 3696](https://datatracker.ietf.org/doc/html/rfc3696).
* @return emailAddress
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "user@example.com", value = "A valid email address. Must not have leading or trailing spaces and address must be RFC compliant. For more information, see [RFC 3696](https://datatracker.ietf.org/doc/html/rfc3696).")
public String getEmailAddress() {
return emailAddress;
}
public void setEmailAddress(String emailAddress) {
this.emailAddress = emailAddress;
}
public BeaconUserRequestData phoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
return this;
}
/**
* A phone number in E.164 format.
* @return phoneNumber
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "+19876543212", value = "A phone number in E.164 format.")
public String getPhoneNumber() {
return phoneNumber;
}
public void setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
}
public BeaconUserRequestData idNumber(BeaconUserIDNumber idNumber) {
this.idNumber = idNumber;
return this;
}
/**
* Get idNumber
* @return idNumber
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public BeaconUserIDNumber getIdNumber() {
return idNumber;
}
public void setIdNumber(BeaconUserIDNumber idNumber) {
this.idNumber = idNumber;
}
public BeaconUserRequestData ipAddress(String ipAddress) {
this.ipAddress = ipAddress;
return this;
}
/**
* An IPv4 or IPV6 address.
* @return ipAddress
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "192.0.2.42", value = "An IPv4 or IPV6 address.")
public String getIpAddress() {
return ipAddress;
}
public void setIpAddress(String ipAddress) {
this.ipAddress = ipAddress;
}
public BeaconUserRequestData depositoryAccounts(List<BeaconUserRequestDepositoryAccount> depositoryAccounts) {
this.depositoryAccounts = depositoryAccounts;
return this;
}
public BeaconUserRequestData addDepositoryAccountsItem(BeaconUserRequestDepositoryAccount depositoryAccountsItem) {
if (this.depositoryAccounts == null) {
this.depositoryAccounts = new ArrayList<>();
}
this.depositoryAccounts.add(depositoryAccountsItem);
return this;
}
/**
* Provide a list of bank accounts that are associated with this Beacon User. These accounts will be scanned across the Beacon Network and used to find duplicate records. Note: These accounts will not have Bank Account Insights. To receive Bank Account Insights please supply `access_tokens`.
* @return depositoryAccounts
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Provide a list of bank accounts that are associated with this Beacon User. These accounts will be scanned across the Beacon Network and used to find duplicate records. Note: These accounts will not have Bank Account Insights. To receive Bank Account Insights please supply `access_tokens`.")
public List<BeaconUserRequestDepositoryAccount> getDepositoryAccounts() {
return depositoryAccounts;
}
public void setDepositoryAccounts(List<BeaconUserRequestDepositoryAccount> depositoryAccounts) {
this.depositoryAccounts = depositoryAccounts;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BeaconUserRequestData beaconUserRequestData = (BeaconUserRequestData) o;
return Objects.equals(this.dateOfBirth, beaconUserRequestData.dateOfBirth) &&
Objects.equals(this.name, beaconUserRequestData.name) &&
Objects.equals(this.address, beaconUserRequestData.address) &&
Objects.equals(this.emailAddress, beaconUserRequestData.emailAddress) &&
Objects.equals(this.phoneNumber, beaconUserRequestData.phoneNumber) &&
Objects.equals(this.idNumber, beaconUserRequestData.idNumber) &&
Objects.equals(this.ipAddress, beaconUserRequestData.ipAddress) &&
Objects.equals(this.depositoryAccounts, beaconUserRequestData.depositoryAccounts);
}
@Override
public int hashCode() {
return Objects.hash(dateOfBirth, name, address, emailAddress, phoneNumber, idNumber, ipAddress, depositoryAccounts);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BeaconUserRequestData {\n");
sb.append(" dateOfBirth: ").append(toIndentedString(dateOfBirth)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" address: ").append(toIndentedString(address)).append("\n");
sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n");
sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n");
sb.append(" idNumber: ").append(toIndentedString(idNumber)).append("\n");
sb.append(" ipAddress: ").append(toIndentedString(ipAddress)).append("\n");
sb.append(" depositoryAccounts: ").append(toIndentedString(depositoryAccounts)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BeaconUserUpdateRequestData.java | src/main/java/com/plaid/client/model/BeaconUserUpdateRequestData.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.BeaconUserIDNumber;
import com.plaid.client.model.BeaconUserNameNullable;
import com.plaid.client.model.BeaconUserRequestAddressNullable;
import com.plaid.client.model.BeaconUserRequestDepositoryAccount;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.time.LocalDate;
import java.util.ArrayList;
import java.util.List;
/**
* A subset of a Beacon User's data which is used to patch the existing identity data associated with a Beacon User. At least one field must be provided. If left unset or null, user data will not be patched.
*/
@ApiModel(description = "A subset of a Beacon User's data which is used to patch the existing identity data associated with a Beacon User. At least one field must be provided. If left unset or null, user data will not be patched.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class BeaconUserUpdateRequestData {
public static final String SERIALIZED_NAME_DATE_OF_BIRTH = "date_of_birth";
@SerializedName(SERIALIZED_NAME_DATE_OF_BIRTH)
private LocalDate dateOfBirth;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private BeaconUserNameNullable name;
public static final String SERIALIZED_NAME_ADDRESS = "address";
@SerializedName(SERIALIZED_NAME_ADDRESS)
private BeaconUserRequestAddressNullable address;
public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address";
@SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS)
private String emailAddress;
public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number";
@SerializedName(SERIALIZED_NAME_PHONE_NUMBER)
private String phoneNumber;
public static final String SERIALIZED_NAME_ID_NUMBER = "id_number";
@SerializedName(SERIALIZED_NAME_ID_NUMBER)
private BeaconUserIDNumber idNumber;
public static final String SERIALIZED_NAME_IP_ADDRESS = "ip_address";
@SerializedName(SERIALIZED_NAME_IP_ADDRESS)
private String ipAddress;
public static final String SERIALIZED_NAME_DEPOSITORY_ACCOUNTS = "depository_accounts";
@SerializedName(SERIALIZED_NAME_DEPOSITORY_ACCOUNTS)
private List<BeaconUserRequestDepositoryAccount> depositoryAccounts = null;
public BeaconUserUpdateRequestData dateOfBirth(LocalDate dateOfBirth) {
this.dateOfBirth = dateOfBirth;
return this;
}
/**
* A date in the format YYYY-MM-DD (RFC 3339 Section 5.6).
* @return dateOfBirth
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "Tue May 29 00:00:00 UTC 1990", value = "A date in the format YYYY-MM-DD (RFC 3339 Section 5.6).")
public LocalDate getDateOfBirth() {
return dateOfBirth;
}
public void setDateOfBirth(LocalDate dateOfBirth) {
this.dateOfBirth = dateOfBirth;
}
public BeaconUserUpdateRequestData name(BeaconUserNameNullable name) {
this.name = name;
return this;
}
/**
* Get name
* @return name
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public BeaconUserNameNullable getName() {
return name;
}
public void setName(BeaconUserNameNullable name) {
this.name = name;
}
public BeaconUserUpdateRequestData address(BeaconUserRequestAddressNullable address) {
this.address = address;
return this;
}
/**
* Get address
* @return address
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public BeaconUserRequestAddressNullable getAddress() {
return address;
}
public void setAddress(BeaconUserRequestAddressNullable address) {
this.address = address;
}
public BeaconUserUpdateRequestData emailAddress(String emailAddress) {
this.emailAddress = emailAddress;
return this;
}
/**
* A valid email address. Must not have leading or trailing spaces and address must be RFC compliant. For more information, see [RFC 3696](https://datatracker.ietf.org/doc/html/rfc3696).
* @return emailAddress
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "user@example.com", value = "A valid email address. Must not have leading or trailing spaces and address must be RFC compliant. For more information, see [RFC 3696](https://datatracker.ietf.org/doc/html/rfc3696).")
public String getEmailAddress() {
return emailAddress;
}
public void setEmailAddress(String emailAddress) {
this.emailAddress = emailAddress;
}
public BeaconUserUpdateRequestData phoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
return this;
}
/**
* A phone number in E.164 format.
* @return phoneNumber
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "+19876543212", value = "A phone number in E.164 format.")
public String getPhoneNumber() {
return phoneNumber;
}
public void setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
}
public BeaconUserUpdateRequestData idNumber(BeaconUserIDNumber idNumber) {
this.idNumber = idNumber;
return this;
}
/**
* Get idNumber
* @return idNumber
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public BeaconUserIDNumber getIdNumber() {
return idNumber;
}
public void setIdNumber(BeaconUserIDNumber idNumber) {
this.idNumber = idNumber;
}
public BeaconUserUpdateRequestData ipAddress(String ipAddress) {
this.ipAddress = ipAddress;
return this;
}
/**
* An IPv4 or IPV6 address.
* @return ipAddress
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "192.0.2.42", value = "An IPv4 or IPV6 address.")
public String getIpAddress() {
return ipAddress;
}
public void setIpAddress(String ipAddress) {
this.ipAddress = ipAddress;
}
public BeaconUserUpdateRequestData depositoryAccounts(List<BeaconUserRequestDepositoryAccount> depositoryAccounts) {
this.depositoryAccounts = depositoryAccounts;
return this;
}
public BeaconUserUpdateRequestData addDepositoryAccountsItem(BeaconUserRequestDepositoryAccount depositoryAccountsItem) {
if (this.depositoryAccounts == null) {
this.depositoryAccounts = new ArrayList<>();
}
this.depositoryAccounts.add(depositoryAccountsItem);
return this;
}
/**
* Get depositoryAccounts
* @return depositoryAccounts
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public List<BeaconUserRequestDepositoryAccount> getDepositoryAccounts() {
return depositoryAccounts;
}
public void setDepositoryAccounts(List<BeaconUserRequestDepositoryAccount> depositoryAccounts) {
this.depositoryAccounts = depositoryAccounts;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BeaconUserUpdateRequestData beaconUserUpdateRequestData = (BeaconUserUpdateRequestData) o;
return Objects.equals(this.dateOfBirth, beaconUserUpdateRequestData.dateOfBirth) &&
Objects.equals(this.name, beaconUserUpdateRequestData.name) &&
Objects.equals(this.address, beaconUserUpdateRequestData.address) &&
Objects.equals(this.emailAddress, beaconUserUpdateRequestData.emailAddress) &&
Objects.equals(this.phoneNumber, beaconUserUpdateRequestData.phoneNumber) &&
Objects.equals(this.idNumber, beaconUserUpdateRequestData.idNumber) &&
Objects.equals(this.ipAddress, beaconUserUpdateRequestData.ipAddress) &&
Objects.equals(this.depositoryAccounts, beaconUserUpdateRequestData.depositoryAccounts);
}
@Override
public int hashCode() {
return Objects.hash(dateOfBirth, name, address, emailAddress, phoneNumber, idNumber, ipAddress, depositoryAccounts);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BeaconUserUpdateRequestData {\n");
sb.append(" dateOfBirth: ").append(toIndentedString(dateOfBirth)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" address: ").append(toIndentedString(address)).append("\n");
sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n");
sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n");
sb.append(" idNumber: ").append(toIndentedString(idNumber)).append("\n");
sb.append(" ipAddress: ").append(toIndentedString(ipAddress)).append("\n");
sb.append(" depositoryAccounts: ").append(toIndentedString(depositoryAccounts)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraCheckReportVerificationGetRequest.java | src/main/java/com/plaid/client/model/CraCheckReportVerificationGetRequest.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.CraCheckReportVerificationGetEmploymentRefreshOptions;
import com.plaid.client.model.CraCheckReportVerificationGetReportType;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* CraCheckReportVerificationGetRequest defines the request schema for `/cra/check_report/verification/get`.
*/
@ApiModel(description = "CraCheckReportVerificationGetRequest defines the request schema for `/cra/check_report/verification/get`.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CraCheckReportVerificationGetRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
private String clientId;
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public static final String SERIALIZED_NAME_USER_ID = "user_id";
@SerializedName(SERIALIZED_NAME_USER_ID)
private String userId;
public static final String SERIALIZED_NAME_REPORTS_REQUESTED = "reports_requested";
@SerializedName(SERIALIZED_NAME_REPORTS_REQUESTED)
private List<CraCheckReportVerificationGetReportType> reportsRequested = new ArrayList<>();
public static final String SERIALIZED_NAME_EMPLOYMENT_REFRESH_OPTIONS = "employment_refresh_options";
@SerializedName(SERIALIZED_NAME_EMPLOYMENT_REFRESH_OPTIONS)
private CraCheckReportVerificationGetEmploymentRefreshOptions employmentRefreshOptions;
public static final String SERIALIZED_NAME_USER_TOKEN = "user_token";
@SerializedName(SERIALIZED_NAME_USER_TOKEN)
private String userToken;
public CraCheckReportVerificationGetRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public CraCheckReportVerificationGetRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public CraCheckReportVerificationGetRequest userId(String userId) {
this.userId = userId;
return this;
}
/**
* A unique user identifier, created by `/user/create`. Integrations that began using `/user/create` after December 10, 2025 use this field to identify a user instead of the `user_token`. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis).
* @return userId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A unique user identifier, created by `/user/create`. Integrations that began using `/user/create` after December 10, 2025 use this field to identify a user instead of the `user_token`. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis).")
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public CraCheckReportVerificationGetRequest reportsRequested(List<CraCheckReportVerificationGetReportType> reportsRequested) {
this.reportsRequested = reportsRequested;
return this;
}
public CraCheckReportVerificationGetRequest addReportsRequestedItem(CraCheckReportVerificationGetReportType reportsRequestedItem) {
this.reportsRequested.add(reportsRequestedItem);
return this;
}
/**
* Specifies which types of verification reports are expected in the response
* @return reportsRequested
**/
@ApiModelProperty(required = true, value = "Specifies which types of verification reports are expected in the response")
public List<CraCheckReportVerificationGetReportType> getReportsRequested() {
return reportsRequested;
}
public void setReportsRequested(List<CraCheckReportVerificationGetReportType> reportsRequested) {
this.reportsRequested = reportsRequested;
}
public CraCheckReportVerificationGetRequest employmentRefreshOptions(CraCheckReportVerificationGetEmploymentRefreshOptions employmentRefreshOptions) {
this.employmentRefreshOptions = employmentRefreshOptions;
return this;
}
/**
* Get employmentRefreshOptions
* @return employmentRefreshOptions
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public CraCheckReportVerificationGetEmploymentRefreshOptions getEmploymentRefreshOptions() {
return employmentRefreshOptions;
}
public void setEmploymentRefreshOptions(CraCheckReportVerificationGetEmploymentRefreshOptions employmentRefreshOptions) {
this.employmentRefreshOptions = employmentRefreshOptions;
}
public CraCheckReportVerificationGetRequest userToken(String userToken) {
this.userToken = userToken;
return this;
}
/**
* The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the `user_token` field. All other customers should use the `user_id` instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis).
* @return userToken
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the `user_token` field. All other customers should use the `user_id` instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis).")
public String getUserToken() {
return userToken;
}
public void setUserToken(String userToken) {
this.userToken = userToken;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CraCheckReportVerificationGetRequest craCheckReportVerificationGetRequest = (CraCheckReportVerificationGetRequest) o;
return Objects.equals(this.clientId, craCheckReportVerificationGetRequest.clientId) &&
Objects.equals(this.secret, craCheckReportVerificationGetRequest.secret) &&
Objects.equals(this.userId, craCheckReportVerificationGetRequest.userId) &&
Objects.equals(this.reportsRequested, craCheckReportVerificationGetRequest.reportsRequested) &&
Objects.equals(this.employmentRefreshOptions, craCheckReportVerificationGetRequest.employmentRefreshOptions) &&
Objects.equals(this.userToken, craCheckReportVerificationGetRequest.userToken);
}
@Override
public int hashCode() {
return Objects.hash(clientId, secret, userId, reportsRequested, employmentRefreshOptions, userToken);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CraCheckReportVerificationGetRequest {\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" userId: ").append(toIndentedString(userId)).append("\n");
sb.append(" reportsRequested: ").append(toIndentedString(reportsRequested)).append("\n");
sb.append(" employmentRefreshOptions: ").append(toIndentedString(employmentRefreshOptions)).append("\n");
sb.append(" userToken: ").append(toIndentedString(userToken)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferGetRequest.java | src/main/java/com/plaid/client/model/TransferGetRequest.java | /*
* 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.680.0
*
*
* 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;
/**
* Defines the request schema for `/transfer/get`
*/
@ApiModel(description = "Defines the request schema for `/transfer/get`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TransferGetRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
private String clientId;
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public static final String SERIALIZED_NAME_TRANSFER_ID = "transfer_id";
@SerializedName(SERIALIZED_NAME_TRANSFER_ID)
private String transferId;
public static final String SERIALIZED_NAME_AUTHORIZATION_ID = "authorization_id";
@SerializedName(SERIALIZED_NAME_AUTHORIZATION_ID)
private String authorizationId;
public static final String SERIALIZED_NAME_ORIGINATOR_CLIENT_ID = "originator_client_id";
@SerializedName(SERIALIZED_NAME_ORIGINATOR_CLIENT_ID)
private String originatorClientId;
public TransferGetRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public TransferGetRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public TransferGetRequest transferId(String transferId) {
this.transferId = transferId;
return this;
}
/**
* Plaid’s unique identifier for a transfer.
* @return transferId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Plaid’s unique identifier for a transfer.")
public String getTransferId() {
return transferId;
}
public void setTransferId(String transferId) {
this.transferId = transferId;
}
public TransferGetRequest authorizationId(String authorizationId) {
this.authorizationId = authorizationId;
return this;
}
/**
* Plaid’s unique identifier for a transfer authorization.
* @return authorizationId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Plaid’s unique identifier for a transfer authorization.")
public String getAuthorizationId() {
return authorizationId;
}
public void setAuthorizationId(String authorizationId) {
this.authorizationId = authorizationId;
}
public TransferGetRequest originatorClientId(String originatorClientId) {
this.originatorClientId = originatorClientId;
return this;
}
/**
* The Plaid client ID of the transfer originator. Should only be present if `client_id` is a third-party sender (TPS).
* @return originatorClientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The Plaid client ID of the transfer originator. Should only be present if `client_id` is a third-party sender (TPS).")
public String getOriginatorClientId() {
return originatorClientId;
}
public void setOriginatorClientId(String originatorClientId) {
this.originatorClientId = originatorClientId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransferGetRequest transferGetRequest = (TransferGetRequest) o;
return Objects.equals(this.clientId, transferGetRequest.clientId) &&
Objects.equals(this.secret, transferGetRequest.secret) &&
Objects.equals(this.transferId, transferGetRequest.transferId) &&
Objects.equals(this.authorizationId, transferGetRequest.authorizationId) &&
Objects.equals(this.originatorClientId, transferGetRequest.originatorClientId);
}
@Override
public int hashCode() {
return Objects.hash(clientId, secret, transferId, authorizationId, originatorClientId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransferGetRequest {\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" transferId: ").append(toIndentedString(transferId)).append("\n");
sb.append(" authorizationId: ").append(toIndentedString(authorizationId)).append("\n");
sb.append(" originatorClientId: ").append(toIndentedString(originatorClientId)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IdentityDocumentUploadRiskSignal.java | src/main/java/com/plaid/client/model/IdentityDocumentUploadRiskSignal.java | /*
* 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.680.0
*
*
* 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;
/**
* Risk signals tied to the document
*/
@ApiModel(description = "Risk signals tied to the document")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class IdentityDocumentUploadRiskSignal {
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
private String type;
public static final String SERIALIZED_NAME_HAS_FRAUD_RISK = "has_fraud_risk";
@SerializedName(SERIALIZED_NAME_HAS_FRAUD_RISK)
private Boolean hasFraudRisk;
public static final String SERIALIZED_NAME_SIGNAL_DESCRIPTION = "signal_description";
@SerializedName(SERIALIZED_NAME_SIGNAL_DESCRIPTION)
private String signalDescription;
public static final String SERIALIZED_NAME_PAGE_NUMBER = "page_number";
@SerializedName(SERIALIZED_NAME_PAGE_NUMBER)
private Integer pageNumber;
public IdentityDocumentUploadRiskSignal type(String type) {
this.type = type;
return this;
}
/**
* The type of risk found.
* @return type
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The type of risk found.")
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public IdentityDocumentUploadRiskSignal hasFraudRisk(Boolean hasFraudRisk) {
this.hasFraudRisk = hasFraudRisk;
return this;
}
/**
* Indicates whether fraud risk was detected on the field.
* @return hasFraudRisk
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Indicates whether fraud risk was detected on the field.")
public Boolean getHasFraudRisk() {
return hasFraudRisk;
}
public void setHasFraudRisk(Boolean hasFraudRisk) {
this.hasFraudRisk = hasFraudRisk;
}
public IdentityDocumentUploadRiskSignal signalDescription(String signalDescription) {
this.signalDescription = signalDescription;
return this;
}
/**
* A human-readable explanation providing more detail about the specific risk signal.
* @return signalDescription
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A human-readable explanation providing more detail about the specific risk signal.")
public String getSignalDescription() {
return signalDescription;
}
public void setSignalDescription(String signalDescription) {
this.signalDescription = signalDescription;
}
public IdentityDocumentUploadRiskSignal pageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* The relevant page associated with the risk signal. If the risk signal is not associated with a specific page, the value will be 0.
* @return pageNumber
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The relevant page associated with the risk signal. If the risk signal is not associated with a specific page, the value will be 0.")
public Integer getPageNumber() {
return pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
IdentityDocumentUploadRiskSignal identityDocumentUploadRiskSignal = (IdentityDocumentUploadRiskSignal) o;
return Objects.equals(this.type, identityDocumentUploadRiskSignal.type) &&
Objects.equals(this.hasFraudRisk, identityDocumentUploadRiskSignal.hasFraudRisk) &&
Objects.equals(this.signalDescription, identityDocumentUploadRiskSignal.signalDescription) &&
Objects.equals(this.pageNumber, identityDocumentUploadRiskSignal.pageNumber);
}
@Override
public int hashCode() {
return Objects.hash(type, hasFraudRisk, signalDescription, pageNumber);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class IdentityDocumentUploadRiskSignal {\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" hasFraudRisk: ").append(toIndentedString(hasFraudRisk)).append("\n");
sb.append(" signalDescription: ").append(toIndentedString(signalDescription)).append("\n");
sb.append(" pageNumber: ").append(toIndentedString(pageNumber)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/StudentLoanRepaymentModel.java | src/main/java/com/plaid/client/model/StudentLoanRepaymentModel.java | /*
* 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.680.0
*
*
* 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;
import java.math.BigDecimal;
/**
* Student loan repayment information used to configure Sandbox test data for the Liabilities product
*/
@ApiModel(description = "Student loan repayment information used to configure Sandbox test data for the Liabilities product")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class StudentLoanRepaymentModel {
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
private String type;
public static final String SERIALIZED_NAME_NON_REPAYMENT_MONTHS = "non_repayment_months";
@SerializedName(SERIALIZED_NAME_NON_REPAYMENT_MONTHS)
private Double nonRepaymentMonths;
public static final String SERIALIZED_NAME_REPAYMENT_MONTHS = "repayment_months";
@SerializedName(SERIALIZED_NAME_REPAYMENT_MONTHS)
private Double repaymentMonths;
public StudentLoanRepaymentModel type(String type) {
this.type = type;
return this;
}
/**
* The only currently supported value for this field is `standard`.
* @return type
**/
@ApiModelProperty(required = true, value = "The only currently supported value for this field is `standard`.")
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public StudentLoanRepaymentModel nonRepaymentMonths(Double nonRepaymentMonths) {
this.nonRepaymentMonths = nonRepaymentMonths;
return this;
}
/**
* Configures the number of months before repayment starts.
* @return nonRepaymentMonths
**/
@ApiModelProperty(required = true, value = "Configures the number of months before repayment starts.")
public Double getNonRepaymentMonths() {
return nonRepaymentMonths;
}
public void setNonRepaymentMonths(Double nonRepaymentMonths) {
this.nonRepaymentMonths = nonRepaymentMonths;
}
public StudentLoanRepaymentModel repaymentMonths(Double repaymentMonths) {
this.repaymentMonths = repaymentMonths;
return this;
}
/**
* Configures the number of months of repayments before the loan is paid off.
* @return repaymentMonths
**/
@ApiModelProperty(required = true, value = "Configures the number of months of repayments before the loan is paid off.")
public Double getRepaymentMonths() {
return repaymentMonths;
}
public void setRepaymentMonths(Double repaymentMonths) {
this.repaymentMonths = repaymentMonths;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
StudentLoanRepaymentModel studentLoanRepaymentModel = (StudentLoanRepaymentModel) o;
return Objects.equals(this.type, studentLoanRepaymentModel.type) &&
Objects.equals(this.nonRepaymentMonths, studentLoanRepaymentModel.nonRepaymentMonths) &&
Objects.equals(this.repaymentMonths, studentLoanRepaymentModel.repaymentMonths);
}
@Override
public int hashCode() {
return Objects.hash(type, nonRepaymentMonths, repaymentMonths);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class StudentLoanRepaymentModel {\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" nonRepaymentMonths: ").append(toIndentedString(nonRepaymentMonths)).append("\n");
sb.append(" repaymentMonths: ").append(toIndentedString(repaymentMonths)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraLoanClosedStatus.java | src/main/java/com/plaid/client/model/CraLoanClosedStatus.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.CraLoanStatus;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.time.LocalDate;
/**
* Contains the status and date information of the loan when unregistering.
*/
@ApiModel(description = "Contains the status and date information of the loan when unregistering.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CraLoanClosedStatus {
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private CraLoanStatus status;
public static final String SERIALIZED_NAME_DATE = "date";
@SerializedName(SERIALIZED_NAME_DATE)
private LocalDate date;
public CraLoanClosedStatus status(CraLoanStatus status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@ApiModelProperty(required = true, value = "")
public CraLoanStatus getStatus() {
return status;
}
public void setStatus(CraLoanStatus status) {
this.status = status;
}
public CraLoanClosedStatus date(LocalDate date) {
this.date = date;
return this;
}
/**
* The effective date for the status of the loan. The date should be in ISO 8601 format (YYYY-MM-DD).
* @return date
**/
@ApiModelProperty(required = true, value = "The effective date for the status of the loan. The date should be in ISO 8601 format (YYYY-MM-DD).")
public LocalDate getDate() {
return date;
}
public void setDate(LocalDate date) {
this.date = date;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CraLoanClosedStatus craLoanClosedStatus = (CraLoanClosedStatus) o;
return Objects.equals(this.status, craLoanClosedStatus.status) &&
Objects.equals(this.date, craLoanClosedStatus.date);
}
@Override
public int hashCode() {
return Objects.hash(status, date);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CraLoanClosedStatus {\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" date: ").append(toIndentedString(date)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IssuesSubscribeRequest.java | src/main/java/com/plaid/client/model/IssuesSubscribeRequest.java | /*
* 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.680.0
*
*
* 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;
/**
* IssuesSubscribeRequest defines the request schema for `/issues/subscribe`.
*/
@ApiModel(description = "IssuesSubscribeRequest defines the request schema for `/issues/subscribe`.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class IssuesSubscribeRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
private String clientId;
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public static final String SERIALIZED_NAME_ISSUE_ID = "issue_id";
@SerializedName(SERIALIZED_NAME_ISSUE_ID)
private String issueId;
public static final String SERIALIZED_NAME_WEBHOOK = "webhook";
@SerializedName(SERIALIZED_NAME_WEBHOOK)
private String webhook;
public IssuesSubscribeRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public IssuesSubscribeRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public IssuesSubscribeRequest issueId(String issueId) {
this.issueId = issueId;
return this;
}
/**
* The unique identifier of the issue to subscribe to.
* @return issueId
**/
@ApiModelProperty(required = true, value = "The unique identifier of the issue to subscribe to.")
public String getIssueId() {
return issueId;
}
public void setIssueId(String issueId) {
this.issueId = issueId;
}
public IssuesSubscribeRequest webhook(String webhook) {
this.webhook = webhook;
return this;
}
/**
* The webhook URL where notifications should be sent when the issue status changes.
* @return webhook
**/
@ApiModelProperty(required = true, value = "The webhook URL where notifications should be sent when the issue status changes.")
public String getWebhook() {
return webhook;
}
public void setWebhook(String webhook) {
this.webhook = webhook;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
IssuesSubscribeRequest issuesSubscribeRequest = (IssuesSubscribeRequest) o;
return Objects.equals(this.clientId, issuesSubscribeRequest.clientId) &&
Objects.equals(this.secret, issuesSubscribeRequest.secret) &&
Objects.equals(this.issueId, issuesSubscribeRequest.issueId) &&
Objects.equals(this.webhook, issuesSubscribeRequest.webhook);
}
@Override
public int hashCode() {
return Objects.hash(clientId, secret, issueId, webhook);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class IssuesSubscribeRequest {\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" issueId: ").append(toIndentedString(issueId)).append("\n");
sb.append(" webhook: ").append(toIndentedString(webhook)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/UserItemsGetResponse.java | src/main/java/com/plaid/client/model/UserItemsGetResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.Item;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* UserItemsGetResponse defines the response schema for `/user/items/get`
*/
@ApiModel(description = "UserItemsGetResponse defines the response schema for `/user/items/get`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class UserItemsGetResponse {
public static final String SERIALIZED_NAME_ITEMS = "items";
@SerializedName(SERIALIZED_NAME_ITEMS)
private List<Item> items = new ArrayList<>();
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public UserItemsGetResponse items(List<Item> items) {
this.items = items;
return this;
}
public UserItemsGetResponse addItemsItem(Item itemsItem) {
this.items.add(itemsItem);
return this;
}
/**
* Get items
* @return items
**/
@ApiModelProperty(required = true, value = "")
public List<Item> getItems() {
return items;
}
public void setItems(List<Item> items) {
this.items = items;
}
public UserItemsGetResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UserItemsGetResponse userItemsGetResponse = (UserItemsGetResponse) o;
return Objects.equals(this.items, userItemsGetResponse.items) &&
Objects.equals(this.requestId, userItemsGetResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(items, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UserItemsGetResponse {\n");
sb.append(" items: ").append(toIndentedString(items)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditFreddieMacService.java | src/main/java/com/plaid/client/model/CreditFreddieMacService.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.CreditFreddieMacVerificationOfAsset;
import com.plaid.client.model.Statuses;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* A collection of details related to a fulfillment service or product in terms of request, process and result.
*/
@ApiModel(description = "A collection of details related to a fulfillment service or product in terms of request, process and result.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CreditFreddieMacService {
public static final String SERIALIZED_NAME_V_E_R_I_F_I_C_A_T_I_O_N_O_F_A_S_S_E_T = "VERIFICATION_OF_ASSET";
@SerializedName(SERIALIZED_NAME_V_E_R_I_F_I_C_A_T_I_O_N_O_F_A_S_S_E_T)
private List<CreditFreddieMacVerificationOfAsset> VERIFICATION_OF_ASSET = new ArrayList<>();
public static final String SERIALIZED_NAME_S_T_A_T_U_S_E_S = "STATUSES";
@SerializedName(SERIALIZED_NAME_S_T_A_T_U_S_E_S)
private Statuses STATUSES;
public CreditFreddieMacService VERIFICATION_OF_ASSET(List<CreditFreddieMacVerificationOfAsset> VERIFICATION_OF_ASSET) {
this.VERIFICATION_OF_ASSET = VERIFICATION_OF_ASSET;
return this;
}
public CreditFreddieMacService addVERIFICATIONOFASSETItem(CreditFreddieMacVerificationOfAsset VERIFICATION_OF_ASSETItem) {
this.VERIFICATION_OF_ASSET.add(VERIFICATION_OF_ASSETItem);
return this;
}
/**
* Get VERIFICATION_OF_ASSET
* @return VERIFICATION_OF_ASSET
**/
@ApiModelProperty(required = true, value = "")
public List<CreditFreddieMacVerificationOfAsset> getVERIFICATIONOFASSET() {
return VERIFICATION_OF_ASSET;
}
public void setVERIFICATIONOFASSET(List<CreditFreddieMacVerificationOfAsset> VERIFICATION_OF_ASSET) {
this.VERIFICATION_OF_ASSET = VERIFICATION_OF_ASSET;
}
public CreditFreddieMacService STATUSES(Statuses STATUSES) {
this.STATUSES = STATUSES;
return this;
}
/**
* Get STATUSES
* @return STATUSES
**/
@ApiModelProperty(required = true, value = "")
public Statuses getSTATUSES() {
return STATUSES;
}
public void setSTATUSES(Statuses STATUSES) {
this.STATUSES = STATUSES;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreditFreddieMacService creditFreddieMacService = (CreditFreddieMacService) o;
return Objects.equals(this.VERIFICATION_OF_ASSET, creditFreddieMacService.VERIFICATION_OF_ASSET) &&
Objects.equals(this.STATUSES, creditFreddieMacService.STATUSES);
}
@Override
public int hashCode() {
return Objects.hash(VERIFICATION_OF_ASSET, STATUSES);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreditFreddieMacService {\n");
sb.append(" VERIFICATION_OF_ASSET: ").append(toIndentedString(VERIFICATION_OF_ASSET)).append("\n");
sb.append(" STATUSES: ").append(toIndentedString(STATUSES)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ItemConsentedDataScope.java | src/main/java/com/plaid/client/model/ItemConsentedDataScope.java | /*
* 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.680.0
*
*
* 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 io.swagger.annotations.ApiModel;
import com.google.gson.annotations.SerializedName;
import java.io.IOException;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
/**
* A data scope for the products that a user can consent to in [Data Transparency Messaging](https://plaid.com/docs/link/data-transparency-messaging-migration-guide)
*/
@JsonAdapter(ItemConsentedDataScope.Adapter.class)
public enum ItemConsentedDataScope {
ACCOUNT_BALANCE_INFO("account_balance_info"),
CONTACT_INFO("contact_info"),
ACCOUNT_ROUTING_NUMBER("account_routing_number"),
TRANSACTIONS("transactions"),
CREDIT_LOAN_INFO("credit_loan_info"),
INVESTMENTS("investments"),
PAYROLL_INFO("payroll_info"),
INCOME_VERIFICATION_PAYSTUBS_INFO("income_verification_paystubs_info"),
INCOME_VERIFICATION_W2S_INFO("income_verification_w2s_info"),
INCOME_VERIFICATION_BANK_STATEMENTS("income_verification_bank_statements"),
INCOME_VERIFICATION_EMPLOYMENT_INFO("income_verification_employment_info"),
BANK_STATEMENTS("bank_statements"),
RISK_INFO("risk_info"),
NETWORK_INSIGHTS_LITE("network_insights_lite"),
FRAUD_INFO("fraud_info"),
// This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file.
// Try upgrading your client-library version.
ENUM_UNKNOWN("ENUM_UNKNOWN");
private String value;
ItemConsentedDataScope(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static ItemConsentedDataScope fromValue(String value) {
for (ItemConsentedDataScope b : ItemConsentedDataScope.values()) {
if (b.value.equals(value)) {
return b;
}
}
return ItemConsentedDataScope.ENUM_UNKNOWN;
}
public static class Adapter extends TypeAdapter<ItemConsentedDataScope> {
@Override
public void write(final JsonWriter jsonWriter, final ItemConsentedDataScope enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public ItemConsentedDataScope read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return ItemConsentedDataScope.fromValue(value);
}
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SandboxTransferSweepSimulateRequest.java | src/main/java/com/plaid/client/model/SandboxTransferSweepSimulateRequest.java | /*
* 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.680.0
*
*
* 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;
/**
* Defines the request schema for `/sandbox/transfer/sweep/simulate`
*/
@ApiModel(description = "Defines the request schema for `/sandbox/transfer/sweep/simulate`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class SandboxTransferSweepSimulateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
private String clientId;
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public static final String SERIALIZED_NAME_TEST_CLOCK_ID = "test_clock_id";
@SerializedName(SERIALIZED_NAME_TEST_CLOCK_ID)
private String testClockId;
public static final String SERIALIZED_NAME_WEBHOOK = "webhook";
@SerializedName(SERIALIZED_NAME_WEBHOOK)
private String webhook;
public SandboxTransferSweepSimulateRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public SandboxTransferSweepSimulateRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public SandboxTransferSweepSimulateRequest testClockId(String testClockId) {
this.testClockId = testClockId;
return this;
}
/**
* Plaid’s unique identifier for a test clock. If provided, the sweep to be simulated is created on the day of the `virtual_time` on the `test_clock`. If the date of `virtual_time` is on weekend or a federal holiday, the next available banking day is used.
* @return testClockId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Plaid’s unique identifier for a test clock. If provided, the sweep to be simulated is created on the day of the `virtual_time` on the `test_clock`. If the date of `virtual_time` is on weekend or a federal holiday, the next available banking day is used.")
public String getTestClockId() {
return testClockId;
}
public void setTestClockId(String testClockId) {
this.testClockId = testClockId;
}
public SandboxTransferSweepSimulateRequest webhook(String webhook) {
this.webhook = webhook;
return this;
}
/**
* The webhook URL to which a `TRANSFER_EVENTS_UPDATE` webhook should be sent.
* @return webhook
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The webhook URL to which a `TRANSFER_EVENTS_UPDATE` webhook should be sent.")
public String getWebhook() {
return webhook;
}
public void setWebhook(String webhook) {
this.webhook = webhook;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SandboxTransferSweepSimulateRequest sandboxTransferSweepSimulateRequest = (SandboxTransferSweepSimulateRequest) o;
return Objects.equals(this.clientId, sandboxTransferSweepSimulateRequest.clientId) &&
Objects.equals(this.secret, sandboxTransferSweepSimulateRequest.secret) &&
Objects.equals(this.testClockId, sandboxTransferSweepSimulateRequest.testClockId) &&
Objects.equals(this.webhook, sandboxTransferSweepSimulateRequest.webhook);
}
@Override
public int hashCode() {
return Objects.hash(clientId, secret, testClockId, webhook);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SandboxTransferSweepSimulateRequest {\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" testClockId: ").append(toIndentedString(testClockId)).append("\n");
sb.append(" webhook: ").append(toIndentedString(webhook)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferFundingAccountWithDisplayName.java | src/main/java/com/plaid/client/model/TransferFundingAccountWithDisplayName.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.TransferFundingAccount;
import com.plaid.client.model.TransferFundingAccountWithDisplayNameAllOf;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* The originator's funding account, linked with Plaid Link or `/transfer/migrate_account`.
*/
@ApiModel(description = "The originator's funding account, linked with Plaid Link or `/transfer/migrate_account`.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TransferFundingAccountWithDisplayName {
public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token";
@SerializedName(SERIALIZED_NAME_ACCESS_TOKEN)
private String accessToken;
public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
private String accountId;
public static final String SERIALIZED_NAME_DISPLAY_NAME = "display_name";
@SerializedName(SERIALIZED_NAME_DISPLAY_NAME)
private String displayName;
public TransferFundingAccountWithDisplayName accessToken(String accessToken) {
this.accessToken = accessToken;
return this;
}
/**
* The access token associated with the Item data is being requested for.
* @return accessToken
**/
@ApiModelProperty(required = true, value = "The access token associated with the Item data is being requested for.")
public String getAccessToken() {
return accessToken;
}
public void setAccessToken(String accessToken) {
this.accessToken = accessToken;
}
public TransferFundingAccountWithDisplayName accountId(String accountId) {
this.accountId = accountId;
return this;
}
/**
* The Plaid `account_id` for the newly created Item.
* @return accountId
**/
@ApiModelProperty(required = true, value = "The Plaid `account_id` for the newly created Item.")
public String getAccountId() {
return accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public TransferFundingAccountWithDisplayName displayName(String displayName) {
this.displayName = displayName;
return this;
}
/**
* The name for the funding account that is displayed in the Plaid dashboard.
* @return displayName
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The name for the funding account that is displayed in the Plaid dashboard.")
public String getDisplayName() {
return displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransferFundingAccountWithDisplayName transferFundingAccountWithDisplayName = (TransferFundingAccountWithDisplayName) o;
return Objects.equals(this.accessToken, transferFundingAccountWithDisplayName.accessToken) &&
Objects.equals(this.accountId, transferFundingAccountWithDisplayName.accountId) &&
Objects.equals(this.displayName, transferFundingAccountWithDisplayName.displayName);
}
@Override
public int hashCode() {
return Objects.hash(accessToken, accountId, displayName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransferFundingAccountWithDisplayName {\n");
sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n");
sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
sb.append(" displayName: ").append(toIndentedString(displayName)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SandboxTransferTestClockGetResponse.java | src/main/java/com/plaid/client/model/SandboxTransferTestClockGetResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.TransferTestClock;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Defines the response schema for `/sandbox/transfer/test_clock/get`
*/
@ApiModel(description = "Defines the response schema for `/sandbox/transfer/test_clock/get`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class SandboxTransferTestClockGetResponse {
public static final String SERIALIZED_NAME_TEST_CLOCK = "test_clock";
@SerializedName(SERIALIZED_NAME_TEST_CLOCK)
private TransferTestClock testClock;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public SandboxTransferTestClockGetResponse testClock(TransferTestClock testClock) {
this.testClock = testClock;
return this;
}
/**
* Get testClock
* @return testClock
**/
@ApiModelProperty(required = true, value = "")
public TransferTestClock getTestClock() {
return testClock;
}
public void setTestClock(TransferTestClock testClock) {
this.testClock = testClock;
}
public SandboxTransferTestClockGetResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SandboxTransferTestClockGetResponse sandboxTransferTestClockGetResponse = (SandboxTransferTestClockGetResponse) o;
return Objects.equals(this.testClock, sandboxTransferTestClockGetResponse.testClock) &&
Objects.equals(this.requestId, sandboxTransferTestClockGetResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(testClock, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SandboxTransferTestClockGetResponse {\n");
sb.append(" testClock: ").append(toIndentedString(testClock)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SandboxProcessorTokenCreateRequestOptions.java | src/main/java/com/plaid/client/model/SandboxProcessorTokenCreateRequestOptions.java | /*
* 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.680.0
*
*
* 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;
/**
* An optional set of options to be used when configuring the Item. If specified, must not be `null`.
*/
@ApiModel(description = "An optional set of options to be used when configuring the Item. If specified, must not be `null`.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class SandboxProcessorTokenCreateRequestOptions {
public static final String SERIALIZED_NAME_OVERRIDE_USERNAME = "override_username";
@SerializedName(SERIALIZED_NAME_OVERRIDE_USERNAME)
private String overrideUsername = "user_good";
public static final String SERIALIZED_NAME_OVERRIDE_PASSWORD = "override_password";
@SerializedName(SERIALIZED_NAME_OVERRIDE_PASSWORD)
private String overridePassword = "pass_good";
public SandboxProcessorTokenCreateRequestOptions overrideUsername(String overrideUsername) {
this.overrideUsername = overrideUsername;
return this;
}
/**
* Test username to use for the creation of the Sandbox Item. Default value is `user_good`.
* @return overrideUsername
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Test username to use for the creation of the Sandbox Item. Default value is `user_good`.")
public String getOverrideUsername() {
return overrideUsername;
}
public void setOverrideUsername(String overrideUsername) {
this.overrideUsername = overrideUsername;
}
public SandboxProcessorTokenCreateRequestOptions overridePassword(String overridePassword) {
this.overridePassword = overridePassword;
return this;
}
/**
* Test password to use for the creation of the Sandbox Item. Default value is `pass_good`.
* @return overridePassword
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Test password to use for the creation of the Sandbox Item. Default value is `pass_good`.")
public String getOverridePassword() {
return overridePassword;
}
public void setOverridePassword(String overridePassword) {
this.overridePassword = overridePassword;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SandboxProcessorTokenCreateRequestOptions sandboxProcessorTokenCreateRequestOptions = (SandboxProcessorTokenCreateRequestOptions) o;
return Objects.equals(this.overrideUsername, sandboxProcessorTokenCreateRequestOptions.overrideUsername) &&
Objects.equals(this.overridePassword, sandboxProcessorTokenCreateRequestOptions.overridePassword);
}
@Override
public int hashCode() {
return Objects.hash(overrideUsername, overridePassword);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SandboxProcessorTokenCreateRequestOptions {\n");
sb.append(" overrideUsername: ").append(toIndentedString(overrideUsername)).append("\n");
sb.append(" overridePassword: ").append(toIndentedString(overridePassword)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ItemApplicationListRequest.java | src/main/java/com/plaid/client/model/ItemApplicationListRequest.java | /*
* 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.680.0
*
*
* 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;
/**
* Request to list connected applications for a user.
*/
@ApiModel(description = "Request to list connected applications for a user.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ItemApplicationListRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
private String clientId;
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token";
@SerializedName(SERIALIZED_NAME_ACCESS_TOKEN)
private String accessToken;
public ItemApplicationListRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public ItemApplicationListRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public ItemApplicationListRequest accessToken(String accessToken) {
this.accessToken = accessToken;
return this;
}
/**
* The access token associated with the Item data is being requested for.
* @return accessToken
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The access token associated with the Item data is being requested for.")
public String getAccessToken() {
return accessToken;
}
public void setAccessToken(String accessToken) {
this.accessToken = accessToken;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ItemApplicationListRequest itemApplicationListRequest = (ItemApplicationListRequest) o;
return Objects.equals(this.clientId, itemApplicationListRequest.clientId) &&
Objects.equals(this.secret, itemApplicationListRequest.secret) &&
Objects.equals(this.accessToken, itemApplicationListRequest.accessToken);
}
@Override
public int hashCode() {
return Objects.hash(clientId, secret, accessToken);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ItemApplicationListRequest {\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" accessToken: ").append(toIndentedString(accessToken)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransactionsRulesCreateResponse.java | src/main/java/com/plaid/client/model/TransactionsRulesCreateResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.TransactionsCategoryRule;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* TransactionsRulesCreateResponse defines the response schema for `/beta/transactions/rules/v1/create`
*/
@ApiModel(description = "TransactionsRulesCreateResponse defines the response schema for `/beta/transactions/rules/v1/create`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TransactionsRulesCreateResponse {
public static final String SERIALIZED_NAME_RULE = "rule";
@SerializedName(SERIALIZED_NAME_RULE)
private TransactionsCategoryRule rule;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public TransactionsRulesCreateResponse rule(TransactionsCategoryRule rule) {
this.rule = rule;
return this;
}
/**
* Get rule
* @return rule
**/
@ApiModelProperty(required = true, value = "")
public TransactionsCategoryRule getRule() {
return rule;
}
public void setRule(TransactionsCategoryRule rule) {
this.rule = rule;
}
public TransactionsRulesCreateResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransactionsRulesCreateResponse transactionsRulesCreateResponse = (TransactionsRulesCreateResponse) o;
return Objects.equals(this.rule, transactionsRulesCreateResponse.rule) &&
Objects.equals(this.requestId, transactionsRulesCreateResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(rule, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransactionsRulesCreateResponse {\n");
sb.append(" rule: ").append(toIndentedString(rule)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaymentAmountToRefund.java | src/main/java/com/plaid/client/model/PaymentAmountToRefund.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.PaymentAmountCurrency;
import com.plaid.client.model.PaymentAmountNullable;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* The amount and currency of a payment
*/
@ApiModel(description = "The amount and currency of a payment")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class PaymentAmountToRefund {
public static final String SERIALIZED_NAME_CURRENCY = "currency";
@SerializedName(SERIALIZED_NAME_CURRENCY)
private PaymentAmountCurrency currency;
public static final String SERIALIZED_NAME_VALUE = "value";
@SerializedName(SERIALIZED_NAME_VALUE)
private Double value;
public PaymentAmountToRefund currency(PaymentAmountCurrency currency) {
this.currency = currency;
return this;
}
/**
* Get currency
* @return currency
**/
@ApiModelProperty(required = true, value = "")
public PaymentAmountCurrency getCurrency() {
return currency;
}
public void setCurrency(PaymentAmountCurrency currency) {
this.currency = currency;
}
public PaymentAmountToRefund value(Double value) {
this.value = value;
return this;
}
/**
* The amount of the payment. Must contain at most two digits of precision e.g. `1.23`.
* minimum: 0.01
* @return value
**/
@ApiModelProperty(required = true, value = "The amount of the payment. Must contain at most two digits of precision e.g. `1.23`.")
public Double getValue() {
return value;
}
public void setValue(Double value) {
this.value = value;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PaymentAmountToRefund paymentAmountToRefund = (PaymentAmountToRefund) o;
return Objects.equals(this.currency, paymentAmountToRefund.currency) &&
Objects.equals(this.value, paymentAmountToRefund.value);
}
@Override
public int hashCode() {
return Objects.hash(currency, value);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PaymentAmountToRefund {\n");
sb.append(" currency: ").append(toIndentedString(currency)).append("\n");
sb.append(" value: ").append(toIndentedString(value)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/FDXNotificationCategory.java | src/main/java/com/plaid/client/model/FDXNotificationCategory.java | /*
* 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.680.0
*
*
* 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 io.swagger.annotations.ApiModel;
import com.google.gson.annotations.SerializedName;
import java.io.IOException;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
/**
* Category of Notification
*/
@JsonAdapter(FDXNotificationCategory.Adapter.class)
public enum FDXNotificationCategory {
SECURITY("SECURITY"),
MAINTENANCE("MAINTENANCE"),
FRAUD("FRAUD"),
CONSENT("CONSENT"),
NEW_DATA("NEW_DATA"),
TOKENIZED_ACCOUNT_NUMBER("TOKENIZED_ACCOUNT_NUMBER"),
// This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file.
// Try upgrading your client-library version.
ENUM_UNKNOWN("ENUM_UNKNOWN");
private String value;
FDXNotificationCategory(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static FDXNotificationCategory fromValue(String value) {
for (FDXNotificationCategory b : FDXNotificationCategory.values()) {
if (b.value.equals(value)) {
return b;
}
}
return FDXNotificationCategory.ENUM_UNKNOWN;
}
public static class Adapter extends TypeAdapter<FDXNotificationCategory> {
@Override
public void write(final JsonWriter jsonWriter, final FDXNotificationCategory enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public FDXNotificationCategory read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return FDXNotificationCategory.fromValue(value);
}
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BusinessAccount.java | src/main/java/com/plaid/client/model/BusinessAccount.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.AccountBalance;
import com.plaid.client.model.AccountBase;
import com.plaid.client.model.AccountHolderCategory;
import com.plaid.client.model.AccountSubtype;
import com.plaid.client.model.AccountType;
import com.plaid.client.model.AccountVerificationInsights;
import com.plaid.client.model.BusinessAccountAllOf;
import com.plaid.client.model.Owner;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* Business identity information about an account
*/
@ApiModel(description = "Business identity information about an account")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class BusinessAccount {
public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
private String accountId;
public static final String SERIALIZED_NAME_BALANCES = "balances";
@SerializedName(SERIALIZED_NAME_BALANCES)
private AccountBalance balances;
public static final String SERIALIZED_NAME_MASK = "mask";
@SerializedName(SERIALIZED_NAME_MASK)
private String mask;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_OFFICIAL_NAME = "official_name";
@SerializedName(SERIALIZED_NAME_OFFICIAL_NAME)
private String officialName;
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
private AccountType type;
public static final String SERIALIZED_NAME_SUBTYPE = "subtype";
@SerializedName(SERIALIZED_NAME_SUBTYPE)
private AccountSubtype subtype;
/**
* Indicates an Item's micro-deposit-based verification or database verification status. This field is only populated when using Auth and falling back to micro-deposit or database verification. Possible values are: `pending_automatic_verification`: The Item is pending automatic verification. `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the code. `automatically_verified`: The Item has successfully been automatically verified. `manually_verified`: The Item has successfully been manually verified. `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `unsent`: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit. `database_insights_pending`: The Database Auth result is pending and will be available upon Auth request. `database_insights_fail`: The Item's numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth. `database_insights_pass`: The Item's numbers have been verified using Plaid's data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth. `database_insights_pass_with_caution`: The Item's numbers have been verified using Plaid's data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth. `database_matched`: (deprecated) The Item has successfully been verified using Plaid's data sources. Only returned for Auth Items created via Database Match. `null` or empty string: Neither micro-deposit-based verification nor database verification are being used for the Item.
*/
@JsonAdapter(VerificationStatusEnum.Adapter.class)
public enum VerificationStatusEnum {
AUTOMATICALLY_VERIFIED("automatically_verified"),
PENDING_AUTOMATIC_VERIFICATION("pending_automatic_verification"),
PENDING_MANUAL_VERIFICATION("pending_manual_verification"),
UNSENT("unsent"),
MANUALLY_VERIFIED("manually_verified"),
VERIFICATION_EXPIRED("verification_expired"),
VERIFICATION_FAILED("verification_failed"),
DATABASE_MATCHED("database_matched"),
DATABASE_INSIGHTS_PASS("database_insights_pass"),
DATABASE_INSIGHTS_PASS_WITH_CAUTION("database_insights_pass_with_caution"),
DATABASE_INSIGHTS_FAIL("database_insights_fail");
private String value;
VerificationStatusEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static VerificationStatusEnum fromValue(String value) {
for (VerificationStatusEnum b : VerificationStatusEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
public static class Adapter extends TypeAdapter<VerificationStatusEnum> {
@Override
public void write(final JsonWriter jsonWriter, final VerificationStatusEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public VerificationStatusEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return VerificationStatusEnum.fromValue(value);
}
}
}
public static final String SERIALIZED_NAME_VERIFICATION_STATUS = "verification_status";
@SerializedName(SERIALIZED_NAME_VERIFICATION_STATUS)
private VerificationStatusEnum verificationStatus;
public static final String SERIALIZED_NAME_VERIFICATION_NAME = "verification_name";
@SerializedName(SERIALIZED_NAME_VERIFICATION_NAME)
private String verificationName;
public static final String SERIALIZED_NAME_VERIFICATION_INSIGHTS = "verification_insights";
@SerializedName(SERIALIZED_NAME_VERIFICATION_INSIGHTS)
private AccountVerificationInsights verificationInsights;
public static final String SERIALIZED_NAME_PERSISTENT_ACCOUNT_ID = "persistent_account_id";
@SerializedName(SERIALIZED_NAME_PERSISTENT_ACCOUNT_ID)
private String persistentAccountId;
public static final String SERIALIZED_NAME_HOLDER_CATEGORY = "holder_category";
@SerializedName(SERIALIZED_NAME_HOLDER_CATEGORY)
private AccountHolderCategory holderCategory;
public static final String SERIALIZED_NAME_OWNERS = "owners";
@SerializedName(SERIALIZED_NAME_OWNERS)
private List<Owner> owners = null;
public BusinessAccount accountId(String accountId) {
this.accountId = accountId;
return this;
}
/**
* Plaid’s unique identifier for the account. This value will not change unless Plaid can't reconcile the account with the data returned by the financial institution. This may occur, for example, when the name of the account changes. If this happens a new `account_id` will be assigned to the account. The `account_id` can also change if the `access_token` is deleted and the same credentials that were used to generate that `access_token` are used to generate a new `access_token` on a later date. In that case, the new `account_id` will be different from the old `account_id`. If an account with a specific `account_id` disappears instead of changing, the account is likely closed. Closed accounts are not returned by the Plaid API. When using a CRA endpoint (an endpoint associated with Plaid Check Consumer Report, i.e. any endpoint beginning with `/cra/`), the `account_id` returned will not match the `account_id` returned by a non-CRA endpoint. Like all Plaid identifiers, the `account_id` is case sensitive.
* @return accountId
**/
@ApiModelProperty(required = true, value = "Plaid’s unique identifier for the account. This value will not change unless Plaid can't reconcile the account with the data returned by the financial institution. This may occur, for example, when the name of the account changes. If this happens a new `account_id` will be assigned to the account. The `account_id` can also change if the `access_token` is deleted and the same credentials that were used to generate that `access_token` are used to generate a new `access_token` on a later date. In that case, the new `account_id` will be different from the old `account_id`. If an account with a specific `account_id` disappears instead of changing, the account is likely closed. Closed accounts are not returned by the Plaid API. When using a CRA endpoint (an endpoint associated with Plaid Check Consumer Report, i.e. any endpoint beginning with `/cra/`), the `account_id` returned will not match the `account_id` returned by a non-CRA endpoint. Like all Plaid identifiers, the `account_id` is case sensitive.")
public String getAccountId() {
return accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public BusinessAccount balances(AccountBalance balances) {
this.balances = balances;
return this;
}
/**
* Get balances
* @return balances
**/
@ApiModelProperty(required = true, value = "")
public AccountBalance getBalances() {
return balances;
}
public void setBalances(AccountBalance balances) {
this.balances = balances;
}
public BusinessAccount mask(String mask) {
this.mask = mask;
return this;
}
/**
* The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.
* @return mask
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.")
public String getMask() {
return mask;
}
public void setMask(String mask) {
this.mask = mask;
}
public BusinessAccount name(String name) {
this.name = name;
return this;
}
/**
* The name of the account, either assigned by the user or by the financial institution itself
* @return name
**/
@ApiModelProperty(required = true, value = "The name of the account, either assigned by the user or by the financial institution itself")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public BusinessAccount officialName(String officialName) {
this.officialName = officialName;
return this;
}
/**
* The official name of the account as given by the financial institution
* @return officialName
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The official name of the account as given by the financial institution")
public String getOfficialName() {
return officialName;
}
public void setOfficialName(String officialName) {
this.officialName = officialName;
}
public BusinessAccount type(AccountType type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
**/
@ApiModelProperty(required = true, value = "")
public AccountType getType() {
return type;
}
public void setType(AccountType type) {
this.type = type;
}
public BusinessAccount subtype(AccountSubtype subtype) {
this.subtype = subtype;
return this;
}
/**
* Get subtype
* @return subtype
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public AccountSubtype getSubtype() {
return subtype;
}
public void setSubtype(AccountSubtype subtype) {
this.subtype = subtype;
}
public BusinessAccount verificationStatus(VerificationStatusEnum verificationStatus) {
this.verificationStatus = verificationStatus;
return this;
}
/**
* Indicates an Item's micro-deposit-based verification or database verification status. This field is only populated when using Auth and falling back to micro-deposit or database verification. Possible values are: `pending_automatic_verification`: The Item is pending automatic verification. `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the code. `automatically_verified`: The Item has successfully been automatically verified. `manually_verified`: The Item has successfully been manually verified. `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `unsent`: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit. `database_insights_pending`: The Database Auth result is pending and will be available upon Auth request. `database_insights_fail`: The Item's numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth. `database_insights_pass`: The Item's numbers have been verified using Plaid's data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth. `database_insights_pass_with_caution`: The Item's numbers have been verified using Plaid's data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth. `database_matched`: (deprecated) The Item has successfully been verified using Plaid's data sources. Only returned for Auth Items created via Database Match. `null` or empty string: Neither micro-deposit-based verification nor database verification are being used for the Item.
* @return verificationStatus
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Indicates an Item's micro-deposit-based verification or database verification status. This field is only populated when using Auth and falling back to micro-deposit or database verification. Possible values are: `pending_automatic_verification`: The Item is pending automatic verification. `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the code. `automatically_verified`: The Item has successfully been automatically verified. `manually_verified`: The Item has successfully been manually verified. `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `unsent`: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit. `database_insights_pending`: The Database Auth result is pending and will be available upon Auth request. `database_insights_fail`: The Item's numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth. `database_insights_pass`: The Item's numbers have been verified using Plaid's data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth. `database_insights_pass_with_caution`: The Item's numbers have been verified using Plaid's data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth. `database_matched`: (deprecated) The Item has successfully been verified using Plaid's data sources. Only returned for Auth Items created via Database Match. `null` or empty string: Neither micro-deposit-based verification nor database verification are being used for the Item.")
public VerificationStatusEnum getVerificationStatus() {
return verificationStatus;
}
public void setVerificationStatus(VerificationStatusEnum verificationStatus) {
this.verificationStatus = verificationStatus;
}
public BusinessAccount verificationName(String verificationName) {
this.verificationName = verificationName;
return this;
}
/**
* The account holder name that was used for micro-deposit and/or database verification. Only returned for Auth Items created via micro-deposit or database verification. This name was manually-entered by the user during Link, unless it was otherwise provided via the `user.legal_name` request field in `/link/token/create` for the Link session that created the Item.
* @return verificationName
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The account holder name that was used for micro-deposit and/or database verification. Only returned for Auth Items created via micro-deposit or database verification. This name was manually-entered by the user during Link, unless it was otherwise provided via the `user.legal_name` request field in `/link/token/create` for the Link session that created the Item.")
public String getVerificationName() {
return verificationName;
}
public void setVerificationName(String verificationName) {
this.verificationName = verificationName;
}
public BusinessAccount verificationInsights(AccountVerificationInsights verificationInsights) {
this.verificationInsights = verificationInsights;
return this;
}
/**
* Get verificationInsights
* @return verificationInsights
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public AccountVerificationInsights getVerificationInsights() {
return verificationInsights;
}
public void setVerificationInsights(AccountVerificationInsights verificationInsights) {
this.verificationInsights = verificationInsights;
}
public BusinessAccount persistentAccountId(String persistentAccountId) {
this.persistentAccountId = persistentAccountId;
return this;
}
/**
* A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This field is currently supported only for Items at institutions that use Tokenized Account Numbers (i.e., Chase and PNC, and in May 2025 US Bank). Because these accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify an account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field is populated for TAN-based institutions (`ins_56`, `ins_13`) as well as the OAuth Sandbox institution (`ins_127287`); in Production, it will only be populated for accounts at applicable institutions.
* @return persistentAccountId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This field is currently supported only for Items at institutions that use Tokenized Account Numbers (i.e., Chase and PNC, and in May 2025 US Bank). Because these accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify an account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field is populated for TAN-based institutions (`ins_56`, `ins_13`) as well as the OAuth Sandbox institution (`ins_127287`); in Production, it will only be populated for accounts at applicable institutions.")
public String getPersistentAccountId() {
return persistentAccountId;
}
public void setPersistentAccountId(String persistentAccountId) {
this.persistentAccountId = persistentAccountId;
}
public BusinessAccount holderCategory(AccountHolderCategory holderCategory) {
this.holderCategory = holderCategory;
return this;
}
/**
* Get holderCategory
* @return holderCategory
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public AccountHolderCategory getHolderCategory() {
return holderCategory;
}
public void setHolderCategory(AccountHolderCategory holderCategory) {
this.holderCategory = holderCategory;
}
public BusinessAccount owners(List<Owner> owners) {
this.owners = owners;
return this;
}
public BusinessAccount addOwnersItem(Owner ownersItem) {
if (this.owners == null) {
this.owners = new ArrayList<>();
}
this.owners.add(ownersItem);
return this;
}
/**
* Data returned by the financial institution about the account owner or owners. For business accounts, the name reported may be either the name of the individual or the name of the business, depending on the institution. Multiple owners on a single account will be represented in the same owner object, not in multiple owner objects within the array.
* @return owners
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Data returned by the financial institution about the account owner or owners. For business accounts, the name reported may be either the name of the individual or the name of the business, depending on the institution. Multiple owners on a single account will be represented in the same owner object, not in multiple owner objects within the array.")
public List<Owner> getOwners() {
return owners;
}
public void setOwners(List<Owner> owners) {
this.owners = owners;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BusinessAccount businessAccount = (BusinessAccount) o;
return Objects.equals(this.accountId, businessAccount.accountId) &&
Objects.equals(this.balances, businessAccount.balances) &&
Objects.equals(this.mask, businessAccount.mask) &&
Objects.equals(this.name, businessAccount.name) &&
Objects.equals(this.officialName, businessAccount.officialName) &&
Objects.equals(this.type, businessAccount.type) &&
Objects.equals(this.subtype, businessAccount.subtype) &&
Objects.equals(this.verificationStatus, businessAccount.verificationStatus) &&
Objects.equals(this.verificationName, businessAccount.verificationName) &&
Objects.equals(this.verificationInsights, businessAccount.verificationInsights) &&
Objects.equals(this.persistentAccountId, businessAccount.persistentAccountId) &&
Objects.equals(this.holderCategory, businessAccount.holderCategory) &&
Objects.equals(this.owners, businessAccount.owners);
}
@Override
public int hashCode() {
return Objects.hash(accountId, balances, mask, name, officialName, type, subtype, verificationStatus, verificationName, verificationInsights, persistentAccountId, holderCategory, owners);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BusinessAccount {\n");
sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
sb.append(" balances: ").append(toIndentedString(balances)).append("\n");
sb.append(" mask: ").append(toIndentedString(mask)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" officialName: ").append(toIndentedString(officialName)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" subtype: ").append(toIndentedString(subtype)).append("\n");
sb.append(" verificationStatus: ").append(toIndentedString(verificationStatus)).append("\n");
sb.append(" verificationName: ").append(toIndentedString(verificationName)).append("\n");
sb.append(" verificationInsights: ").append(toIndentedString(verificationInsights)).append("\n");
sb.append(" persistentAccountId: ").append(toIndentedString(persistentAccountId)).append("\n");
sb.append(" holderCategory: ").append(toIndentedString(holderCategory)).append("\n");
sb.append(" owners: ").append(toIndentedString(owners)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraIncomeInsights.java | src/main/java/com/plaid/client/model/CraIncomeInsights.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.CraBankIncomeItem;
import com.plaid.client.model.CraBankIncomeSummary;
import com.plaid.client.model.CraBankIncomeWarning;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.List;
/**
* The Check Income Insights Report for an end user.
*/
@ApiModel(description = "The Check Income Insights Report for an end user.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CraIncomeInsights {
public static final String SERIALIZED_NAME_REPORT_ID = "report_id";
@SerializedName(SERIALIZED_NAME_REPORT_ID)
private String reportId;
public static final String SERIALIZED_NAME_GENERATED_TIME = "generated_time";
@SerializedName(SERIALIZED_NAME_GENERATED_TIME)
private OffsetDateTime generatedTime;
public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested";
@SerializedName(SERIALIZED_NAME_DAYS_REQUESTED)
private Integer daysRequested;
public static final String SERIALIZED_NAME_CLIENT_REPORT_ID = "client_report_id";
@SerializedName(SERIALIZED_NAME_CLIENT_REPORT_ID)
private String clientReportId;
public static final String SERIALIZED_NAME_ITEMS = "items";
@SerializedName(SERIALIZED_NAME_ITEMS)
private List<CraBankIncomeItem> items = null;
public static final String SERIALIZED_NAME_BANK_INCOME_SUMMARY = "bank_income_summary";
@SerializedName(SERIALIZED_NAME_BANK_INCOME_SUMMARY)
private CraBankIncomeSummary bankIncomeSummary;
public static final String SERIALIZED_NAME_WARNINGS = "warnings";
@SerializedName(SERIALIZED_NAME_WARNINGS)
private List<CraBankIncomeWarning> warnings = null;
public CraIncomeInsights reportId(String reportId) {
this.reportId = reportId;
return this;
}
/**
* The unique identifier associated with the Check Income Insights Report.
* @return reportId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The unique identifier associated with the Check Income Insights Report.")
public String getReportId() {
return reportId;
}
public void setReportId(String reportId) {
this.reportId = reportId;
}
public CraIncomeInsights generatedTime(OffsetDateTime generatedTime) {
this.generatedTime = generatedTime;
return this;
}
/**
* The time when the Check Income Insights Report was generated.
* @return generatedTime
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The time when the Check Income Insights Report was generated.")
public OffsetDateTime getGeneratedTime() {
return generatedTime;
}
public void setGeneratedTime(OffsetDateTime generatedTime) {
this.generatedTime = generatedTime;
}
public CraIncomeInsights daysRequested(Integer daysRequested) {
this.daysRequested = daysRequested;
return this;
}
/**
* The number of days requested by the customer for the Check Income Insights Report.
* @return daysRequested
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The number of days requested by the customer for the Check Income Insights Report.")
public Integer getDaysRequested() {
return daysRequested;
}
public void setDaysRequested(Integer daysRequested) {
this.daysRequested = daysRequested;
}
public CraIncomeInsights clientReportId(String clientReportId) {
this.clientReportId = clientReportId;
return this;
}
/**
* Client-generated identifier, which can be used by lenders to track loan applications.
* @return clientReportId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Client-generated identifier, which can be used by lenders to track loan applications.")
public String getClientReportId() {
return clientReportId;
}
public void setClientReportId(String clientReportId) {
this.clientReportId = clientReportId;
}
public CraIncomeInsights items(List<CraBankIncomeItem> items) {
this.items = items;
return this;
}
public CraIncomeInsights addItemsItem(CraBankIncomeItem itemsItem) {
if (this.items == null) {
this.items = new ArrayList<>();
}
this.items.add(itemsItem);
return this;
}
/**
* The list of Items in the report along with the associated metadata about the Item.
* @return items
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The list of Items in the report along with the associated metadata about the Item.")
public List<CraBankIncomeItem> getItems() {
return items;
}
public void setItems(List<CraBankIncomeItem> items) {
this.items = items;
}
public CraIncomeInsights bankIncomeSummary(CraBankIncomeSummary bankIncomeSummary) {
this.bankIncomeSummary = bankIncomeSummary;
return this;
}
/**
* Get bankIncomeSummary
* @return bankIncomeSummary
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public CraBankIncomeSummary getBankIncomeSummary() {
return bankIncomeSummary;
}
public void setBankIncomeSummary(CraBankIncomeSummary bankIncomeSummary) {
this.bankIncomeSummary = bankIncomeSummary;
}
public CraIncomeInsights warnings(List<CraBankIncomeWarning> warnings) {
this.warnings = warnings;
return this;
}
public CraIncomeInsights addWarningsItem(CraBankIncomeWarning warningsItem) {
if (this.warnings == null) {
this.warnings = new ArrayList<>();
}
this.warnings.add(warningsItem);
return this;
}
/**
* If data from the report was unable to be retrieved, the warnings object will contain information about the error that caused the data to be incomplete.
* @return warnings
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "If data from the report was unable to be retrieved, the warnings object will contain information about the error that caused the data to be incomplete.")
public List<CraBankIncomeWarning> getWarnings() {
return warnings;
}
public void setWarnings(List<CraBankIncomeWarning> warnings) {
this.warnings = warnings;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CraIncomeInsights craIncomeInsights = (CraIncomeInsights) o;
return Objects.equals(this.reportId, craIncomeInsights.reportId) &&
Objects.equals(this.generatedTime, craIncomeInsights.generatedTime) &&
Objects.equals(this.daysRequested, craIncomeInsights.daysRequested) &&
Objects.equals(this.clientReportId, craIncomeInsights.clientReportId) &&
Objects.equals(this.items, craIncomeInsights.items) &&
Objects.equals(this.bankIncomeSummary, craIncomeInsights.bankIncomeSummary) &&
Objects.equals(this.warnings, craIncomeInsights.warnings);
}
@Override
public int hashCode() {
return Objects.hash(reportId, generatedTime, daysRequested, clientReportId, items, bankIncomeSummary, warnings);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CraIncomeInsights {\n");
sb.append(" reportId: ").append(toIndentedString(reportId)).append("\n");
sb.append(" generatedTime: ").append(toIndentedString(generatedTime)).append("\n");
sb.append(" daysRequested: ").append(toIndentedString(daysRequested)).append("\n");
sb.append(" clientReportId: ").append(toIndentedString(clientReportId)).append("\n");
sb.append(" items: ").append(toIndentedString(items)).append("\n");
sb.append(" bankIncomeSummary: ").append(toIndentedString(bankIncomeSummary)).append("\n");
sb.append(" warnings: ").append(toIndentedString(warnings)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TotalReportOutflowAmount.java | src/main/java/com/plaid/client/model/TotalReportOutflowAmount.java | /*
* 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.680.0
*
*
* 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;
import java.math.BigDecimal;
/**
* Total amount of credit transactions into the report's accounts in the time period of the report. This field only takes into account USD transactions from the accounts.
*/
@ApiModel(description = "Total amount of credit transactions into the report's accounts in the time period of the report. This field only takes into account USD transactions from the accounts.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TotalReportOutflowAmount {
public static final String SERIALIZED_NAME_AMOUNT = "amount";
@SerializedName(SERIALIZED_NAME_AMOUNT)
private Double amount;
public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code";
@SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE)
private String isoCurrencyCode;
public static final String SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE = "unofficial_currency_code";
@SerializedName(SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE)
private String unofficialCurrencyCode;
public TotalReportOutflowAmount amount(Double amount) {
this.amount = amount;
return this;
}
/**
* Value of amount with up to 2 decimal places.
* @return amount
**/
@ApiModelProperty(required = true, value = "Value of amount with up to 2 decimal places.")
public Double getAmount() {
return amount;
}
public void setAmount(Double amount) {
this.amount = amount;
}
public TotalReportOutflowAmount isoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
return this;
}
/**
* The ISO 4217 currency code of the amount or balance.
* @return isoCurrencyCode
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The ISO 4217 currency code of the amount or balance.")
public String getIsoCurrencyCode() {
return isoCurrencyCode;
}
public void setIsoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
}
public TotalReportOutflowAmount unofficialCurrencyCode(String unofficialCurrencyCode) {
this.unofficialCurrencyCode = unofficialCurrencyCode;
return this;
}
/**
* The unofficial currency code associated with the amount or balance. Always `null` if `iso_currency_code` is non-null. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.
* @return unofficialCurrencyCode
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The unofficial currency code associated with the amount or balance. Always `null` if `iso_currency_code` is non-null. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.")
public String getUnofficialCurrencyCode() {
return unofficialCurrencyCode;
}
public void setUnofficialCurrencyCode(String unofficialCurrencyCode) {
this.unofficialCurrencyCode = unofficialCurrencyCode;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TotalReportOutflowAmount totalReportOutflowAmount = (TotalReportOutflowAmount) o;
return Objects.equals(this.amount, totalReportOutflowAmount.amount) &&
Objects.equals(this.isoCurrencyCode, totalReportOutflowAmount.isoCurrencyCode) &&
Objects.equals(this.unofficialCurrencyCode, totalReportOutflowAmount.unofficialCurrencyCode);
}
@Override
public int hashCode() {
return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TotalReportOutflowAmount {\n");
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n");
sb.append(" unofficialCurrencyCode: ").append(toIndentedString(unofficialCurrencyCode)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AccountBaseNullable.java | src/main/java/com/plaid/client/model/AccountBaseNullable.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.AccountBalance;
import com.plaid.client.model.AccountBase;
import com.plaid.client.model.AccountHolderCategory;
import com.plaid.client.model.AccountSubtype;
import com.plaid.client.model.AccountType;
import com.plaid.client.model.AccountVerificationInsights;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* A single account at a financial institution.
*/
@ApiModel(description = "A single account at a financial institution.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class AccountBaseNullable {
public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
private String accountId;
public static final String SERIALIZED_NAME_BALANCES = "balances";
@SerializedName(SERIALIZED_NAME_BALANCES)
private AccountBalance balances;
public static final String SERIALIZED_NAME_MASK = "mask";
@SerializedName(SERIALIZED_NAME_MASK)
private String mask;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_OFFICIAL_NAME = "official_name";
@SerializedName(SERIALIZED_NAME_OFFICIAL_NAME)
private String officialName;
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
private AccountType type;
public static final String SERIALIZED_NAME_SUBTYPE = "subtype";
@SerializedName(SERIALIZED_NAME_SUBTYPE)
private AccountSubtype subtype;
/**
* Indicates an Item's micro-deposit-based verification or database verification status. This field is only populated when using Auth and falling back to micro-deposit or database verification. Possible values are: `pending_automatic_verification`: The Item is pending automatic verification. `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the code. `automatically_verified`: The Item has successfully been automatically verified. `manually_verified`: The Item has successfully been manually verified. `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `unsent`: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit. `database_insights_pending`: The Database Auth result is pending and will be available upon Auth request. `database_insights_fail`: The Item's numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth. `database_insights_pass`: The Item's numbers have been verified using Plaid's data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth. `database_insights_pass_with_caution`: The Item's numbers have been verified using Plaid's data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth. `database_matched`: (deprecated) The Item has successfully been verified using Plaid's data sources. Only returned for Auth Items created via Database Match. `null` or empty string: Neither micro-deposit-based verification nor database verification are being used for the Item.
*/
@JsonAdapter(VerificationStatusEnum.Adapter.class)
public enum VerificationStatusEnum {
AUTOMATICALLY_VERIFIED("automatically_verified"),
PENDING_AUTOMATIC_VERIFICATION("pending_automatic_verification"),
PENDING_MANUAL_VERIFICATION("pending_manual_verification"),
UNSENT("unsent"),
MANUALLY_VERIFIED("manually_verified"),
VERIFICATION_EXPIRED("verification_expired"),
VERIFICATION_FAILED("verification_failed"),
DATABASE_MATCHED("database_matched"),
DATABASE_INSIGHTS_PASS("database_insights_pass"),
DATABASE_INSIGHTS_PASS_WITH_CAUTION("database_insights_pass_with_caution"),
DATABASE_INSIGHTS_FAIL("database_insights_fail");
private String value;
VerificationStatusEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static VerificationStatusEnum fromValue(String value) {
for (VerificationStatusEnum b : VerificationStatusEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
public static class Adapter extends TypeAdapter<VerificationStatusEnum> {
@Override
public void write(final JsonWriter jsonWriter, final VerificationStatusEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public VerificationStatusEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return VerificationStatusEnum.fromValue(value);
}
}
}
public static final String SERIALIZED_NAME_VERIFICATION_STATUS = "verification_status";
@SerializedName(SERIALIZED_NAME_VERIFICATION_STATUS)
private VerificationStatusEnum verificationStatus;
public static final String SERIALIZED_NAME_VERIFICATION_NAME = "verification_name";
@SerializedName(SERIALIZED_NAME_VERIFICATION_NAME)
private String verificationName;
public static final String SERIALIZED_NAME_VERIFICATION_INSIGHTS = "verification_insights";
@SerializedName(SERIALIZED_NAME_VERIFICATION_INSIGHTS)
private AccountVerificationInsights verificationInsights;
public static final String SERIALIZED_NAME_PERSISTENT_ACCOUNT_ID = "persistent_account_id";
@SerializedName(SERIALIZED_NAME_PERSISTENT_ACCOUNT_ID)
private String persistentAccountId;
public static final String SERIALIZED_NAME_HOLDER_CATEGORY = "holder_category";
@SerializedName(SERIALIZED_NAME_HOLDER_CATEGORY)
private AccountHolderCategory holderCategory;
public AccountBaseNullable accountId(String accountId) {
this.accountId = accountId;
return this;
}
/**
* Plaid’s unique identifier for the account. This value will not change unless Plaid can't reconcile the account with the data returned by the financial institution. This may occur, for example, when the name of the account changes. If this happens a new `account_id` will be assigned to the account. The `account_id` can also change if the `access_token` is deleted and the same credentials that were used to generate that `access_token` are used to generate a new `access_token` on a later date. In that case, the new `account_id` will be different from the old `account_id`. If an account with a specific `account_id` disappears instead of changing, the account is likely closed. Closed accounts are not returned by the Plaid API. When using a CRA endpoint (an endpoint associated with Plaid Check Consumer Report, i.e. any endpoint beginning with `/cra/`), the `account_id` returned will not match the `account_id` returned by a non-CRA endpoint. Like all Plaid identifiers, the `account_id` is case sensitive.
* @return accountId
**/
@ApiModelProperty(required = true, value = "Plaid’s unique identifier for the account. This value will not change unless Plaid can't reconcile the account with the data returned by the financial institution. This may occur, for example, when the name of the account changes. If this happens a new `account_id` will be assigned to the account. The `account_id` can also change if the `access_token` is deleted and the same credentials that were used to generate that `access_token` are used to generate a new `access_token` on a later date. In that case, the new `account_id` will be different from the old `account_id`. If an account with a specific `account_id` disappears instead of changing, the account is likely closed. Closed accounts are not returned by the Plaid API. When using a CRA endpoint (an endpoint associated with Plaid Check Consumer Report, i.e. any endpoint beginning with `/cra/`), the `account_id` returned will not match the `account_id` returned by a non-CRA endpoint. Like all Plaid identifiers, the `account_id` is case sensitive.")
public String getAccountId() {
return accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public AccountBaseNullable balances(AccountBalance balances) {
this.balances = balances;
return this;
}
/**
* Get balances
* @return balances
**/
@ApiModelProperty(required = true, value = "")
public AccountBalance getBalances() {
return balances;
}
public void setBalances(AccountBalance balances) {
this.balances = balances;
}
public AccountBaseNullable mask(String mask) {
this.mask = mask;
return this;
}
/**
* The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.
* @return mask
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.")
public String getMask() {
return mask;
}
public void setMask(String mask) {
this.mask = mask;
}
public AccountBaseNullable name(String name) {
this.name = name;
return this;
}
/**
* The name of the account, either assigned by the user or by the financial institution itself
* @return name
**/
@ApiModelProperty(required = true, value = "The name of the account, either assigned by the user or by the financial institution itself")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public AccountBaseNullable officialName(String officialName) {
this.officialName = officialName;
return this;
}
/**
* The official name of the account as given by the financial institution
* @return officialName
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The official name of the account as given by the financial institution")
public String getOfficialName() {
return officialName;
}
public void setOfficialName(String officialName) {
this.officialName = officialName;
}
public AccountBaseNullable type(AccountType type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
**/
@ApiModelProperty(required = true, value = "")
public AccountType getType() {
return type;
}
public void setType(AccountType type) {
this.type = type;
}
public AccountBaseNullable subtype(AccountSubtype subtype) {
this.subtype = subtype;
return this;
}
/**
* Get subtype
* @return subtype
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public AccountSubtype getSubtype() {
return subtype;
}
public void setSubtype(AccountSubtype subtype) {
this.subtype = subtype;
}
public AccountBaseNullable verificationStatus(VerificationStatusEnum verificationStatus) {
this.verificationStatus = verificationStatus;
return this;
}
/**
* Indicates an Item's micro-deposit-based verification or database verification status. This field is only populated when using Auth and falling back to micro-deposit or database verification. Possible values are: `pending_automatic_verification`: The Item is pending automatic verification. `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the code. `automatically_verified`: The Item has successfully been automatically verified. `manually_verified`: The Item has successfully been manually verified. `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `unsent`: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit. `database_insights_pending`: The Database Auth result is pending and will be available upon Auth request. `database_insights_fail`: The Item's numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth. `database_insights_pass`: The Item's numbers have been verified using Plaid's data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth. `database_insights_pass_with_caution`: The Item's numbers have been verified using Plaid's data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth. `database_matched`: (deprecated) The Item has successfully been verified using Plaid's data sources. Only returned for Auth Items created via Database Match. `null` or empty string: Neither micro-deposit-based verification nor database verification are being used for the Item.
* @return verificationStatus
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Indicates an Item's micro-deposit-based verification or database verification status. This field is only populated when using Auth and falling back to micro-deposit or database verification. Possible values are: `pending_automatic_verification`: The Item is pending automatic verification. `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the code. `automatically_verified`: The Item has successfully been automatically verified. `manually_verified`: The Item has successfully been manually verified. `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `unsent`: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit. `database_insights_pending`: The Database Auth result is pending and will be available upon Auth request. `database_insights_fail`: The Item's numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth. `database_insights_pass`: The Item's numbers have been verified using Plaid's data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth. `database_insights_pass_with_caution`: The Item's numbers have been verified using Plaid's data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth. `database_matched`: (deprecated) The Item has successfully been verified using Plaid's data sources. Only returned for Auth Items created via Database Match. `null` or empty string: Neither micro-deposit-based verification nor database verification are being used for the Item.")
public VerificationStatusEnum getVerificationStatus() {
return verificationStatus;
}
public void setVerificationStatus(VerificationStatusEnum verificationStatus) {
this.verificationStatus = verificationStatus;
}
public AccountBaseNullable verificationName(String verificationName) {
this.verificationName = verificationName;
return this;
}
/**
* The account holder name that was used for micro-deposit and/or database verification. Only returned for Auth Items created via micro-deposit or database verification. This name was manually-entered by the user during Link, unless it was otherwise provided via the `user.legal_name` request field in `/link/token/create` for the Link session that created the Item.
* @return verificationName
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The account holder name that was used for micro-deposit and/or database verification. Only returned for Auth Items created via micro-deposit or database verification. This name was manually-entered by the user during Link, unless it was otherwise provided via the `user.legal_name` request field in `/link/token/create` for the Link session that created the Item.")
public String getVerificationName() {
return verificationName;
}
public void setVerificationName(String verificationName) {
this.verificationName = verificationName;
}
public AccountBaseNullable verificationInsights(AccountVerificationInsights verificationInsights) {
this.verificationInsights = verificationInsights;
return this;
}
/**
* Get verificationInsights
* @return verificationInsights
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public AccountVerificationInsights getVerificationInsights() {
return verificationInsights;
}
public void setVerificationInsights(AccountVerificationInsights verificationInsights) {
this.verificationInsights = verificationInsights;
}
public AccountBaseNullable persistentAccountId(String persistentAccountId) {
this.persistentAccountId = persistentAccountId;
return this;
}
/**
* A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This field is currently supported only for Items at institutions that use Tokenized Account Numbers (i.e., Chase and PNC, and in May 2025 US Bank). Because these accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify an account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field is populated for TAN-based institutions (`ins_56`, `ins_13`) as well as the OAuth Sandbox institution (`ins_127287`); in Production, it will only be populated for accounts at applicable institutions.
* @return persistentAccountId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This field is currently supported only for Items at institutions that use Tokenized Account Numbers (i.e., Chase and PNC, and in May 2025 US Bank). Because these accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify an account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field is populated for TAN-based institutions (`ins_56`, `ins_13`) as well as the OAuth Sandbox institution (`ins_127287`); in Production, it will only be populated for accounts at applicable institutions.")
public String getPersistentAccountId() {
return persistentAccountId;
}
public void setPersistentAccountId(String persistentAccountId) {
this.persistentAccountId = persistentAccountId;
}
public AccountBaseNullable holderCategory(AccountHolderCategory holderCategory) {
this.holderCategory = holderCategory;
return this;
}
/**
* Get holderCategory
* @return holderCategory
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public AccountHolderCategory getHolderCategory() {
return holderCategory;
}
public void setHolderCategory(AccountHolderCategory holderCategory) {
this.holderCategory = holderCategory;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AccountBaseNullable accountBaseNullable = (AccountBaseNullable) o;
return Objects.equals(this.accountId, accountBaseNullable.accountId) &&
Objects.equals(this.balances, accountBaseNullable.balances) &&
Objects.equals(this.mask, accountBaseNullable.mask) &&
Objects.equals(this.name, accountBaseNullable.name) &&
Objects.equals(this.officialName, accountBaseNullable.officialName) &&
Objects.equals(this.type, accountBaseNullable.type) &&
Objects.equals(this.subtype, accountBaseNullable.subtype) &&
Objects.equals(this.verificationStatus, accountBaseNullable.verificationStatus) &&
Objects.equals(this.verificationName, accountBaseNullable.verificationName) &&
Objects.equals(this.verificationInsights, accountBaseNullable.verificationInsights) &&
Objects.equals(this.persistentAccountId, accountBaseNullable.persistentAccountId) &&
Objects.equals(this.holderCategory, accountBaseNullable.holderCategory);
}
@Override
public int hashCode() {
return Objects.hash(accountId, balances, mask, name, officialName, type, subtype, verificationStatus, verificationName, verificationInsights, persistentAccountId, holderCategory);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AccountBaseNullable {\n");
sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
sb.append(" balances: ").append(toIndentedString(balances)).append("\n");
sb.append(" mask: ").append(toIndentedString(mask)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" officialName: ").append(toIndentedString(officialName)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" subtype: ").append(toIndentedString(subtype)).append("\n");
sb.append(" verificationStatus: ").append(toIndentedString(verificationStatus)).append("\n");
sb.append(" verificationName: ").append(toIndentedString(verificationName)).append("\n");
sb.append(" verificationInsights: ").append(toIndentedString(verificationInsights)).append("\n");
sb.append(" persistentAccountId: ").append(toIndentedString(persistentAccountId)).append("\n");
sb.append(" holderCategory: ").append(toIndentedString(holderCategory)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/EntityScreeningHitAnalysis.java | src/main/java/com/plaid/client/model/EntityScreeningHitAnalysis.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.MatchSummaryCode;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Analysis information describing why a screening hit matched the provided entity information
*/
@ApiModel(description = "Analysis information describing why a screening hit matched the provided entity information")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class EntityScreeningHitAnalysis {
public static final String SERIALIZED_NAME_DOCUMENTS = "documents";
@SerializedName(SERIALIZED_NAME_DOCUMENTS)
private MatchSummaryCode documents;
public static final String SERIALIZED_NAME_EMAIL_ADDRESSES = "email_addresses";
@SerializedName(SERIALIZED_NAME_EMAIL_ADDRESSES)
private MatchSummaryCode emailAddresses;
public static final String SERIALIZED_NAME_LOCATIONS = "locations";
@SerializedName(SERIALIZED_NAME_LOCATIONS)
private MatchSummaryCode locations;
public static final String SERIALIZED_NAME_NAMES = "names";
@SerializedName(SERIALIZED_NAME_NAMES)
private MatchSummaryCode names;
public static final String SERIALIZED_NAME_PHONE_NUMBERS = "phone_numbers";
@SerializedName(SERIALIZED_NAME_PHONE_NUMBERS)
private MatchSummaryCode phoneNumbers;
public static final String SERIALIZED_NAME_URLS = "urls";
@SerializedName(SERIALIZED_NAME_URLS)
private MatchSummaryCode urls;
public static final String SERIALIZED_NAME_SEARCH_TERMS_VERSION = "search_terms_version";
@SerializedName(SERIALIZED_NAME_SEARCH_TERMS_VERSION)
private Integer searchTermsVersion;
public EntityScreeningHitAnalysis documents(MatchSummaryCode documents) {
this.documents = documents;
return this;
}
/**
* Get documents
* @return documents
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public MatchSummaryCode getDocuments() {
return documents;
}
public void setDocuments(MatchSummaryCode documents) {
this.documents = documents;
}
public EntityScreeningHitAnalysis emailAddresses(MatchSummaryCode emailAddresses) {
this.emailAddresses = emailAddresses;
return this;
}
/**
* Get emailAddresses
* @return emailAddresses
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public MatchSummaryCode getEmailAddresses() {
return emailAddresses;
}
public void setEmailAddresses(MatchSummaryCode emailAddresses) {
this.emailAddresses = emailAddresses;
}
public EntityScreeningHitAnalysis locations(MatchSummaryCode locations) {
this.locations = locations;
return this;
}
/**
* Get locations
* @return locations
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public MatchSummaryCode getLocations() {
return locations;
}
public void setLocations(MatchSummaryCode locations) {
this.locations = locations;
}
public EntityScreeningHitAnalysis names(MatchSummaryCode names) {
this.names = names;
return this;
}
/**
* Get names
* @return names
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public MatchSummaryCode getNames() {
return names;
}
public void setNames(MatchSummaryCode names) {
this.names = names;
}
public EntityScreeningHitAnalysis phoneNumbers(MatchSummaryCode phoneNumbers) {
this.phoneNumbers = phoneNumbers;
return this;
}
/**
* Get phoneNumbers
* @return phoneNumbers
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public MatchSummaryCode getPhoneNumbers() {
return phoneNumbers;
}
public void setPhoneNumbers(MatchSummaryCode phoneNumbers) {
this.phoneNumbers = phoneNumbers;
}
public EntityScreeningHitAnalysis urls(MatchSummaryCode urls) {
this.urls = urls;
return this;
}
/**
* Get urls
* @return urls
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public MatchSummaryCode getUrls() {
return urls;
}
public void setUrls(MatchSummaryCode urls) {
this.urls = urls;
}
public EntityScreeningHitAnalysis searchTermsVersion(Integer searchTermsVersion) {
this.searchTermsVersion = searchTermsVersion;
return this;
}
/**
* The version of the entity screening's `search_terms` that were compared when the entity screening hit was added. entity screening hits are immutable once they have been reviewed. If changes are detected due to updates to the entity screening's `search_terms`, the associated entity program, or the list's source data prior to review, the entity screening hit will be updated to reflect those changes.
* @return searchTermsVersion
**/
@ApiModelProperty(example = "1", required = true, value = "The version of the entity screening's `search_terms` that were compared when the entity screening hit was added. entity screening hits are immutable once they have been reviewed. If changes are detected due to updates to the entity screening's `search_terms`, the associated entity program, or the list's source data prior to review, the entity screening hit will be updated to reflect those changes.")
public Integer getSearchTermsVersion() {
return searchTermsVersion;
}
public void setSearchTermsVersion(Integer searchTermsVersion) {
this.searchTermsVersion = searchTermsVersion;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
EntityScreeningHitAnalysis entityScreeningHitAnalysis = (EntityScreeningHitAnalysis) o;
return Objects.equals(this.documents, entityScreeningHitAnalysis.documents) &&
Objects.equals(this.emailAddresses, entityScreeningHitAnalysis.emailAddresses) &&
Objects.equals(this.locations, entityScreeningHitAnalysis.locations) &&
Objects.equals(this.names, entityScreeningHitAnalysis.names) &&
Objects.equals(this.phoneNumbers, entityScreeningHitAnalysis.phoneNumbers) &&
Objects.equals(this.urls, entityScreeningHitAnalysis.urls) &&
Objects.equals(this.searchTermsVersion, entityScreeningHitAnalysis.searchTermsVersion);
}
@Override
public int hashCode() {
return Objects.hash(documents, emailAddresses, locations, names, phoneNumbers, urls, searchTermsVersion);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class EntityScreeningHitAnalysis {\n");
sb.append(" documents: ").append(toIndentedString(documents)).append("\n");
sb.append(" emailAddresses: ").append(toIndentedString(emailAddresses)).append("\n");
sb.append(" locations: ").append(toIndentedString(locations)).append("\n");
sb.append(" names: ").append(toIndentedString(names)).append("\n");
sb.append(" phoneNumbers: ").append(toIndentedString(phoneNumbers)).append("\n");
sb.append(" urls: ").append(toIndentedString(urls)).append("\n");
sb.append(" searchTermsVersion: ").append(toIndentedString(searchTermsVersion)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CashFlowUpdatesInsightsV2Webhook.java | src/main/java/com/plaid/client/model/CashFlowUpdatesInsightsV2Webhook.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.CashFlowInsight;
import com.plaid.client.model.MonitoringInsightsStatus;
import com.plaid.client.model.WebhookEnvironmentValues;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* For each item on an enabled user, this webhook will fire up to four times a day with status information. This webhook will not fire immediately upon enrollment in Cash Flow Updates. The payload may contain an `insights` array with insights that have been detected, if any (e.g. `LOW_BALANCE_DETECTED`, `LARGE_DEPOSIT_DETECTED`). Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights.
*/
@ApiModel(description = "For each item on an enabled user, this webhook will fire up to four times a day with status information. This webhook will not fire immediately upon enrollment in Cash Flow Updates. The payload may contain an `insights` array with insights that have been detected, if any (e.g. `LOW_BALANCE_DETECTED`, `LARGE_DEPOSIT_DETECTED`). Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CashFlowUpdatesInsightsV2Webhook {
public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type";
@SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE)
private String webhookType;
public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code";
@SerializedName(SERIALIZED_NAME_WEBHOOK_CODE)
private String webhookCode;
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private MonitoringInsightsStatus status;
public static final String SERIALIZED_NAME_USER_ID = "user_id";
@SerializedName(SERIALIZED_NAME_USER_ID)
private String userId;
public static final String SERIALIZED_NAME_INSIGHTS = "insights";
@SerializedName(SERIALIZED_NAME_INSIGHTS)
private List<CashFlowInsight> insights = new ArrayList<>();
public static final String SERIALIZED_NAME_ENVIRONMENT = "environment";
@SerializedName(SERIALIZED_NAME_ENVIRONMENT)
private WebhookEnvironmentValues environment;
public CashFlowUpdatesInsightsV2Webhook webhookType(String webhookType) {
this.webhookType = webhookType;
return this;
}
/**
* `CASH_FLOW_UPDATES`
* @return webhookType
**/
@ApiModelProperty(required = true, value = "`CASH_FLOW_UPDATES`")
public String getWebhookType() {
return webhookType;
}
public void setWebhookType(String webhookType) {
this.webhookType = webhookType;
}
public CashFlowUpdatesInsightsV2Webhook webhookCode(String webhookCode) {
this.webhookCode = webhookCode;
return this;
}
/**
* `CASH_FLOW_INSIGHTS_UPDATED`
* @return webhookCode
**/
@ApiModelProperty(required = true, value = "`CASH_FLOW_INSIGHTS_UPDATED`")
public String getWebhookCode() {
return webhookCode;
}
public void setWebhookCode(String webhookCode) {
this.webhookCode = webhookCode;
}
public CashFlowUpdatesInsightsV2Webhook status(MonitoringInsightsStatus status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@ApiModelProperty(required = true, value = "")
public MonitoringInsightsStatus getStatus() {
return status;
}
public void setStatus(MonitoringInsightsStatus status) {
this.status = status;
}
public CashFlowUpdatesInsightsV2Webhook userId(String userId) {
this.userId = userId;
return this;
}
/**
* The `user_id` associated with the user whose data is being requested. This is received by calling `user/create`.
* @return userId
**/
@ApiModelProperty(required = true, value = "The `user_id` associated with the user whose data is being requested. This is received by calling `user/create`.")
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public CashFlowUpdatesInsightsV2Webhook insights(List<CashFlowInsight> insights) {
this.insights = insights;
return this;
}
public CashFlowUpdatesInsightsV2Webhook addInsightsItem(CashFlowInsight insightsItem) {
this.insights.add(insightsItem);
return this;
}
/**
* Array containing the insights detected within the generated report, if any. Possible values include: `LARGE_DEPOSIT_DETECTED`: signaling a deposit over $5,000 `LOW_BALANCE_DETECTED`: signaling a balance below $100 `NEW_LOAN_PAYMENT_DETECTED`: signaling a new loan payment `NSF_OVERDRAFT_DETECTED`: signaling an NSF overdraft
* @return insights
**/
@ApiModelProperty(required = true, value = "Array containing the insights detected within the generated report, if any. Possible values include: `LARGE_DEPOSIT_DETECTED`: signaling a deposit over $5,000 `LOW_BALANCE_DETECTED`: signaling a balance below $100 `NEW_LOAN_PAYMENT_DETECTED`: signaling a new loan payment `NSF_OVERDRAFT_DETECTED`: signaling an NSF overdraft")
public List<CashFlowInsight> getInsights() {
return insights;
}
public void setInsights(List<CashFlowInsight> insights) {
this.insights = insights;
}
public CashFlowUpdatesInsightsV2Webhook environment(WebhookEnvironmentValues environment) {
this.environment = environment;
return this;
}
/**
* Get environment
* @return environment
**/
@ApiModelProperty(required = true, value = "")
public WebhookEnvironmentValues getEnvironment() {
return environment;
}
public void setEnvironment(WebhookEnvironmentValues environment) {
this.environment = environment;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CashFlowUpdatesInsightsV2Webhook cashFlowUpdatesInsightsV2Webhook = (CashFlowUpdatesInsightsV2Webhook) o;
return Objects.equals(this.webhookType, cashFlowUpdatesInsightsV2Webhook.webhookType) &&
Objects.equals(this.webhookCode, cashFlowUpdatesInsightsV2Webhook.webhookCode) &&
Objects.equals(this.status, cashFlowUpdatesInsightsV2Webhook.status) &&
Objects.equals(this.userId, cashFlowUpdatesInsightsV2Webhook.userId) &&
Objects.equals(this.insights, cashFlowUpdatesInsightsV2Webhook.insights) &&
Objects.equals(this.environment, cashFlowUpdatesInsightsV2Webhook.environment);
}
@Override
public int hashCode() {
return Objects.hash(webhookType, webhookCode, status, userId, insights, environment);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CashFlowUpdatesInsightsV2Webhook {\n");
sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n");
sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" userId: ").append(toIndentedString(userId)).append("\n");
sb.append(" insights: ").append(toIndentedString(insights)).append("\n");
sb.append(" environment: ").append(toIndentedString(environment)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TotalMonthlyIncomeInsights.java | src/main/java/com/plaid/client/model/TotalMonthlyIncomeInsights.java | /*
* 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.680.0
*
*
* 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;
import java.math.BigDecimal;
/**
* Details about about the total monthly income
*/
@ApiModel(description = "Details about about the total monthly income")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TotalMonthlyIncomeInsights {
public static final String SERIALIZED_NAME_BASELINE_AMOUNT = "baseline_amount";
@SerializedName(SERIALIZED_NAME_BASELINE_AMOUNT)
private Double baselineAmount;
public static final String SERIALIZED_NAME_CURRENT_AMOUNT = "current_amount";
@SerializedName(SERIALIZED_NAME_CURRENT_AMOUNT)
private Double currentAmount;
public TotalMonthlyIncomeInsights baselineAmount(Double baselineAmount) {
this.baselineAmount = baselineAmount;
return this;
}
/**
* The aggregated income for the 30 days prior to subscription date
* @return baselineAmount
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The aggregated income for the 30 days prior to subscription date")
public Double getBaselineAmount() {
return baselineAmount;
}
public void setBaselineAmount(Double baselineAmount) {
this.baselineAmount = baselineAmount;
}
public TotalMonthlyIncomeInsights currentAmount(Double currentAmount) {
this.currentAmount = currentAmount;
return this;
}
/**
* The aggregated income of the last 30 days
* @return currentAmount
**/
@ApiModelProperty(required = true, value = "The aggregated income of the last 30 days")
public Double getCurrentAmount() {
return currentAmount;
}
public void setCurrentAmount(Double currentAmount) {
this.currentAmount = currentAmount;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TotalMonthlyIncomeInsights totalMonthlyIncomeInsights = (TotalMonthlyIncomeInsights) o;
return Objects.equals(this.baselineAmount, totalMonthlyIncomeInsights.baselineAmount) &&
Objects.equals(this.currentAmount, totalMonthlyIncomeInsights.currentAmount);
}
@Override
public int hashCode() {
return Objects.hash(baselineAmount, currentAmount);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TotalMonthlyIncomeInsights {\n");
sb.append(" baselineAmount: ").append(toIndentedString(baselineAmount)).append("\n");
sb.append(" currentAmount: ").append(toIndentedString(currentAmount)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ScreeningHitNamesItems.java | src/main/java/com/plaid/client/model/ScreeningHitNamesItems.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.IndividualScreeningHitNames;
import com.plaid.client.model.MatchSummary;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Analyzed name information for the associated hit
*/
@ApiModel(description = "Analyzed name information for the associated hit")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ScreeningHitNamesItems {
public static final String SERIALIZED_NAME_ANALYSIS = "analysis";
@SerializedName(SERIALIZED_NAME_ANALYSIS)
private MatchSummary analysis;
public static final String SERIALIZED_NAME_DATA = "data";
@SerializedName(SERIALIZED_NAME_DATA)
private IndividualScreeningHitNames data;
public ScreeningHitNamesItems analysis(MatchSummary analysis) {
this.analysis = analysis;
return this;
}
/**
* Get analysis
* @return analysis
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public MatchSummary getAnalysis() {
return analysis;
}
public void setAnalysis(MatchSummary analysis) {
this.analysis = analysis;
}
public ScreeningHitNamesItems data(IndividualScreeningHitNames data) {
this.data = data;
return this;
}
/**
* Get data
* @return data
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public IndividualScreeningHitNames getData() {
return data;
}
public void setData(IndividualScreeningHitNames data) {
this.data = data;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ScreeningHitNamesItems screeningHitNamesItems = (ScreeningHitNamesItems) o;
return Objects.equals(this.analysis, screeningHitNamesItems.analysis) &&
Objects.equals(this.data, screeningHitNamesItems.data);
}
@Override
public int hashCode() {
return Objects.hash(analysis, data);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ScreeningHitNamesItems {\n");
sb.append(" analysis: ").append(toIndentedString(analysis)).append("\n");
sb.append(" data: ").append(toIndentedString(data)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BusinessKYBMatchDetails.java | src/main/java/com/plaid/client/model/BusinessKYBMatchDetails.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.BusinessEmailAddress;
import com.plaid.client.model.BusinessEntityType;
import com.plaid.client.model.BusinessPhoneNumber;
import com.plaid.client.model.BusinessWebsite;
import com.plaid.client.model.ProviderBusinessAddress;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.time.LocalDate;
import java.util.ArrayList;
import java.util.List;
/**
* Detailed information about the business from data provider results
*/
@ApiModel(description = "Detailed information about the business from data provider results")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class BusinessKYBMatchDetails {
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_ENTITY_TYPE = "entity_type";
@SerializedName(SERIALIZED_NAME_ENTITY_TYPE)
private BusinessEntityType entityType;
public static final String SERIALIZED_NAME_ADDRESSES = "addresses";
@SerializedName(SERIALIZED_NAME_ADDRESSES)
private List<ProviderBusinessAddress> addresses = new ArrayList<>();
public static final String SERIALIZED_NAME_PHONE_NUMBERS = "phone_numbers";
@SerializedName(SERIALIZED_NAME_PHONE_NUMBERS)
private List<BusinessPhoneNumber> phoneNumbers = new ArrayList<>();
public static final String SERIALIZED_NAME_EMAIL_ADDRESSES = "email_addresses";
@SerializedName(SERIALIZED_NAME_EMAIL_ADDRESSES)
private List<BusinessEmailAddress> emailAddresses = new ArrayList<>();
public static final String SERIALIZED_NAME_WEBSITES = "websites";
@SerializedName(SERIALIZED_NAME_WEBSITES)
private List<BusinessWebsite> websites = new ArrayList<>();
public static final String SERIALIZED_NAME_FORMATION_DATE = "formation_date";
@SerializedName(SERIALIZED_NAME_FORMATION_DATE)
private LocalDate formationDate;
public BusinessKYBMatchDetails name(String name) {
this.name = name;
return this;
}
/**
* The business name from the data provider
* @return name
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "Acme Corporation", required = true, value = "The business name from the data provider")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public BusinessKYBMatchDetails entityType(BusinessEntityType entityType) {
this.entityType = entityType;
return this;
}
/**
* Get entityType
* @return entityType
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public BusinessEntityType getEntityType() {
return entityType;
}
public void setEntityType(BusinessEntityType entityType) {
this.entityType = entityType;
}
public BusinessKYBMatchDetails addresses(List<ProviderBusinessAddress> addresses) {
this.addresses = addresses;
return this;
}
public BusinessKYBMatchDetails addAddressesItem(ProviderBusinessAddress addressesItem) {
this.addresses.add(addressesItem);
return this;
}
/**
* Addresses associated with the business
* @return addresses
**/
@ApiModelProperty(required = true, value = "Addresses associated with the business")
public List<ProviderBusinessAddress> getAddresses() {
return addresses;
}
public void setAddresses(List<ProviderBusinessAddress> addresses) {
this.addresses = addresses;
}
public BusinessKYBMatchDetails phoneNumbers(List<BusinessPhoneNumber> phoneNumbers) {
this.phoneNumbers = phoneNumbers;
return this;
}
public BusinessKYBMatchDetails addPhoneNumbersItem(BusinessPhoneNumber phoneNumbersItem) {
this.phoneNumbers.add(phoneNumbersItem);
return this;
}
/**
* Phone numbers associated with the business
* @return phoneNumbers
**/
@ApiModelProperty(required = true, value = "Phone numbers associated with the business")
public List<BusinessPhoneNumber> getPhoneNumbers() {
return phoneNumbers;
}
public void setPhoneNumbers(List<BusinessPhoneNumber> phoneNumbers) {
this.phoneNumbers = phoneNumbers;
}
public BusinessKYBMatchDetails emailAddresses(List<BusinessEmailAddress> emailAddresses) {
this.emailAddresses = emailAddresses;
return this;
}
public BusinessKYBMatchDetails addEmailAddressesItem(BusinessEmailAddress emailAddressesItem) {
this.emailAddresses.add(emailAddressesItem);
return this;
}
/**
* Email addresses associated with the business
* @return emailAddresses
**/
@ApiModelProperty(required = true, value = "Email addresses associated with the business")
public List<BusinessEmailAddress> getEmailAddresses() {
return emailAddresses;
}
public void setEmailAddresses(List<BusinessEmailAddress> emailAddresses) {
this.emailAddresses = emailAddresses;
}
public BusinessKYBMatchDetails websites(List<BusinessWebsite> websites) {
this.websites = websites;
return this;
}
public BusinessKYBMatchDetails addWebsitesItem(BusinessWebsite websitesItem) {
this.websites.add(websitesItem);
return this;
}
/**
* Websites associated with the business
* @return websites
**/
@ApiModelProperty(required = true, value = "Websites associated with the business")
public List<BusinessWebsite> getWebsites() {
return websites;
}
public void setWebsites(List<BusinessWebsite> websites) {
this.websites = websites;
}
public BusinessKYBMatchDetails formationDate(LocalDate formationDate) {
this.formationDate = formationDate;
return this;
}
/**
* A date in the format YYYY-MM-DD (RFC 3339 Section 5.6).
* @return formationDate
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "Tue May 29 00:00:00 UTC 1990", required = true, value = "A date in the format YYYY-MM-DD (RFC 3339 Section 5.6).")
public LocalDate getFormationDate() {
return formationDate;
}
public void setFormationDate(LocalDate formationDate) {
this.formationDate = formationDate;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BusinessKYBMatchDetails businessKYBMatchDetails = (BusinessKYBMatchDetails) o;
return Objects.equals(this.name, businessKYBMatchDetails.name) &&
Objects.equals(this.entityType, businessKYBMatchDetails.entityType) &&
Objects.equals(this.addresses, businessKYBMatchDetails.addresses) &&
Objects.equals(this.phoneNumbers, businessKYBMatchDetails.phoneNumbers) &&
Objects.equals(this.emailAddresses, businessKYBMatchDetails.emailAddresses) &&
Objects.equals(this.websites, businessKYBMatchDetails.websites) &&
Objects.equals(this.formationDate, businessKYBMatchDetails.formationDate);
}
@Override
public int hashCode() {
return Objects.hash(name, entityType, addresses, phoneNumbers, emailAddresses, websites, formationDate);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BusinessKYBMatchDetails {\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" entityType: ").append(toIndentedString(entityType)).append("\n");
sb.append(" addresses: ").append(toIndentedString(addresses)).append("\n");
sb.append(" phoneNumbers: ").append(toIndentedString(phoneNumbers)).append("\n");
sb.append(" emailAddresses: ").append(toIndentedString(emailAddresses)).append("\n");
sb.append(" websites: ").append(toIndentedString(websites)).append("\n");
sb.append(" formationDate: ").append(toIndentedString(formationDate)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LayerAuthenticationPassedWebhook.java | src/main/java/com/plaid/client/model/LayerAuthenticationPassedWebhook.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.WebhookEnvironmentValues;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Indicates that Plaid's authentication process has completed for a user and that Plaid has verified that the user owns their phone number. If you receive this webhook, you should skip your own OTP phone number verification flow for the user, even if the user does not complete the entire Link flow. If the user doesn't complete the full Link flow (as verified by your being able to successfully call `/user_account/session/get` using the `public_token` from the `onSuccess` callback) it is recommended that you implement [webhook verification](https://plaid.com/docs/api/webhooks/webhook-verification/) or another technique to avoid webhook spoofing attacks.
*/
@ApiModel(description = "Indicates that Plaid's authentication process has completed for a user and that Plaid has verified that the user owns their phone number. If you receive this webhook, you should skip your own OTP phone number verification flow for the user, even if the user does not complete the entire Link flow. If the user doesn't complete the full Link flow (as verified by your being able to successfully call `/user_account/session/get` using the `public_token` from the `onSuccess` callback) it is recommended that you implement [webhook verification](https://plaid.com/docs/api/webhooks/webhook-verification/) or another technique to avoid webhook spoofing attacks.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class LayerAuthenticationPassedWebhook {
public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type";
@SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE)
private String webhookType;
public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code";
@SerializedName(SERIALIZED_NAME_WEBHOOK_CODE)
private String webhookCode;
public static final String SERIALIZED_NAME_ENVIRONMENT = "environment";
@SerializedName(SERIALIZED_NAME_ENVIRONMENT)
private WebhookEnvironmentValues environment;
public static final String SERIALIZED_NAME_LINK_SESSION_ID = "link_session_id";
@SerializedName(SERIALIZED_NAME_LINK_SESSION_ID)
private String linkSessionId;
public static final String SERIALIZED_NAME_LINK_TOKEN = "link_token";
@SerializedName(SERIALIZED_NAME_LINK_TOKEN)
private String linkToken;
public LayerAuthenticationPassedWebhook webhookType(String webhookType) {
this.webhookType = webhookType;
return this;
}
/**
* `LAYER`
* @return webhookType
**/
@ApiModelProperty(required = true, value = "`LAYER`")
public String getWebhookType() {
return webhookType;
}
public void setWebhookType(String webhookType) {
this.webhookType = webhookType;
}
public LayerAuthenticationPassedWebhook webhookCode(String webhookCode) {
this.webhookCode = webhookCode;
return this;
}
/**
* `LAYER_AUTHENTICATION_PASSED`
* @return webhookCode
**/
@ApiModelProperty(required = true, value = "`LAYER_AUTHENTICATION_PASSED`")
public String getWebhookCode() {
return webhookCode;
}
public void setWebhookCode(String webhookCode) {
this.webhookCode = webhookCode;
}
public LayerAuthenticationPassedWebhook environment(WebhookEnvironmentValues environment) {
this.environment = environment;
return this;
}
/**
* Get environment
* @return environment
**/
@ApiModelProperty(required = true, value = "")
public WebhookEnvironmentValues getEnvironment() {
return environment;
}
public void setEnvironment(WebhookEnvironmentValues environment) {
this.environment = environment;
}
public LayerAuthenticationPassedWebhook linkSessionId(String linkSessionId) {
this.linkSessionId = linkSessionId;
return this;
}
/**
* An identifier for the Link session these events occurred in
* @return linkSessionId
**/
@ApiModelProperty(required = true, value = "An identifier for the Link session these events occurred in")
public String getLinkSessionId() {
return linkSessionId;
}
public void setLinkSessionId(String linkSessionId) {
this.linkSessionId = linkSessionId;
}
public LayerAuthenticationPassedWebhook linkToken(String linkToken) {
this.linkToken = linkToken;
return this;
}
/**
* The Link token used to create the Link session these events are from
* @return linkToken
**/
@ApiModelProperty(required = true, value = "The Link token used to create the Link session these events are from")
public String getLinkToken() {
return linkToken;
}
public void setLinkToken(String linkToken) {
this.linkToken = linkToken;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LayerAuthenticationPassedWebhook layerAuthenticationPassedWebhook = (LayerAuthenticationPassedWebhook) o;
return Objects.equals(this.webhookType, layerAuthenticationPassedWebhook.webhookType) &&
Objects.equals(this.webhookCode, layerAuthenticationPassedWebhook.webhookCode) &&
Objects.equals(this.environment, layerAuthenticationPassedWebhook.environment) &&
Objects.equals(this.linkSessionId, layerAuthenticationPassedWebhook.linkSessionId) &&
Objects.equals(this.linkToken, layerAuthenticationPassedWebhook.linkToken);
}
@Override
public int hashCode() {
return Objects.hash(webhookType, webhookCode, environment, linkSessionId, linkToken);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class LayerAuthenticationPassedWebhook {\n");
sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n");
sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n");
sb.append(" environment: ").append(toIndentedString(environment)).append("\n");
sb.append(" linkSessionId: ").append(toIndentedString(linkSessionId)).append("\n");
sb.append(" linkToken: ").append(toIndentedString(linkToken)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkTokenInvestments.java | src/main/java/com/plaid/client/model/LinkTokenInvestments.java | /*
* 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.680.0
*
*
* 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;
/**
* Configuration parameters for the Investments product
*/
@ApiModel(description = "Configuration parameters for the Investments product")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class LinkTokenInvestments {
public static final String SERIALIZED_NAME_ALLOW_UNVERIFIED_CRYPTO_WALLETS = "allow_unverified_crypto_wallets";
@SerializedName(SERIALIZED_NAME_ALLOW_UNVERIFIED_CRYPTO_WALLETS)
private Boolean allowUnverifiedCryptoWallets;
public static final String SERIALIZED_NAME_ALLOW_MANUAL_ENTRY = "allow_manual_entry";
@SerializedName(SERIALIZED_NAME_ALLOW_MANUAL_ENTRY)
private Boolean allowManualEntry;
public LinkTokenInvestments allowUnverifiedCryptoWallets(Boolean allowUnverifiedCryptoWallets) {
this.allowUnverifiedCryptoWallets = allowUnverifiedCryptoWallets;
return this;
}
/**
* If `true`, allow self-custody crypto wallets to be added without requiring signature verification. Defaults to `false`.
* @return allowUnverifiedCryptoWallets
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "If `true`, allow self-custody crypto wallets to be added without requiring signature verification. Defaults to `false`.")
public Boolean getAllowUnverifiedCryptoWallets() {
return allowUnverifiedCryptoWallets;
}
public void setAllowUnverifiedCryptoWallets(Boolean allowUnverifiedCryptoWallets) {
this.allowUnverifiedCryptoWallets = allowUnverifiedCryptoWallets;
}
public LinkTokenInvestments allowManualEntry(Boolean allowManualEntry) {
this.allowManualEntry = allowManualEntry;
return this;
}
/**
* If `true`, allow users to manually enter Investments account and holdings information. Defaults to `false`.
* @return allowManualEntry
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "If `true`, allow users to manually enter Investments account and holdings information. Defaults to `false`.")
public Boolean getAllowManualEntry() {
return allowManualEntry;
}
public void setAllowManualEntry(Boolean allowManualEntry) {
this.allowManualEntry = allowManualEntry;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LinkTokenInvestments linkTokenInvestments = (LinkTokenInvestments) o;
return Objects.equals(this.allowUnverifiedCryptoWallets, linkTokenInvestments.allowUnverifiedCryptoWallets) &&
Objects.equals(this.allowManualEntry, linkTokenInvestments.allowManualEntry);
}
@Override
public int hashCode() {
return Objects.hash(allowUnverifiedCryptoWallets, allowManualEntry);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class LinkTokenInvestments {\n");
sb.append(" allowUnverifiedCryptoWallets: ").append(toIndentedString(allowUnverifiedCryptoWallets)).append("\n");
sb.append(" allowManualEntry: ").append(toIndentedString(allowManualEntry)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BankTransferType.java | src/main/java/com/plaid/client/model/BankTransferType.java | /*
* 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.680.0
*
*
* 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 io.swagger.annotations.ApiModel;
import com.google.gson.annotations.SerializedName;
import java.io.IOException;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
/**
* The type of bank transfer. This will be either `debit` or `credit`. A `debit` indicates a transfer of money into the origination account; a `credit` indicates a transfer of money out of the origination account.
*/
@JsonAdapter(BankTransferType.Adapter.class)
public enum BankTransferType {
DEBIT("debit"),
CREDIT("credit"),
// This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file.
// Try upgrading your client-library version.
ENUM_UNKNOWN("ENUM_UNKNOWN");
private String value;
BankTransferType(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static BankTransferType fromValue(String value) {
for (BankTransferType b : BankTransferType.values()) {
if (b.value.equals(value)) {
return b;
}
}
return BankTransferType.ENUM_UNKNOWN;
}
public static class Adapter extends TypeAdapter<BankTransferType> {
@Override
public void write(final JsonWriter jsonWriter, final BankTransferType enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public BankTransferType read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return BankTransferType.fromValue(value);
}
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/EntityScreeningHitsPhoneNumberItems.java | src/main/java/com/plaid/client/model/EntityScreeningHitsPhoneNumberItems.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.EntityScreeningHitPhoneNumbers;
import com.plaid.client.model.MatchSummary;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Analyzed phone numbers for the associated hit
*/
@ApiModel(description = "Analyzed phone numbers for the associated hit")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class EntityScreeningHitsPhoneNumberItems {
public static final String SERIALIZED_NAME_ANALYSIS = "analysis";
@SerializedName(SERIALIZED_NAME_ANALYSIS)
private MatchSummary analysis;
public static final String SERIALIZED_NAME_DATA = "data";
@SerializedName(SERIALIZED_NAME_DATA)
private EntityScreeningHitPhoneNumbers data;
public EntityScreeningHitsPhoneNumberItems analysis(MatchSummary analysis) {
this.analysis = analysis;
return this;
}
/**
* Get analysis
* @return analysis
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public MatchSummary getAnalysis() {
return analysis;
}
public void setAnalysis(MatchSummary analysis) {
this.analysis = analysis;
}
public EntityScreeningHitsPhoneNumberItems data(EntityScreeningHitPhoneNumbers data) {
this.data = data;
return this;
}
/**
* Get data
* @return data
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public EntityScreeningHitPhoneNumbers getData() {
return data;
}
public void setData(EntityScreeningHitPhoneNumbers data) {
this.data = data;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
EntityScreeningHitsPhoneNumberItems entityScreeningHitsPhoneNumberItems = (EntityScreeningHitsPhoneNumberItems) o;
return Objects.equals(this.analysis, entityScreeningHitsPhoneNumberItems.analysis) &&
Objects.equals(this.data, entityScreeningHitsPhoneNumberItems.data);
}
@Override
public int hashCode() {
return Objects.hash(analysis, data);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class EntityScreeningHitsPhoneNumberItems {\n");
sb.append(" analysis: ").append(toIndentedString(analysis)).append("\n");
sb.append(" data: ").append(toIndentedString(data)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkEventMetadata.java | src/main/java/com/plaid/client/model/LinkEventMetadata.java | /*
* 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.680.0
*
*
* 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;
/**
* Metadata about an event that occurred while the user was going through Link
*/
@ApiModel(description = "Metadata about an event that occurred while the user was going through Link")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class LinkEventMetadata {
public static final String SERIALIZED_NAME_ERROR_CODE = "error_code";
@SerializedName(SERIALIZED_NAME_ERROR_CODE)
private String errorCode;
public static final String SERIALIZED_NAME_ERROR_MESSAGE = "error_message";
@SerializedName(SERIALIZED_NAME_ERROR_MESSAGE)
private String errorMessage;
public static final String SERIALIZED_NAME_ERROR_TYPE = "error_type";
@SerializedName(SERIALIZED_NAME_ERROR_TYPE)
private String errorType;
public static final String SERIALIZED_NAME_EXIT_STATUS = "exit_status";
@SerializedName(SERIALIZED_NAME_EXIT_STATUS)
private String exitStatus;
public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id";
@SerializedName(SERIALIZED_NAME_INSTITUTION_ID)
private String institutionId;
public static final String SERIALIZED_NAME_INSTITUTION_NAME = "institution_name";
@SerializedName(SERIALIZED_NAME_INSTITUTION_NAME)
private String institutionName;
public static final String SERIALIZED_NAME_INSTITUTION_SEARCH_QUERY = "institution_search_query";
@SerializedName(SERIALIZED_NAME_INSTITUTION_SEARCH_QUERY)
private String institutionSearchQuery;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public static final String SERIALIZED_NAME_MFA_TYPE = "mfa_type";
@SerializedName(SERIALIZED_NAME_MFA_TYPE)
private String mfaType;
public static final String SERIALIZED_NAME_VIEW_NAME = "view_name";
@SerializedName(SERIALIZED_NAME_VIEW_NAME)
private String viewName;
public static final String SERIALIZED_NAME_SELECTION = "selection";
@SerializedName(SERIALIZED_NAME_SELECTION)
private String selection;
public static final String SERIALIZED_NAME_BRAND_NAME = "brand_name";
@SerializedName(SERIALIZED_NAME_BRAND_NAME)
private String brandName;
public static final String SERIALIZED_NAME_MATCH_REASON = "match_reason";
@SerializedName(SERIALIZED_NAME_MATCH_REASON)
private String matchReason;
public static final String SERIALIZED_NAME_ROUTING_NUMBER = "routing_number";
@SerializedName(SERIALIZED_NAME_ROUTING_NUMBER)
private String routingNumber;
public static final String SERIALIZED_NAME_ACCOUNT_NUMBER_MASK = "account_number_mask";
@SerializedName(SERIALIZED_NAME_ACCOUNT_NUMBER_MASK)
private String accountNumberMask;
public LinkEventMetadata errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* The error code that the user encountered. Emitted by `ERROR`, `EXIT`.
* @return errorCode
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The error code that the user encountered. Emitted by `ERROR`, `EXIT`.")
public String getErrorCode() {
return errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public LinkEventMetadata errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* The error message that the user encountered. Emitted by: `ERROR`, `EXIT`.
* @return errorMessage
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The error message that the user encountered. Emitted by: `ERROR`, `EXIT`.")
public String getErrorMessage() {
return errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public LinkEventMetadata errorType(String errorType) {
this.errorType = errorType;
return this;
}
/**
* The error type that the user encountered. Emitted by: `ERROR`, `EXIT`.
* @return errorType
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The error type that the user encountered. Emitted by: `ERROR`, `EXIT`.")
public String getErrorType() {
return errorType;
}
public void setErrorType(String errorType) {
this.errorType = errorType;
}
public LinkEventMetadata exitStatus(String exitStatus) {
this.exitStatus = exitStatus;
return this;
}
/**
* The status key indicates the point at which the user exited the Link flow. Emitted by: `EXIT`.
* @return exitStatus
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The status key indicates the point at which the user exited the Link flow. Emitted by: `EXIT`.")
public String getExitStatus() {
return exitStatus;
}
public void setExitStatus(String exitStatus) {
this.exitStatus = exitStatus;
}
public LinkEventMetadata institutionId(String institutionId) {
this.institutionId = institutionId;
return this;
}
/**
* The ID of the selected institution. Emitted by: all events.
* @return institutionId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The ID of the selected institution. Emitted by: all events.")
public String getInstitutionId() {
return institutionId;
}
public void setInstitutionId(String institutionId) {
this.institutionId = institutionId;
}
public LinkEventMetadata institutionName(String institutionName) {
this.institutionName = institutionName;
return this;
}
/**
* The name of the selected institution. Emitted by: all events.
* @return institutionName
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The name of the selected institution. Emitted by: all events.")
public String getInstitutionName() {
return institutionName;
}
public void setInstitutionName(String institutionName) {
this.institutionName = institutionName;
}
public LinkEventMetadata institutionSearchQuery(String institutionSearchQuery) {
this.institutionSearchQuery = institutionSearchQuery;
return this;
}
/**
* The query used to search for institutions. Emitted by: `SEARCH_INSTITUTION`.
* @return institutionSearchQuery
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The query used to search for institutions. Emitted by: `SEARCH_INSTITUTION`.")
public String getInstitutionSearchQuery() {
return institutionSearchQuery;
}
public void setInstitutionSearchQuery(String institutionSearchQuery) {
this.institutionSearchQuery = institutionSearchQuery;
}
public LinkEventMetadata requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* The request ID for the last request made by Link. This can be shared with Plaid Support to expedite investigation. Emitted by: all events.
* @return requestId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The request ID for the last request made by Link. This can be shared with Plaid Support to expedite investigation. Emitted by: all events.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public LinkEventMetadata mfaType(String mfaType) {
this.mfaType = mfaType;
return this;
}
/**
* If set, the user has encountered one of the following MFA types: code, device, questions, selections. Emitted by: `SUBMIT_MFA` and `TRANSITION_VIEW` when `view_name` is `MFA`.
* @return mfaType
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "If set, the user has encountered one of the following MFA types: code, device, questions, selections. Emitted by: `SUBMIT_MFA` and `TRANSITION_VIEW` when `view_name` is `MFA`.")
public String getMfaType() {
return mfaType;
}
public void setMfaType(String mfaType) {
this.mfaType = mfaType;
}
public LinkEventMetadata viewName(String viewName) {
this.viewName = viewName;
return this;
}
/**
* The name of the view that is being transitioned to. Emitted by: `TRANSITION_VIEW`.
* @return viewName
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The name of the view that is being transitioned to. Emitted by: `TRANSITION_VIEW`.")
public String getViewName() {
return viewName;
}
public void setViewName(String viewName) {
this.viewName = viewName;
}
public LinkEventMetadata selection(String selection) {
this.selection = selection;
return this;
}
/**
* Either the verification method for a matched institution selected by the user or the Auth Type Select flow type selected by the user. If selection is used to describe selected verification method, then possible values are `phoneotp` or `password`; if selection is used to describe the selected Auth Type Select flow, then possible values are `flow_type_manual` or `flow_type_instant`. Emitted by: `MATCHED_SELECT_VERIFY_METHOD` and `SELECT_AUTH_TYPE`.
* @return selection
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Either the verification method for a matched institution selected by the user or the Auth Type Select flow type selected by the user. If selection is used to describe selected verification method, then possible values are `phoneotp` or `password`; if selection is used to describe the selected Auth Type Select flow, then possible values are `flow_type_manual` or `flow_type_instant`. Emitted by: `MATCHED_SELECT_VERIFY_METHOD` and `SELECT_AUTH_TYPE`.")
public String getSelection() {
return selection;
}
public void setSelection(String selection) {
this.selection = selection;
}
public LinkEventMetadata brandName(String brandName) {
this.brandName = brandName;
return this;
}
/**
* The name of the selected brand.
* @return brandName
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The name of the selected brand.")
public String getBrandName() {
return brandName;
}
public void setBrandName(String brandName) {
this.brandName = brandName;
}
public LinkEventMetadata matchReason(String matchReason) {
this.matchReason = matchReason;
return this;
}
/**
* The reason this institution was matched. This will be either `returning_user` or `routing_number` if emitted by `MATCHED_SELECT_INSTITUTION`. Otherwise, this will be `SAVED_INSTITUTION` or `AUTO_SELECT_SAVED_INSTITUTION` if emitted by `SELECT_INSTITUTION`.
* @return matchReason
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The reason this institution was matched. This will be either `returning_user` or `routing_number` if emitted by `MATCHED_SELECT_INSTITUTION`. Otherwise, this will be `SAVED_INSTITUTION` or `AUTO_SELECT_SAVED_INSTITUTION` if emitted by `SELECT_INSTITUTION`.")
public String getMatchReason() {
return matchReason;
}
public void setMatchReason(String matchReason) {
this.matchReason = matchReason;
}
public LinkEventMetadata routingNumber(String routingNumber) {
this.routingNumber = routingNumber;
return this;
}
/**
* The routing number submitted by user at the micro-deposits routing number pane. Emitted by `SUBMIT_ROUTING_NUMBER`.
* @return routingNumber
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The routing number submitted by user at the micro-deposits routing number pane. Emitted by `SUBMIT_ROUTING_NUMBER`.")
public String getRoutingNumber() {
return routingNumber;
}
public void setRoutingNumber(String routingNumber) {
this.routingNumber = routingNumber;
}
public LinkEventMetadata accountNumberMask(String accountNumberMask) {
this.accountNumberMask = accountNumberMask;
return this;
}
/**
* The account number mask extracted from the user-provided account number. If the user-inputted account number is four digits long, `account_number_mask` is empty. Emitted by `SUBMIT_ACCOUNT_NUMBER`.
* @return accountNumberMask
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The account number mask extracted from the user-provided account number. If the user-inputted account number is four digits long, `account_number_mask` is empty. Emitted by `SUBMIT_ACCOUNT_NUMBER`.")
public String getAccountNumberMask() {
return accountNumberMask;
}
public void setAccountNumberMask(String accountNumberMask) {
this.accountNumberMask = accountNumberMask;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LinkEventMetadata linkEventMetadata = (LinkEventMetadata) o;
return Objects.equals(this.errorCode, linkEventMetadata.errorCode) &&
Objects.equals(this.errorMessage, linkEventMetadata.errorMessage) &&
Objects.equals(this.errorType, linkEventMetadata.errorType) &&
Objects.equals(this.exitStatus, linkEventMetadata.exitStatus) &&
Objects.equals(this.institutionId, linkEventMetadata.institutionId) &&
Objects.equals(this.institutionName, linkEventMetadata.institutionName) &&
Objects.equals(this.institutionSearchQuery, linkEventMetadata.institutionSearchQuery) &&
Objects.equals(this.requestId, linkEventMetadata.requestId) &&
Objects.equals(this.mfaType, linkEventMetadata.mfaType) &&
Objects.equals(this.viewName, linkEventMetadata.viewName) &&
Objects.equals(this.selection, linkEventMetadata.selection) &&
Objects.equals(this.brandName, linkEventMetadata.brandName) &&
Objects.equals(this.matchReason, linkEventMetadata.matchReason) &&
Objects.equals(this.routingNumber, linkEventMetadata.routingNumber) &&
Objects.equals(this.accountNumberMask, linkEventMetadata.accountNumberMask);
}
@Override
public int hashCode() {
return Objects.hash(errorCode, errorMessage, errorType, exitStatus, institutionId, institutionName, institutionSearchQuery, requestId, mfaType, viewName, selection, brandName, matchReason, routingNumber, accountNumberMask);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class LinkEventMetadata {\n");
sb.append(" errorCode: ").append(toIndentedString(errorCode)).append("\n");
sb.append(" errorMessage: ").append(toIndentedString(errorMessage)).append("\n");
sb.append(" errorType: ").append(toIndentedString(errorType)).append("\n");
sb.append(" exitStatus: ").append(toIndentedString(exitStatus)).append("\n");
sb.append(" institutionId: ").append(toIndentedString(institutionId)).append("\n");
sb.append(" institutionName: ").append(toIndentedString(institutionName)).append("\n");
sb.append(" institutionSearchQuery: ").append(toIndentedString(institutionSearchQuery)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append(" mfaType: ").append(toIndentedString(mfaType)).append("\n");
sb.append(" viewName: ").append(toIndentedString(viewName)).append("\n");
sb.append(" selection: ").append(toIndentedString(selection)).append("\n");
sb.append(" brandName: ").append(toIndentedString(brandName)).append("\n");
sb.append(" matchReason: ").append(toIndentedString(matchReason)).append("\n");
sb.append(" routingNumber: ").append(toIndentedString(routingNumber)).append("\n");
sb.append(" accountNumberMask: ").append(toIndentedString(accountNumberMask)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckResponse.java | src/main/java/com/plaid/client/model/IncomeVerificationPrecheckResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.IncomeVerificationPrecheckConfidence;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* IncomeVerificationPrecheckResponse defines the response schema for `/income/verification/precheck`.
*/
@ApiModel(description = "IncomeVerificationPrecheckResponse defines the response schema for `/income/verification/precheck`.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class IncomeVerificationPrecheckResponse {
public static final String SERIALIZED_NAME_PRECHECK_ID = "precheck_id";
@SerializedName(SERIALIZED_NAME_PRECHECK_ID)
private String precheckId;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public static final String SERIALIZED_NAME_CONFIDENCE = "confidence";
@SerializedName(SERIALIZED_NAME_CONFIDENCE)
private IncomeVerificationPrecheckConfidence confidence;
public IncomeVerificationPrecheckResponse precheckId(String precheckId) {
this.precheckId = precheckId;
return this;
}
/**
* ID of the precheck. Provide this value when calling `/link/token/create` in order to optimize Link conversion.
* @return precheckId
**/
@ApiModelProperty(required = true, value = "ID of the precheck. Provide this value when calling `/link/token/create` in order to optimize Link conversion.")
public String getPrecheckId() {
return precheckId;
}
public void setPrecheckId(String precheckId) {
this.precheckId = precheckId;
}
public IncomeVerificationPrecheckResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public IncomeVerificationPrecheckResponse confidence(IncomeVerificationPrecheckConfidence confidence) {
this.confidence = confidence;
return this;
}
/**
* Get confidence
* @return confidence
**/
@ApiModelProperty(required = true, value = "")
public IncomeVerificationPrecheckConfidence getConfidence() {
return confidence;
}
public void setConfidence(IncomeVerificationPrecheckConfidence confidence) {
this.confidence = confidence;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
IncomeVerificationPrecheckResponse incomeVerificationPrecheckResponse = (IncomeVerificationPrecheckResponse) o;
return Objects.equals(this.precheckId, incomeVerificationPrecheckResponse.precheckId) &&
Objects.equals(this.requestId, incomeVerificationPrecheckResponse.requestId) &&
Objects.equals(this.confidence, incomeVerificationPrecheckResponse.confidence);
}
@Override
public int hashCode() {
return Objects.hash(precheckId, requestId, confidence);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class IncomeVerificationPrecheckResponse {\n");
sb.append(" precheckId: ").append(toIndentedString(precheckId)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append(" confidence: ").append(toIndentedString(confidence)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WatchlistScreeningIndividual.java | src/main/java/com/plaid/client/model/WatchlistScreeningIndividual.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.WatchlistScreeningAuditTrail;
import com.plaid.client.model.WatchlistScreeningSearchTerms;
import com.plaid.client.model.WatchlistScreeningStatus;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* The screening object allows you to represent a customer in your system, update their profile, and search for them on various watchlists. Note: Rejected customers will not receive new hits, regardless of program configuration.
*/
@ApiModel(description = "The screening object allows you to represent a customer in your system, update their profile, and search for them on various watchlists. Note: Rejected customers will not receive new hits, regardless of program configuration.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class WatchlistScreeningIndividual {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
private String id;
public static final String SERIALIZED_NAME_SEARCH_TERMS = "search_terms";
@SerializedName(SERIALIZED_NAME_SEARCH_TERMS)
private WatchlistScreeningSearchTerms searchTerms;
public static final String SERIALIZED_NAME_ASSIGNEE = "assignee";
@SerializedName(SERIALIZED_NAME_ASSIGNEE)
private String assignee;
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private WatchlistScreeningStatus status;
public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id";
@SerializedName(SERIALIZED_NAME_CLIENT_USER_ID)
private String clientUserId;
public static final String SERIALIZED_NAME_AUDIT_TRAIL = "audit_trail";
@SerializedName(SERIALIZED_NAME_AUDIT_TRAIL)
private WatchlistScreeningAuditTrail auditTrail;
public WatchlistScreeningIndividual id(String id) {
this.id = id;
return this;
}
/**
* ID of the associated screening.
* @return id
**/
@ApiModelProperty(example = "scr_52xR9LKo77r1Np", required = true, value = "ID of the associated screening.")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public WatchlistScreeningIndividual searchTerms(WatchlistScreeningSearchTerms searchTerms) {
this.searchTerms = searchTerms;
return this;
}
/**
* Get searchTerms
* @return searchTerms
**/
@ApiModelProperty(required = true, value = "")
public WatchlistScreeningSearchTerms getSearchTerms() {
return searchTerms;
}
public void setSearchTerms(WatchlistScreeningSearchTerms searchTerms) {
this.searchTerms = searchTerms;
}
public WatchlistScreeningIndividual assignee(String assignee) {
this.assignee = assignee;
return this;
}
/**
* ID of the associated user. To retrieve the email address or other details of the person corresponding to this id, use `/dashboard_user/get`.
* @return assignee
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "54350110fedcbaf01234ffee", required = true, value = "ID of the associated user. To retrieve the email address or other details of the person corresponding to this id, use `/dashboard_user/get`.")
public String getAssignee() {
return assignee;
}
public void setAssignee(String assignee) {
this.assignee = assignee;
}
public WatchlistScreeningIndividual status(WatchlistScreeningStatus status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@ApiModelProperty(required = true, value = "")
public WatchlistScreeningStatus getStatus() {
return status;
}
public void setStatus(WatchlistScreeningStatus status) {
this.status = status;
}
public WatchlistScreeningIndividual clientUserId(String clientUserId) {
this.clientUserId = clientUserId;
return this;
}
/**
* A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the `/link/token/create` `client_user_id` to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the `client_user_id`.
* @return clientUserId
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "your-db-id-3b24110", required = true, value = "A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the `/link/token/create` `client_user_id` to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the `client_user_id`.")
public String getClientUserId() {
return clientUserId;
}
public void setClientUserId(String clientUserId) {
this.clientUserId = clientUserId;
}
public WatchlistScreeningIndividual auditTrail(WatchlistScreeningAuditTrail auditTrail) {
this.auditTrail = auditTrail;
return this;
}
/**
* Get auditTrail
* @return auditTrail
**/
@ApiModelProperty(required = true, value = "")
public WatchlistScreeningAuditTrail getAuditTrail() {
return auditTrail;
}
public void setAuditTrail(WatchlistScreeningAuditTrail auditTrail) {
this.auditTrail = auditTrail;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
WatchlistScreeningIndividual watchlistScreeningIndividual = (WatchlistScreeningIndividual) o;
return Objects.equals(this.id, watchlistScreeningIndividual.id) &&
Objects.equals(this.searchTerms, watchlistScreeningIndividual.searchTerms) &&
Objects.equals(this.assignee, watchlistScreeningIndividual.assignee) &&
Objects.equals(this.status, watchlistScreeningIndividual.status) &&
Objects.equals(this.clientUserId, watchlistScreeningIndividual.clientUserId) &&
Objects.equals(this.auditTrail, watchlistScreeningIndividual.auditTrail);
}
@Override
public int hashCode() {
return Objects.hash(id, searchTerms, assignee, status, clientUserId, auditTrail);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class WatchlistScreeningIndividual {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" searchTerms: ").append(toIndentedString(searchTerms)).append("\n");
sb.append(" assignee: ").append(toIndentedString(assignee)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n");
sb.append(" auditTrail: ").append(toIndentedString(auditTrail)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewCreateResponse.java | src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewCreateResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.WatchlistScreeningAuditTrail;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* A review submitted by a team member for an individual watchlist screening. A review can be either a comment on the current screening state, actions taken against hits attached to the watchlist screening, or both.
*/
@ApiModel(description = "A review submitted by a team member for an individual watchlist screening. A review can be either a comment on the current screening state, actions taken against hits attached to the watchlist screening, or both.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class WatchlistScreeningIndividualReviewCreateResponse {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
private String id;
public static final String SERIALIZED_NAME_CONFIRMED_HITS = "confirmed_hits";
@SerializedName(SERIALIZED_NAME_CONFIRMED_HITS)
private List<String> confirmedHits = new ArrayList<>();
public static final String SERIALIZED_NAME_DISMISSED_HITS = "dismissed_hits";
@SerializedName(SERIALIZED_NAME_DISMISSED_HITS)
private List<String> dismissedHits = new ArrayList<>();
public static final String SERIALIZED_NAME_COMMENT = "comment";
@SerializedName(SERIALIZED_NAME_COMMENT)
private String comment;
public static final String SERIALIZED_NAME_AUDIT_TRAIL = "audit_trail";
@SerializedName(SERIALIZED_NAME_AUDIT_TRAIL)
private WatchlistScreeningAuditTrail auditTrail;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public WatchlistScreeningIndividualReviewCreateResponse id(String id) {
this.id = id;
return this;
}
/**
* ID of the associated review.
* @return id
**/
@ApiModelProperty(example = "rev_aCLNRxK3UVzn2r", required = true, value = "ID of the associated review.")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public WatchlistScreeningIndividualReviewCreateResponse confirmedHits(List<String> confirmedHits) {
this.confirmedHits = confirmedHits;
return this;
}
public WatchlistScreeningIndividualReviewCreateResponse addConfirmedHitsItem(String confirmedHitsItem) {
this.confirmedHits.add(confirmedHitsItem);
return this;
}
/**
* Hits marked as a true positive after thorough manual review. These hits will never recur or be updated once dismissed. In most cases, confirmed hits indicate that the customer should be rejected.
* @return confirmedHits
**/
@ApiModelProperty(required = true, value = "Hits marked as a true positive after thorough manual review. These hits will never recur or be updated once dismissed. In most cases, confirmed hits indicate that the customer should be rejected.")
public List<String> getConfirmedHits() {
return confirmedHits;
}
public void setConfirmedHits(List<String> confirmedHits) {
this.confirmedHits = confirmedHits;
}
public WatchlistScreeningIndividualReviewCreateResponse dismissedHits(List<String> dismissedHits) {
this.dismissedHits = dismissedHits;
return this;
}
public WatchlistScreeningIndividualReviewCreateResponse addDismissedHitsItem(String dismissedHitsItem) {
this.dismissedHits.add(dismissedHitsItem);
return this;
}
/**
* Hits marked as a false positive after thorough manual review. These hits will never recur or be updated once dismissed.
* @return dismissedHits
**/
@ApiModelProperty(required = true, value = "Hits marked as a false positive after thorough manual review. These hits will never recur or be updated once dismissed.")
public List<String> getDismissedHits() {
return dismissedHits;
}
public void setDismissedHits(List<String> dismissedHits) {
this.dismissedHits = dismissedHits;
}
public WatchlistScreeningIndividualReviewCreateResponse comment(String comment) {
this.comment = comment;
return this;
}
/**
* A comment submitted by a team member as part of reviewing a watchlist screening.
* @return comment
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "These look like legitimate matches, rejecting the customer.", required = true, value = "A comment submitted by a team member as part of reviewing a watchlist screening.")
public String getComment() {
return comment;
}
public void setComment(String comment) {
this.comment = comment;
}
public WatchlistScreeningIndividualReviewCreateResponse auditTrail(WatchlistScreeningAuditTrail auditTrail) {
this.auditTrail = auditTrail;
return this;
}
/**
* Get auditTrail
* @return auditTrail
**/
@ApiModelProperty(required = true, value = "")
public WatchlistScreeningAuditTrail getAuditTrail() {
return auditTrail;
}
public void setAuditTrail(WatchlistScreeningAuditTrail auditTrail) {
this.auditTrail = auditTrail;
}
public WatchlistScreeningIndividualReviewCreateResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
WatchlistScreeningIndividualReviewCreateResponse watchlistScreeningIndividualReviewCreateResponse = (WatchlistScreeningIndividualReviewCreateResponse) o;
return Objects.equals(this.id, watchlistScreeningIndividualReviewCreateResponse.id) &&
Objects.equals(this.confirmedHits, watchlistScreeningIndividualReviewCreateResponse.confirmedHits) &&
Objects.equals(this.dismissedHits, watchlistScreeningIndividualReviewCreateResponse.dismissedHits) &&
Objects.equals(this.comment, watchlistScreeningIndividualReviewCreateResponse.comment) &&
Objects.equals(this.auditTrail, watchlistScreeningIndividualReviewCreateResponse.auditTrail) &&
Objects.equals(this.requestId, watchlistScreeningIndividualReviewCreateResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(id, confirmedHits, dismissedHits, comment, auditTrail, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class WatchlistScreeningIndividualReviewCreateResponse {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" confirmedHits: ").append(toIndentedString(confirmedHits)).append("\n");
sb.append(" dismissedHits: ").append(toIndentedString(dismissedHits)).append("\n");
sb.append(" comment: ").append(toIndentedString(comment)).append("\n");
sb.append(" auditTrail: ").append(toIndentedString(auditTrail)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditFreddieMacServices.java | src/main/java/com/plaid/client/model/CreditFreddieMacServices.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.CreditFreddieMacService;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* A collection of objects that describe requests and responses for services.
*/
@ApiModel(description = "A collection of objects that describe requests and responses for services.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CreditFreddieMacServices {
public static final String SERIALIZED_NAME_S_E_R_V_I_C_E = "SERVICE";
@SerializedName(SERIALIZED_NAME_S_E_R_V_I_C_E)
private CreditFreddieMacService SERVICE;
public CreditFreddieMacServices SERVICE(CreditFreddieMacService SERVICE) {
this.SERVICE = SERVICE;
return this;
}
/**
* Get SERVICE
* @return SERVICE
**/
@ApiModelProperty(required = true, value = "")
public CreditFreddieMacService getSERVICE() {
return SERVICE;
}
public void setSERVICE(CreditFreddieMacService SERVICE) {
this.SERVICE = SERVICE;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreditFreddieMacServices creditFreddieMacServices = (CreditFreddieMacServices) o;
return Objects.equals(this.SERVICE, creditFreddieMacServices.SERVICE);
}
@Override
public int hashCode() {
return Objects.hash(SERVICE);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreditFreddieMacServices {\n");
sb.append(" SERVICE: ").append(toIndentedString(SERVICE)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CashflowReportTransactionsGetResponse.java | src/main/java/com/plaid/client/model/CashflowReportTransactionsGetResponse.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.BusinessAccount;
import com.plaid.client.model.CashflowReportTransaction;
import com.plaid.client.model.Item;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* CashflowReportTransactionsGetResponse defines the response schema for `/cashflow_report/transactions/get`
*/
@ApiModel(description = "CashflowReportTransactionsGetResponse defines the response schema for `/cashflow_report/transactions/get`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CashflowReportTransactionsGetResponse {
public static final String SERIALIZED_NAME_ACCOUNTS = "accounts";
@SerializedName(SERIALIZED_NAME_ACCOUNTS)
private List<BusinessAccount> accounts = new ArrayList<>();
public static final String SERIALIZED_NAME_TRANSACTIONS = "transactions";
@SerializedName(SERIALIZED_NAME_TRANSACTIONS)
private List<CashflowReportTransaction> transactions = new ArrayList<>();
public static final String SERIALIZED_NAME_TOTAL_TRANSACTIONS = "total_transactions";
@SerializedName(SERIALIZED_NAME_TOTAL_TRANSACTIONS)
private Integer totalTransactions;
public static final String SERIALIZED_NAME_ITEM = "item";
@SerializedName(SERIALIZED_NAME_ITEM)
private Item item;
public static final String SERIALIZED_NAME_NEXT_CURSOR = "next_cursor";
@SerializedName(SERIALIZED_NAME_NEXT_CURSOR)
private String nextCursor;
public static final String SERIALIZED_NAME_HAS_MORE = "has_more";
@SerializedName(SERIALIZED_NAME_HAS_MORE)
private Boolean hasMore;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public CashflowReportTransactionsGetResponse accounts(List<BusinessAccount> accounts) {
this.accounts = accounts;
return this;
}
public CashflowReportTransactionsGetResponse addAccountsItem(BusinessAccount accountsItem) {
this.accounts.add(accountsItem);
return this;
}
/**
* An array containing the `accounts` associated with the Item for which transactions are being returned. Each transaction can be mapped to its corresponding account via the `account_id` field.
* @return accounts
**/
@ApiModelProperty(required = true, value = "An array containing the `accounts` associated with the Item for which transactions are being returned. Each transaction can be mapped to its corresponding account via the `account_id` field.")
public List<BusinessAccount> getAccounts() {
return accounts;
}
public void setAccounts(List<BusinessAccount> accounts) {
this.accounts = accounts;
}
public CashflowReportTransactionsGetResponse transactions(List<CashflowReportTransaction> transactions) {
this.transactions = transactions;
return this;
}
public CashflowReportTransactionsGetResponse addTransactionsItem(CashflowReportTransaction transactionsItem) {
this.transactions.add(transactionsItem);
return this;
}
/**
* An array containing transactions from the account. Transactions are returned in reverse chronological order, with the most recent at the beginning of the array. The maximum number of transactions returned is determined by the `count` parameter.
* @return transactions
**/
@ApiModelProperty(required = true, value = "An array containing transactions from the account. Transactions are returned in reverse chronological order, with the most recent at the beginning of the array. The maximum number of transactions returned is determined by the `count` parameter.")
public List<CashflowReportTransaction> getTransactions() {
return transactions;
}
public void setTransactions(List<CashflowReportTransaction> transactions) {
this.transactions = transactions;
}
public CashflowReportTransactionsGetResponse totalTransactions(Integer totalTransactions) {
this.totalTransactions = totalTransactions;
return this;
}
/**
* The total number of transactions available within the date range specified. If `total_transactions` is larger than the size of the `transactions` array, more transactions are available and can be fetched via manipulating the `offset` parameter.
* @return totalTransactions
**/
@ApiModelProperty(required = true, value = "The total number of transactions available within the date range specified. If `total_transactions` is larger than the size of the `transactions` array, more transactions are available and can be fetched via manipulating the `offset` parameter.")
public Integer getTotalTransactions() {
return totalTransactions;
}
public void setTotalTransactions(Integer totalTransactions) {
this.totalTransactions = totalTransactions;
}
public CashflowReportTransactionsGetResponse item(Item item) {
this.item = item;
return this;
}
/**
* Get item
* @return item
**/
@ApiModelProperty(required = true, value = "")
public Item getItem() {
return item;
}
public void setItem(Item item) {
this.item = item;
}
public CashflowReportTransactionsGetResponse nextCursor(String nextCursor) {
this.nextCursor = nextCursor;
return this;
}
/**
* Cursor used for fetching any future updates after the latest update provided in this response.
* @return nextCursor
**/
@ApiModelProperty(required = true, value = "Cursor used for fetching any future updates after the latest update provided in this response.")
public String getNextCursor() {
return nextCursor;
}
public void setNextCursor(String nextCursor) {
this.nextCursor = nextCursor;
}
public CashflowReportTransactionsGetResponse hasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
/**
* Represents if more than requested count of transactions exists to be fetched
* @return hasMore
**/
@ApiModelProperty(required = true, value = "Represents if more than requested count of transactions exists to be fetched")
public Boolean getHasMore() {
return hasMore;
}
public void setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
}
public CashflowReportTransactionsGetResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CashflowReportTransactionsGetResponse cashflowReportTransactionsGetResponse = (CashflowReportTransactionsGetResponse) o;
return Objects.equals(this.accounts, cashflowReportTransactionsGetResponse.accounts) &&
Objects.equals(this.transactions, cashflowReportTransactionsGetResponse.transactions) &&
Objects.equals(this.totalTransactions, cashflowReportTransactionsGetResponse.totalTransactions) &&
Objects.equals(this.item, cashflowReportTransactionsGetResponse.item) &&
Objects.equals(this.nextCursor, cashflowReportTransactionsGetResponse.nextCursor) &&
Objects.equals(this.hasMore, cashflowReportTransactionsGetResponse.hasMore) &&
Objects.equals(this.requestId, cashflowReportTransactionsGetResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(accounts, transactions, totalTransactions, item, nextCursor, hasMore, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CashflowReportTransactionsGetResponse {\n");
sb.append(" accounts: ").append(toIndentedString(accounts)).append("\n");
sb.append(" transactions: ").append(toIndentedString(transactions)).append("\n");
sb.append(" totalTransactions: ").append(toIndentedString(totalTransactions)).append("\n");
sb.append(" item: ").append(toIndentedString(item)).append("\n");
sb.append(" nextCursor: ").append(toIndentedString(nextCursor)).append("\n");
sb.append(" hasMore: ").append(toIndentedString(hasMore)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraNetworkInsightsReport.java | src/main/java/com/plaid/client/model/CraNetworkInsightsReport.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.CraNetworkInsightsItem;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.List;
/**
* Contains data for the CRA Network Attributes Report.
*/
@ApiModel(description = "Contains data for the CRA Network Attributes Report.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CraNetworkInsightsReport {
public static final String SERIALIZED_NAME_REPORT_ID = "report_id";
@SerializedName(SERIALIZED_NAME_REPORT_ID)
private String reportId;
public static final String SERIALIZED_NAME_GENERATED_TIME = "generated_time";
@SerializedName(SERIALIZED_NAME_GENERATED_TIME)
private OffsetDateTime generatedTime;
public static final String SERIALIZED_NAME_NETWORK_ATTRIBUTES = "network_attributes";
@SerializedName(SERIALIZED_NAME_NETWORK_ATTRIBUTES)
private Object networkAttributes;
public static final String SERIALIZED_NAME_ITEMS = "items";
@SerializedName(SERIALIZED_NAME_ITEMS)
private List<CraNetworkInsightsItem> items = new ArrayList<>();
public CraNetworkInsightsReport reportId(String reportId) {
this.reportId = reportId;
return this;
}
/**
* The unique identifier associated with the report object.
* @return reportId
**/
@ApiModelProperty(required = true, value = "The unique identifier associated with the report object.")
public String getReportId() {
return reportId;
}
public void setReportId(String reportId) {
this.reportId = reportId;
}
public CraNetworkInsightsReport generatedTime(OffsetDateTime generatedTime) {
this.generatedTime = generatedTime;
return this;
}
/**
* The time when the report was generated.
* @return generatedTime
**/
@ApiModelProperty(required = true, value = "The time when the report was generated.")
public OffsetDateTime getGeneratedTime() {
return generatedTime;
}
public void setGeneratedTime(OffsetDateTime generatedTime) {
this.generatedTime = generatedTime;
}
public CraNetworkInsightsReport networkAttributes(Object networkAttributes) {
this.networkAttributes = networkAttributes;
return this;
}
/**
* A map of network attributes, where the key is a string, and the value is a float, int, or boolean. For a full list of attributes, contact your account manager.
* @return networkAttributes
**/
@ApiModelProperty(required = true, value = "A map of network attributes, where the key is a string, and the value is a float, int, or boolean. For a full list of attributes, contact your account manager.")
public Object getNetworkAttributes() {
return networkAttributes;
}
public void setNetworkAttributes(Object networkAttributes) {
this.networkAttributes = networkAttributes;
}
public CraNetworkInsightsReport items(List<CraNetworkInsightsItem> items) {
this.items = items;
return this;
}
public CraNetworkInsightsReport addItemsItem(CraNetworkInsightsItem itemsItem) {
this.items.add(itemsItem);
return this;
}
/**
* The Items the end user connected in Link.
* @return items
**/
@ApiModelProperty(required = true, value = "The Items the end user connected in Link.")
public List<CraNetworkInsightsItem> getItems() {
return items;
}
public void setItems(List<CraNetworkInsightsItem> items) {
this.items = items;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CraNetworkInsightsReport craNetworkInsightsReport = (CraNetworkInsightsReport) o;
return Objects.equals(this.reportId, craNetworkInsightsReport.reportId) &&
Objects.equals(this.generatedTime, craNetworkInsightsReport.generatedTime) &&
Objects.equals(this.networkAttributes, craNetworkInsightsReport.networkAttributes) &&
Objects.equals(this.items, craNetworkInsightsReport.items);
}
@Override
public int hashCode() {
return Objects.hash(reportId, generatedTime, networkAttributes, items);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CraNetworkInsightsReport {\n");
sb.append(" reportId: ").append(toIndentedString(reportId)).append("\n");
sb.append(" generatedTime: ").append(toIndentedString(generatedTime)).append("\n");
sb.append(" networkAttributes: ").append(toIndentedString(networkAttributes)).append("\n");
sb.append(" items: ").append(toIndentedString(items)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraLoansUpdateResponse.java | src/main/java/com/plaid/client/model/CraLoansUpdateResponse.java | /*
* 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.680.0
*
*
* 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;
/**
* CraLoansUpdateResponse defines the response schema for `/cra/loans/update`.
*/
@ApiModel(description = "CraLoansUpdateResponse defines the response schema for `/cra/loans/update`.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CraLoansUpdateResponse {
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public CraLoansUpdateResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CraLoansUpdateResponse craLoansUpdateResponse = (CraLoansUpdateResponse) o;
return Objects.equals(this.requestId, craLoansUpdateResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CraLoansUpdateResponse {\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BusinessRiskCheck.java | src/main/java/com/plaid/client/model/BusinessRiskCheck.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.BusinessVerificationStatusRiskCheck;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Results from the business risk assessment check
*/
@ApiModel(description = "Results from the business risk assessment check")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class BusinessRiskCheck {
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private BusinessVerificationStatusRiskCheck status;
public static final String SERIALIZED_NAME_SCORE = "score";
@SerializedName(SERIALIZED_NAME_SCORE)
private Integer score;
public BusinessRiskCheck status(BusinessVerificationStatusRiskCheck status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@ApiModelProperty(required = true, value = "")
public BusinessVerificationStatusRiskCheck getStatus() {
return status;
}
public void setStatus(BusinessVerificationStatusRiskCheck status) {
this.status = status;
}
public BusinessRiskCheck score(Integer score) {
this.score = score;
return this;
}
/**
* A score from 0 to 100 indicating the risk assessment for the business
* @return score
**/
@ApiModelProperty(example = "92", required = true, value = "A score from 0 to 100 indicating the risk assessment for the business")
public Integer getScore() {
return score;
}
public void setScore(Integer score) {
this.score = score;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BusinessRiskCheck businessRiskCheck = (BusinessRiskCheck) o;
return Objects.equals(this.status, businessRiskCheck.status) &&
Objects.equals(this.score, businessRiskCheck.score);
}
@Override
public int hashCode() {
return Objects.hash(status, score);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BusinessRiskCheck {\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" score: ").append(toIndentedString(score)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ClientUserIdentityPhoneNumber.java | src/main/java/com/plaid/client/model/ClientUserIdentityPhoneNumber.java | /*
* 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.680.0
*
*
* 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;
/**
* User phone number information.
*/
@ApiModel(description = "User phone number information.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ClientUserIdentityPhoneNumber {
public static final String SERIALIZED_NAME_DATA = "data";
@SerializedName(SERIALIZED_NAME_DATA)
private String data;
public static final String SERIALIZED_NAME_PRIMARY = "primary";
@SerializedName(SERIALIZED_NAME_PRIMARY)
private Boolean primary;
public ClientUserIdentityPhoneNumber data(String data) {
this.data = data;
return this;
}
/**
* User's phone number.
* @return data
**/
@ApiModelProperty(required = true, value = "User's phone number.")
public String getData() {
return data;
}
public void setData(String data) {
this.data = data;
}
public ClientUserIdentityPhoneNumber primary(Boolean primary) {
this.primary = primary;
return this;
}
/**
* Indicates whether this is the primary phone number for the User.
* @return primary
**/
@ApiModelProperty(required = true, value = "Indicates whether this is the primary phone number for the User.")
public Boolean getPrimary() {
return primary;
}
public void setPrimary(Boolean primary) {
this.primary = primary;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ClientUserIdentityPhoneNumber clientUserIdentityPhoneNumber = (ClientUserIdentityPhoneNumber) o;
return Objects.equals(this.data, clientUserIdentityPhoneNumber.data) &&
Objects.equals(this.primary, clientUserIdentityPhoneNumber.primary);
}
@Override
public int hashCode() {
return Objects.hash(data, primary);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ClientUserIdentityPhoneNumber {\n");
sb.append(" data: ").append(toIndentedString(data)).append("\n");
sb.append(" primary: ").append(toIndentedString(primary)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PartnerEndCustomerQuestionnaires.java | src/main/java/com/plaid/client/model/PartnerEndCustomerQuestionnaires.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.PartnerEndCustomerCRAQuestionnaire;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* The questionnaires for the end customer.
*/
@ApiModel(description = "The questionnaires for the end customer.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class PartnerEndCustomerQuestionnaires {
public static final String SERIALIZED_NAME_CRA = "cra";
@SerializedName(SERIALIZED_NAME_CRA)
private PartnerEndCustomerCRAQuestionnaire cra;
public PartnerEndCustomerQuestionnaires cra(PartnerEndCustomerCRAQuestionnaire cra) {
this.cra = cra;
return this;
}
/**
* Get cra
* @return cra
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public PartnerEndCustomerCRAQuestionnaire getCra() {
return cra;
}
public void setCra(PartnerEndCustomerCRAQuestionnaire cra) {
this.cra = cra;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PartnerEndCustomerQuestionnaires partnerEndCustomerQuestionnaires = (PartnerEndCustomerQuestionnaires) o;
return Objects.equals(this.cra, partnerEndCustomerQuestionnaires.cra);
}
@Override
public int hashCode() {
return Objects.hash(cra);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PartnerEndCustomerQuestionnaires {\n");
sb.append(" cra: ").append(toIndentedString(cra)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/NumbersACHNullable.java | src/main/java/com/plaid/client/model/NumbersACHNullable.java | /*
* 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.680.0
*
*
* 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 com.plaid.client.model.NumbersACH;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Identifying information for transferring money to or from a US account via ACH or wire transfer.
*/
@ApiModel(description = "Identifying information for transferring money to or from a US account via ACH or wire transfer.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class NumbersACHNullable {
public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
private String accountId;
public static final String SERIALIZED_NAME_ACCOUNT = "account";
@SerializedName(SERIALIZED_NAME_ACCOUNT)
private String account;
public static final String SERIALIZED_NAME_IS_TOKENIZED_ACCOUNT_NUMBER = "is_tokenized_account_number";
@SerializedName(SERIALIZED_NAME_IS_TOKENIZED_ACCOUNT_NUMBER)
private Boolean isTokenizedAccountNumber;
public static final String SERIALIZED_NAME_ROUTING = "routing";
@SerializedName(SERIALIZED_NAME_ROUTING)
private String routing;
public static final String SERIALIZED_NAME_WIRE_ROUTING = "wire_routing";
@SerializedName(SERIALIZED_NAME_WIRE_ROUTING)
private String wireRouting;
public static final String SERIALIZED_NAME_CAN_TRANSFER_IN = "can_transfer_in";
@SerializedName(SERIALIZED_NAME_CAN_TRANSFER_IN)
private Boolean canTransferIn;
public static final String SERIALIZED_NAME_CAN_TRANSFER_OUT = "can_transfer_out";
@SerializedName(SERIALIZED_NAME_CAN_TRANSFER_OUT)
private Boolean canTransferOut;
public NumbersACHNullable accountId(String accountId) {
this.accountId = accountId;
return this;
}
/**
* The Plaid account ID associated with the account numbers
* @return accountId
**/
@ApiModelProperty(required = true, value = "The Plaid account ID associated with the account numbers")
public String getAccountId() {
return accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public NumbersACHNullable account(String account) {
this.account = account;
return this;
}
/**
* The ACH account number for the account. At certain institutions, including Chase, PNC, and (coming May 2025) US Bank, you will receive \"tokenized\" routing and account numbers, which are not the user's actual account and routing numbers. For important details on how this may impact your integration and on how to avoid fraud, user confusion, and ACH returns, see [Tokenized account numbers](https://plaid.com/docs/auth/#tokenized-account-numbers).
* @return account
**/
@ApiModelProperty(required = true, value = "The ACH account number for the account. At certain institutions, including Chase, PNC, and (coming May 2025) US Bank, you will receive \"tokenized\" routing and account numbers, which are not the user's actual account and routing numbers. For important details on how this may impact your integration and on how to avoid fraud, user confusion, and ACH returns, see [Tokenized account numbers](https://plaid.com/docs/auth/#tokenized-account-numbers).")
public String getAccount() {
return account;
}
public void setAccount(String account) {
this.account = account;
}
public NumbersACHNullable isTokenizedAccountNumber(Boolean isTokenizedAccountNumber) {
this.isTokenizedAccountNumber = isTokenizedAccountNumber;
return this;
}
/**
* Indicates whether the account number is tokenized by the institution. For important details on how tokenized account numbers may impact your integration, see [Tokenized account numbers](https://plaid.com/docs/auth/#tokenized-account-numbers).
* @return isTokenizedAccountNumber
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Indicates whether the account number is tokenized by the institution. For important details on how tokenized account numbers may impact your integration, see [Tokenized account numbers](https://plaid.com/docs/auth/#tokenized-account-numbers).")
public Boolean getIsTokenizedAccountNumber() {
return isTokenizedAccountNumber;
}
public void setIsTokenizedAccountNumber(Boolean isTokenizedAccountNumber) {
this.isTokenizedAccountNumber = isTokenizedAccountNumber;
}
public NumbersACHNullable routing(String routing) {
this.routing = routing;
return this;
}
/**
* The ACH routing number for the account. This may be a tokenized routing number. For more information, see [Tokenized account numbers](https://plaid.com/docs/auth/#tokenized-account-numbers).
* @return routing
**/
@ApiModelProperty(required = true, value = "The ACH routing number for the account. This may be a tokenized routing number. For more information, see [Tokenized account numbers](https://plaid.com/docs/auth/#tokenized-account-numbers).")
public String getRouting() {
return routing;
}
public void setRouting(String routing) {
this.routing = routing;
}
public NumbersACHNullable wireRouting(String wireRouting) {
this.wireRouting = wireRouting;
return this;
}
/**
* The wire transfer routing number for the account. This field is only populated if the institution is known to use a separate wire transfer routing number. Many institutions do not have a separate wire routing number and use the ACH routing number for wires instead. It is recommended to have the end user manually confirm their wire routing number before sending any wires to their account, especially if this field is `null`.
* @return wireRouting
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The wire transfer routing number for the account. This field is only populated if the institution is known to use a separate wire transfer routing number. Many institutions do not have a separate wire routing number and use the ACH routing number for wires instead. It is recommended to have the end user manually confirm their wire routing number before sending any wires to their account, especially if this field is `null`.")
public String getWireRouting() {
return wireRouting;
}
public void setWireRouting(String wireRouting) {
this.wireRouting = wireRouting;
}
public NumbersACHNullable canTransferIn(Boolean canTransferIn) {
this.canTransferIn = canTransferIn;
return this;
}
/**
* Whether the account supports ACH transfers into the account
* @return canTransferIn
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Whether the account supports ACH transfers into the account")
public Boolean getCanTransferIn() {
return canTransferIn;
}
public void setCanTransferIn(Boolean canTransferIn) {
this.canTransferIn = canTransferIn;
}
public NumbersACHNullable canTransferOut(Boolean canTransferOut) {
this.canTransferOut = canTransferOut;
return this;
}
/**
* Whether the account supports ACH transfers out of the account
* @return canTransferOut
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Whether the account supports ACH transfers out of the account")
public Boolean getCanTransferOut() {
return canTransferOut;
}
public void setCanTransferOut(Boolean canTransferOut) {
this.canTransferOut = canTransferOut;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
NumbersACHNullable numbersACHNullable = (NumbersACHNullable) o;
return Objects.equals(this.accountId, numbersACHNullable.accountId) &&
Objects.equals(this.account, numbersACHNullable.account) &&
Objects.equals(this.isTokenizedAccountNumber, numbersACHNullable.isTokenizedAccountNumber) &&
Objects.equals(this.routing, numbersACHNullable.routing) &&
Objects.equals(this.wireRouting, numbersACHNullable.wireRouting) &&
Objects.equals(this.canTransferIn, numbersACHNullable.canTransferIn) &&
Objects.equals(this.canTransferOut, numbersACHNullable.canTransferOut);
}
@Override
public int hashCode() {
return Objects.hash(accountId, account, isTokenizedAccountNumber, routing, wireRouting, canTransferIn, canTransferOut);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class NumbersACHNullable {\n");
sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
sb.append(" account: ").append(toIndentedString(account)).append("\n");
sb.append(" isTokenizedAccountNumber: ").append(toIndentedString(isTokenizedAccountNumber)).append("\n");
sb.append(" routing: ").append(toIndentedString(routing)).append("\n");
sb.append(" wireRouting: ").append(toIndentedString(wireRouting)).append("\n");
sb.append(" canTransferIn: ").append(toIndentedString(canTransferIn)).append("\n");
sb.append(" canTransferOut: ").append(toIndentedString(canTransferOut)).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 ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.