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/PartnerEndCustomerQuestionnaireStatus.java
src/main/java/com/plaid/client/model/PartnerEndCustomerQuestionnaireStatus.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 status of the end customer&#39;s security questionnaire. */ @JsonAdapter(PartnerEndCustomerQuestionnaireStatus.Adapter.class) public enum PartnerEndCustomerQuestionnaireStatus { NOT_STARTED("NOT_STARTED"), RECEIVED("RECEIVED"), COMPLETE("COMPLETE"), // 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; PartnerEndCustomerQuestionnaireStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PartnerEndCustomerQuestionnaireStatus fromValue(String value) { for (PartnerEndCustomerQuestionnaireStatus b : PartnerEndCustomerQuestionnaireStatus.values()) { if (b.value.equals(value)) { return b; } } return PartnerEndCustomerQuestionnaireStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<PartnerEndCustomerQuestionnaireStatus> { @Override public void write(final JsonWriter jsonWriter, final PartnerEndCustomerQuestionnaireStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PartnerEndCustomerQuestionnaireStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PartnerEndCustomerQuestionnaireStatus.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/EmploymentSourceType.java
src/main/java/com/plaid/client/model/EmploymentSourceType.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 types of source employment data that users should be able to share */ @JsonAdapter(EmploymentSourceType.Adapter.class) public enum EmploymentSourceType { BANK("bank"), PAYROLL("payroll"), // 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; EmploymentSourceType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static EmploymentSourceType fromValue(String value) { for (EmploymentSourceType b : EmploymentSourceType.values()) { if (b.value.equals(value)) { return b; } } return EmploymentSourceType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<EmploymentSourceType> { @Override public void write(final JsonWriter jsonWriter, final EmploymentSourceType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public EmploymentSourceType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return EmploymentSourceType.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/TotalReportOutflowAmount60d.java
src/main/java/com/plaid/client/model/TotalReportOutflowAmount60d.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&#39;s accounts in the last 60 days. 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 last 60 days. 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 TotalReportOutflowAmount60d { 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 TotalReportOutflowAmount60d 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 TotalReportOutflowAmount60d 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 TotalReportOutflowAmount60d unofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; return this; } /** * The unofficial currency code associated with the amount or balance. Always &#x60;null&#x60; if &#x60;iso_currency_code&#x60; 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; } TotalReportOutflowAmount60d totalReportOutflowAmount60d = (TotalReportOutflowAmount60d) o; return Objects.equals(this.amount, totalReportOutflowAmount60d.amount) && Objects.equals(this.isoCurrencyCode, totalReportOutflowAmount60d.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, totalReportOutflowAmount60d.unofficialCurrencyCode); } @Override public int hashCode() { return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TotalReportOutflowAmount60d {\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/ProtectIncidentEventResponse.java
src/main/java/com/plaid/client/model/ProtectIncidentEventResponse.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.ProtectIncidentAmount; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * Details about the incident event. */ @ApiModel(description = "Details about the incident event.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProtectIncidentEventResponse { public static final String SERIALIZED_NAME_PROTECT_EVENT_ID = "protect_event_id"; @SerializedName(SERIALIZED_NAME_PROTECT_EVENT_ID) private String protectEventId; 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_IDV_SESSION_ID = "idv_session_id"; @SerializedName(SERIALIZED_NAME_IDV_SESSION_ID) private String idvSessionId; public static final String SERIALIZED_NAME_SIGNAL_CLIENT_TRANSACTION_ID = "signal_client_transaction_id"; @SerializedName(SERIALIZED_NAME_SIGNAL_CLIENT_TRANSACTION_ID) private String signalClientTransactionId; public static final String SERIALIZED_NAME_INTERNAL_REFERENCE = "internal_reference"; @SerializedName(SERIALIZED_NAME_INTERNAL_REFERENCE) private String internalReference; public static final String SERIALIZED_NAME_TIME = "time"; @SerializedName(SERIALIZED_NAME_TIME) private OffsetDateTime time; public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private ProtectIncidentAmount amount; public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public ProtectIncidentEventResponse protectEventId(String protectEventId) { this.protectEventId = protectEventId; return this; } /** * A globally unique identifier representing a Protect event that may be associated with this incident. * @return protectEventId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A globally unique identifier representing a Protect event that may be associated with this incident.") public String getProtectEventId() { return protectEventId; } public void setProtectEventId(String protectEventId) { this.protectEventId = protectEventId; } public ProtectIncidentEventResponse linkSessionId(String linkSessionId) { this.linkSessionId = linkSessionId; return this; } /** * A unique identifier for a Link session that may be associated with this incident. * @return linkSessionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique identifier for a Link session that may be associated with this incident.") public String getLinkSessionId() { return linkSessionId; } public void setLinkSessionId(String linkSessionId) { this.linkSessionId = linkSessionId; } public ProtectIncidentEventResponse idvSessionId(String idvSessionId) { this.idvSessionId = idvSessionId; return this; } /** * A unique identifier for an Identity Verification session that may be associated with this incident. * @return idvSessionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique identifier for an Identity Verification session that may be associated with this incident.") public String getIdvSessionId() { return idvSessionId; } public void setIdvSessionId(String idvSessionId) { this.idvSessionId = idvSessionId; } public ProtectIncidentEventResponse signalClientTransactionId(String signalClientTransactionId) { this.signalClientTransactionId = signalClientTransactionId; return this; } /** * The unique ID used to refer to a Signal transaction evaluation that may be associated with this incident. * @return signalClientTransactionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The unique ID used to refer to a Signal transaction evaluation that may be associated with this incident.") public String getSignalClientTransactionId() { return signalClientTransactionId; } public void setSignalClientTransactionId(String signalClientTransactionId) { this.signalClientTransactionId = signalClientTransactionId; } public ProtectIncidentEventResponse internalReference(String internalReference) { this.internalReference = internalReference; return this; } /** * A unique ID representing the incident in your system. Personally identifiable information, such as an email address or phone number, should not be used in this field. * @return internalReference **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique ID representing the incident in your system. Personally identifiable information, such as an email address or phone number, should not be used in this field.") public String getInternalReference() { return internalReference; } public void setInternalReference(String internalReference) { this.internalReference = internalReference; } public ProtectIncidentEventResponse time(OffsetDateTime time) { this.time = time; return this; } /** * The timestamp when the incident occurred, in ISO 8601 format (e.g., &#39;2020-07-24T03:26:02Z&#39;). * @return time **/ @javax.annotation.Nullable @ApiModelProperty(value = "The timestamp when the incident occurred, in ISO 8601 format (e.g., '2020-07-24T03:26:02Z').") public OffsetDateTime getTime() { return time; } public void setTime(OffsetDateTime time) { this.time = time; } public ProtectIncidentEventResponse amount(ProtectIncidentAmount amount) { this.amount = amount; return this; } /** * Get amount * @return amount **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ProtectIncidentAmount getAmount() { return amount; } public void setAmount(ProtectIncidentAmount amount) { this.amount = amount; } public ProtectIncidentEventResponse itemId(String itemId) { this.itemId = itemId; return this; } /** * The &#x60;item_id&#x60; associated with the Item related to this incident. * @return itemId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The `item_id` associated with the Item related to this incident.") 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; } ProtectIncidentEventResponse protectIncidentEventResponse = (ProtectIncidentEventResponse) o; return Objects.equals(this.protectEventId, protectIncidentEventResponse.protectEventId) && Objects.equals(this.linkSessionId, protectIncidentEventResponse.linkSessionId) && Objects.equals(this.idvSessionId, protectIncidentEventResponse.idvSessionId) && Objects.equals(this.signalClientTransactionId, protectIncidentEventResponse.signalClientTransactionId) && Objects.equals(this.internalReference, protectIncidentEventResponse.internalReference) && Objects.equals(this.time, protectIncidentEventResponse.time) && Objects.equals(this.amount, protectIncidentEventResponse.amount) && Objects.equals(this.itemId, protectIncidentEventResponse.itemId); } @Override public int hashCode() { return Objects.hash(protectEventId, linkSessionId, idvSessionId, signalClientTransactionId, internalReference, time, amount, itemId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProtectIncidentEventResponse {\n"); sb.append(" protectEventId: ").append(toIndentedString(protectEventId)).append("\n"); sb.append(" linkSessionId: ").append(toIndentedString(linkSessionId)).append("\n"); sb.append(" idvSessionId: ").append(toIndentedString(idvSessionId)).append("\n"); sb.append(" signalClientTransactionId: ").append(toIndentedString(signalClientTransactionId)).append("\n"); sb.append(" internalReference: ").append(toIndentedString(internalReference)).append("\n"); sb.append(" time: ").append(toIndentedString(time)).append("\n"); sb.append(" amount: ").append(toIndentedString(amount)).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/AccountAccess.java
src/main/java/com/plaid/client/model/AccountAccess.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.AccountProductAccessNullable; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Allow or disallow product access by account. Unlisted (e.g. missing) accounts will be considered &#x60;new_accounts&#x60;. */ @ApiModel(description = "Allow or disallow product access by account. Unlisted (e.g. missing) accounts will be considered `new_accounts`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AccountAccess { public static final String SERIALIZED_NAME_UNIQUE_ID = "unique_id"; @SerializedName(SERIALIZED_NAME_UNIQUE_ID) private String uniqueId; public static final String SERIALIZED_NAME_AUTHORIZED = "authorized"; @SerializedName(SERIALIZED_NAME_AUTHORIZED) private Boolean authorized = true; public static final String SERIALIZED_NAME_ACCOUNT_PRODUCT_ACCESS = "account_product_access"; @SerializedName(SERIALIZED_NAME_ACCOUNT_PRODUCT_ACCESS) private AccountProductAccessNullable accountProductAccess; public AccountAccess uniqueId(String uniqueId) { this.uniqueId = uniqueId; return this; } /** * The unique account identifier for this account. This value must match that returned by the data access API for this account. * @return uniqueId **/ @ApiModelProperty(required = true, value = "The unique account identifier for this account. This value must match that returned by the data access API for this account.") public String getUniqueId() { return uniqueId; } public void setUniqueId(String uniqueId) { this.uniqueId = uniqueId; } public AccountAccess authorized(Boolean authorized) { this.authorized = authorized; return this; } /** * Allow the application to see this account (and associated details, including balance) in the list of accounts If unset, defaults to &#x60;true&#x60;. * @return authorized **/ @javax.annotation.Nullable @ApiModelProperty(value = "Allow the application to see this account (and associated details, including balance) in the list of accounts If unset, defaults to `true`.") public Boolean getAuthorized() { return authorized; } public void setAuthorized(Boolean authorized) { this.authorized = authorized; } public AccountAccess accountProductAccess(AccountProductAccessNullable accountProductAccess) { this.accountProductAccess = accountProductAccess; return this; } /** * Get accountProductAccess * @return accountProductAccess **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AccountProductAccessNullable getAccountProductAccess() { return accountProductAccess; } public void setAccountProductAccess(AccountProductAccessNullable accountProductAccess) { this.accountProductAccess = accountProductAccess; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AccountAccess accountAccess = (AccountAccess) o; return Objects.equals(this.uniqueId, accountAccess.uniqueId) && Objects.equals(this.authorized, accountAccess.authorized) && Objects.equals(this.accountProductAccess, accountAccess.accountProductAccess); } @Override public int hashCode() { return Objects.hash(uniqueId, authorized, accountProductAccess); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AccountAccess {\n"); sb.append(" uniqueId: ").append(toIndentedString(uniqueId)).append("\n"); sb.append(" authorized: ").append(toIndentedString(authorized)).append("\n"); sb.append(" accountProductAccess: ").append(toIndentedString(accountProductAccess)).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/IdentityVerificationResponseUserName.java
src/main/java/com/plaid/client/model/IdentityVerificationResponseUserName.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 full name provided by the user. If the user has not submitted their name, this field will be null. Otherwise, both fields are guaranteed to be filled. */ @ApiModel(description = "The full name provided by the user. If the user has not submitted their name, this field will be null. Otherwise, both fields are guaranteed to be filled.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityVerificationResponseUserName { public static final String SERIALIZED_NAME_GIVEN_NAME = "given_name"; @SerializedName(SERIALIZED_NAME_GIVEN_NAME) private String givenName; public static final String SERIALIZED_NAME_FAMILY_NAME = "family_name"; @SerializedName(SERIALIZED_NAME_FAMILY_NAME) private String familyName; public IdentityVerificationResponseUserName givenName(String givenName) { this.givenName = givenName; return this; } /** * A string with at least one non-whitespace character, with a max length of 100 characters. * @return givenName **/ @ApiModelProperty(example = "Leslie", required = true, value = "A string with at least one non-whitespace character, with a max length of 100 characters.") public String getGivenName() { return givenName; } public void setGivenName(String givenName) { this.givenName = givenName; } public IdentityVerificationResponseUserName familyName(String familyName) { this.familyName = familyName; return this; } /** * A string with at least one non-whitespace character, with a max length of 100 characters. * @return familyName **/ @ApiModelProperty(example = "Knope", required = true, value = "A string with at least one non-whitespace character, with a max length of 100 characters.") public String getFamilyName() { return familyName; } public void setFamilyName(String familyName) { this.familyName = familyName; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IdentityVerificationResponseUserName identityVerificationResponseUserName = (IdentityVerificationResponseUserName) o; return Objects.equals(this.givenName, identityVerificationResponseUserName.givenName) && Objects.equals(this.familyName, identityVerificationResponseUserName.familyName); } @Override public int hashCode() { return Objects.hash(givenName, familyName); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityVerificationResponseUserName {\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/PaymentInitiationRecipientCreateResponse.java
src/main/java/com/plaid/client/model/PaymentInitiationRecipientCreateResponse.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; /** * PaymentInitiationRecipientCreateResponse defines the response schema for &#x60;/payment_initation/recipient/create&#x60; */ @ApiModel(description = "PaymentInitiationRecipientCreateResponse defines the response schema for `/payment_initation/recipient/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentInitiationRecipientCreateResponse { public static final String SERIALIZED_NAME_RECIPIENT_ID = "recipient_id"; @SerializedName(SERIALIZED_NAME_RECIPIENT_ID) private String recipientId; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public PaymentInitiationRecipientCreateResponse recipientId(String recipientId) { this.recipientId = recipientId; return this; } /** * A unique ID identifying the recipient * @return recipientId **/ @ApiModelProperty(required = true, value = "A unique ID identifying the recipient") public String getRecipientId() { return recipientId; } public void setRecipientId(String recipientId) { this.recipientId = recipientId; } public PaymentInitiationRecipientCreateResponse 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; } PaymentInitiationRecipientCreateResponse paymentInitiationRecipientCreateResponse = (PaymentInitiationRecipientCreateResponse) o; return Objects.equals(this.recipientId, paymentInitiationRecipientCreateResponse.recipientId) && Objects.equals(this.requestId, paymentInitiationRecipientCreateResponse.requestId); } @Override public int hashCode() { return Objects.hash(recipientId, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentInitiationRecipientCreateResponse {\n"); sb.append(" recipientId: ").append(toIndentedString(recipientId)).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/WatchlistScreeningSearchTerms.java
src/main/java/com/plaid/client/model/WatchlistScreeningSearchTerms.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; /** * Search terms for creating an individual watchlist screening */ @ApiModel(description = "Search terms for creating an individual watchlist screening") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WatchlistScreeningSearchTerms { 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_LEGAL_NAME = "legal_name"; @SerializedName(SERIALIZED_NAME_LEGAL_NAME) private String legalName; 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_DOCUMENT_NUMBER = "document_number"; @SerializedName(SERIALIZED_NAME_DOCUMENT_NUMBER) private String documentNumber; public static final String SERIALIZED_NAME_COUNTRY = "country"; @SerializedName(SERIALIZED_NAME_COUNTRY) private String country; public static final String SERIALIZED_NAME_VERSION = "version"; @SerializedName(SERIALIZED_NAME_VERSION) private Integer version; public WatchlistScreeningSearchTerms 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 WatchlistScreeningSearchTerms legalName(String legalName) { this.legalName = legalName; return this; } /** * The legal name of the individual being screened. Must have at least one alphabetical character, have a maximum length of 100 characters, and not include leading or trailing spaces. * @return legalName **/ @ApiModelProperty(example = "Aleksey Potemkin", required = true, value = "The legal name of the individual being screened. Must have at least one alphabetical character, have a maximum length of 100 characters, and not include leading or trailing spaces.") public String getLegalName() { return legalName; } public void setLegalName(String legalName) { this.legalName = legalName; } public WatchlistScreeningSearchTerms 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", required = true, 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 WatchlistScreeningSearchTerms documentNumber(String documentNumber) { this.documentNumber = documentNumber; return this; } /** * The numeric or alphanumeric identifier associated with this document. Must be between 4 and 32 characters long, and cannot have leading or trailing spaces. * @return documentNumber **/ @javax.annotation.Nullable @ApiModelProperty(example = "C31195855", required = true, value = "The numeric or alphanumeric identifier associated with this document. Must be between 4 and 32 characters long, and cannot have leading or trailing spaces.") public String getDocumentNumber() { return documentNumber; } public void setDocumentNumber(String documentNumber) { this.documentNumber = documentNumber; } public WatchlistScreeningSearchTerms country(String country) { this.country = country; return this; } /** * Valid, capitalized, two-letter ISO code representing the country of this object. Must be in ISO 3166-1 alpha-2 form. * @return country **/ @javax.annotation.Nullable @ApiModelProperty(example = "US", required = true, value = "Valid, capitalized, two-letter ISO code representing the country of this object. Must be in ISO 3166-1 alpha-2 form.") public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public WatchlistScreeningSearchTerms version(Integer version) { this.version = version; return this; } /** * The current version of the search terms. Starts at &#x60;1&#x60; and increments with each edit to &#x60;search_terms&#x60;. * @return version **/ @ApiModelProperty(example = "1", required = true, value = "The current version of the search terms. Starts at `1` and increments with each edit to `search_terms`.") public Integer getVersion() { return version; } public void setVersion(Integer version) { this.version = version; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } WatchlistScreeningSearchTerms watchlistScreeningSearchTerms = (WatchlistScreeningSearchTerms) o; return Objects.equals(this.watchlistProgramId, watchlistScreeningSearchTerms.watchlistProgramId) && Objects.equals(this.legalName, watchlistScreeningSearchTerms.legalName) && Objects.equals(this.dateOfBirth, watchlistScreeningSearchTerms.dateOfBirth) && Objects.equals(this.documentNumber, watchlistScreeningSearchTerms.documentNumber) && Objects.equals(this.country, watchlistScreeningSearchTerms.country) && Objects.equals(this.version, watchlistScreeningSearchTerms.version); } @Override public int hashCode() { return Objects.hash(watchlistProgramId, legalName, dateOfBirth, documentNumber, country, version); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WatchlistScreeningSearchTerms {\n"); sb.append(" watchlistProgramId: ").append(toIndentedString(watchlistProgramId)).append("\n"); sb.append(" legalName: ").append(toIndentedString(legalName)).append("\n"); sb.append(" dateOfBirth: ").append(toIndentedString(dateOfBirth)).append("\n"); sb.append(" documentNumber: ").append(toIndentedString(documentNumber)).append("\n"); sb.append(" country: ").append(toIndentedString(country)).append("\n"); sb.append(" version: ").append(toIndentedString(version)).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/CashflowReportMonthlySummaryStartingBalance.java
src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryStartingBalance.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 starting balance of the month. This will be the same as the ending balance of the previous month. This field will not be available for the first monthly summary. */ @ApiModel(description = "The starting balance of the month. This will be the same as the ending balance of the previous month. This field will not be available for the first monthly summary.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CashflowReportMonthlySummaryStartingBalance { 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 CashflowReportMonthlySummaryStartingBalance 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 CashflowReportMonthlySummaryStartingBalance isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO-4217 currency code of the amount. Always &#x60;null&#x60; if &#x60;unofficial_currency_code&#x60; is non-&#x60;null&#x60; * @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 CashflowReportMonthlySummaryStartingBalance unofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; return this; } /** * The unofficial currency code of the amount. Always &#x60;null&#x60; if &#x60;iso_currency_code&#x60; is non-&#x60;null&#x60;. 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; } CashflowReportMonthlySummaryStartingBalance cashflowReportMonthlySummaryStartingBalance = (CashflowReportMonthlySummaryStartingBalance) o; return Objects.equals(this.amount, cashflowReportMonthlySummaryStartingBalance.amount) && Objects.equals(this.isoCurrencyCode, cashflowReportMonthlySummaryStartingBalance.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, cashflowReportMonthlySummaryStartingBalance.unofficialCurrencyCode); } @Override public int hashCode() { return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CashflowReportMonthlySummaryStartingBalance {\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/PaymentInitiationConsentProcessingMode.java
src/main/java/com/plaid/client/model/PaymentInitiationConsentProcessingMode.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; /** * Decides the mode under which the payment processing should be performed, using &#x60;IMMEDIATE&#x60; as default. &#x60;IMMEDIATE&#x60;: Will immediately execute the payment, waiting for a response from the ASPSP before returning the result of the payment initiation. This is ideal for user-present flows. &#x60;ASYNC&#x60;: Will accept a payment execution request and schedule it for processing, immediately returning the new &#x60;payment_id&#x60;. Listen for webhooks to obtain real-time updates on the payment status. This is ideal for non user-present flows. */ @JsonAdapter(PaymentInitiationConsentProcessingMode.Adapter.class) public enum PaymentInitiationConsentProcessingMode { ASYNC("ASYNC"), IMMEDIATE("IMMEDIATE"), // 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; PaymentInitiationConsentProcessingMode(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PaymentInitiationConsentProcessingMode fromValue(String value) { for (PaymentInitiationConsentProcessingMode b : PaymentInitiationConsentProcessingMode.values()) { if (b.value.equals(value)) { return b; } } return PaymentInitiationConsentProcessingMode.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<PaymentInitiationConsentProcessingMode> { @Override public void write(final JsonWriter jsonWriter, final PaymentInitiationConsentProcessingMode enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PaymentInitiationConsentProcessingMode read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PaymentInitiationConsentProcessingMode.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/PaymentInitiationMetadata.java
src/main/java/com/plaid/client/model/PaymentInitiationMetadata.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.PaymentInitiationStandingOrderMetadata; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.HashMap; import java.util.List; import java.util.Map; /** * Metadata that captures what specific payment configurations an institution supports when making Payment Initiation requests. */ @ApiModel(description = "Metadata that captures what specific payment configurations an institution supports when making Payment Initiation requests.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentInitiationMetadata { public static final String SERIALIZED_NAME_SUPPORTS_INTERNATIONAL_PAYMENTS = "supports_international_payments"; @SerializedName(SERIALIZED_NAME_SUPPORTS_INTERNATIONAL_PAYMENTS) private Boolean supportsInternationalPayments; public static final String SERIALIZED_NAME_SUPPORTS_SEPA_INSTANT = "supports_sepa_instant"; @SerializedName(SERIALIZED_NAME_SUPPORTS_SEPA_INSTANT) private Boolean supportsSepaInstant; public static final String SERIALIZED_NAME_MAXIMUM_PAYMENT_AMOUNT = "maximum_payment_amount"; @SerializedName(SERIALIZED_NAME_MAXIMUM_PAYMENT_AMOUNT) private Map<String, String> maximumPaymentAmount = new HashMap<>(); public static final String SERIALIZED_NAME_SUPPORTS_REFUND_DETAILS = "supports_refund_details"; @SerializedName(SERIALIZED_NAME_SUPPORTS_REFUND_DETAILS) private Boolean supportsRefundDetails; public static final String SERIALIZED_NAME_STANDING_ORDER_METADATA = "standing_order_metadata"; @SerializedName(SERIALIZED_NAME_STANDING_ORDER_METADATA) private PaymentInitiationStandingOrderMetadata standingOrderMetadata; public static final String SERIALIZED_NAME_SUPPORTS_PAYMENT_CONSENTS = "supports_payment_consents"; @SerializedName(SERIALIZED_NAME_SUPPORTS_PAYMENT_CONSENTS) private Boolean supportsPaymentConsents; public PaymentInitiationMetadata supportsInternationalPayments(Boolean supportsInternationalPayments) { this.supportsInternationalPayments = supportsInternationalPayments; return this; } /** * Indicates whether the institution supports payments from a different country. * @return supportsInternationalPayments **/ @ApiModelProperty(required = true, value = "Indicates whether the institution supports payments from a different country.") public Boolean getSupportsInternationalPayments() { return supportsInternationalPayments; } public void setSupportsInternationalPayments(Boolean supportsInternationalPayments) { this.supportsInternationalPayments = supportsInternationalPayments; } public PaymentInitiationMetadata supportsSepaInstant(Boolean supportsSepaInstant) { this.supportsSepaInstant = supportsSepaInstant; return this; } /** * Indicates whether the institution supports SEPA Instant payments. * @return supportsSepaInstant **/ @ApiModelProperty(required = true, value = "Indicates whether the institution supports SEPA Instant payments.") public Boolean getSupportsSepaInstant() { return supportsSepaInstant; } public void setSupportsSepaInstant(Boolean supportsSepaInstant) { this.supportsSepaInstant = supportsSepaInstant; } public PaymentInitiationMetadata maximumPaymentAmount(Map<String, String> maximumPaymentAmount) { this.maximumPaymentAmount = maximumPaymentAmount; return this; } public PaymentInitiationMetadata putMaximumPaymentAmountItem(String key, String maximumPaymentAmountItem) { this.maximumPaymentAmount.put(key, maximumPaymentAmountItem); return this; } /** * A mapping of currency to maximum payment amount (denominated in the smallest unit of currency) supported by the institution. Example: &#x60;{\&quot;GBP\&quot;: \&quot;10000\&quot;}&#x60; * @return maximumPaymentAmount **/ @ApiModelProperty(required = true, value = "A mapping of currency to maximum payment amount (denominated in the smallest unit of currency) supported by the institution. Example: `{\"GBP\": \"10000\"}` ") public Map<String, String> getMaximumPaymentAmount() { return maximumPaymentAmount; } public void setMaximumPaymentAmount(Map<String, String> maximumPaymentAmount) { this.maximumPaymentAmount = maximumPaymentAmount; } public PaymentInitiationMetadata supportsRefundDetails(Boolean supportsRefundDetails) { this.supportsRefundDetails = supportsRefundDetails; return this; } /** * Indicates whether the institution supports returning refund details when initiating a payment. * @return supportsRefundDetails **/ @ApiModelProperty(required = true, value = "Indicates whether the institution supports returning refund details when initiating a payment.") public Boolean getSupportsRefundDetails() { return supportsRefundDetails; } public void setSupportsRefundDetails(Boolean supportsRefundDetails) { this.supportsRefundDetails = supportsRefundDetails; } public PaymentInitiationMetadata standingOrderMetadata(PaymentInitiationStandingOrderMetadata standingOrderMetadata) { this.standingOrderMetadata = standingOrderMetadata; return this; } /** * Get standingOrderMetadata * @return standingOrderMetadata **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public PaymentInitiationStandingOrderMetadata getStandingOrderMetadata() { return standingOrderMetadata; } public void setStandingOrderMetadata(PaymentInitiationStandingOrderMetadata standingOrderMetadata) { this.standingOrderMetadata = standingOrderMetadata; } public PaymentInitiationMetadata supportsPaymentConsents(Boolean supportsPaymentConsents) { this.supportsPaymentConsents = supportsPaymentConsents; return this; } /** * Indicates whether the institution supports payment consents. * @return supportsPaymentConsents **/ @ApiModelProperty(required = true, value = "Indicates whether the institution supports payment consents.") public Boolean getSupportsPaymentConsents() { return supportsPaymentConsents; } public void setSupportsPaymentConsents(Boolean supportsPaymentConsents) { this.supportsPaymentConsents = supportsPaymentConsents; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaymentInitiationMetadata paymentInitiationMetadata = (PaymentInitiationMetadata) o; return Objects.equals(this.supportsInternationalPayments, paymentInitiationMetadata.supportsInternationalPayments) && Objects.equals(this.supportsSepaInstant, paymentInitiationMetadata.supportsSepaInstant) && Objects.equals(this.maximumPaymentAmount, paymentInitiationMetadata.maximumPaymentAmount) && Objects.equals(this.supportsRefundDetails, paymentInitiationMetadata.supportsRefundDetails) && Objects.equals(this.standingOrderMetadata, paymentInitiationMetadata.standingOrderMetadata) && Objects.equals(this.supportsPaymentConsents, paymentInitiationMetadata.supportsPaymentConsents); } @Override public int hashCode() { return Objects.hash(supportsInternationalPayments, supportsSepaInstant, maximumPaymentAmount, supportsRefundDetails, standingOrderMetadata, supportsPaymentConsents); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentInitiationMetadata {\n"); sb.append(" supportsInternationalPayments: ").append(toIndentedString(supportsInternationalPayments)).append("\n"); sb.append(" supportsSepaInstant: ").append(toIndentedString(supportsSepaInstant)).append("\n"); sb.append(" maximumPaymentAmount: ").append(toIndentedString(maximumPaymentAmount)).append("\n"); sb.append(" supportsRefundDetails: ").append(toIndentedString(supportsRefundDetails)).append("\n"); sb.append(" standingOrderMetadata: ").append(toIndentedString(standingOrderMetadata)).append("\n"); sb.append(" supportsPaymentConsents: ").append(toIndentedString(supportsPaymentConsents)).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/Paystub.java
src/main/java/com/plaid/client/model/Paystub.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.Deductions; import com.plaid.client.model.Earnings; import com.plaid.client.model.Employee; import com.plaid.client.model.EmploymentDetails; import com.plaid.client.model.IncomeBreakdown; import com.plaid.client.model.NetPay; import com.plaid.client.model.PayPeriodDetails; import com.plaid.client.model.PaystubDetails; import com.plaid.client.model.PaystubEmployer; import com.plaid.client.model.PaystubYTDDetails; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * An object representing data extracted from the end user&#39;s paystub. */ @ApiModel(description = "An object representing data extracted from the end user's paystub.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Paystub { public static final String SERIALIZED_NAME_DEDUCTIONS = "deductions"; @SerializedName(SERIALIZED_NAME_DEDUCTIONS) private Deductions deductions; public static final String SERIALIZED_NAME_DOC_ID = "doc_id"; @SerializedName(SERIALIZED_NAME_DOC_ID) private String docId; public static final String SERIALIZED_NAME_EARNINGS = "earnings"; @SerializedName(SERIALIZED_NAME_EARNINGS) private Earnings earnings; public static final String SERIALIZED_NAME_EMPLOYEE = "employee"; @SerializedName(SERIALIZED_NAME_EMPLOYEE) private Employee employee; public static final String SERIALIZED_NAME_EMPLOYER = "employer"; @SerializedName(SERIALIZED_NAME_EMPLOYER) private PaystubEmployer employer; public static final String SERIALIZED_NAME_EMPLOYMENT_DETAILS = "employment_details"; @SerializedName(SERIALIZED_NAME_EMPLOYMENT_DETAILS) private EmploymentDetails employmentDetails; public static final String SERIALIZED_NAME_NET_PAY = "net_pay"; @SerializedName(SERIALIZED_NAME_NET_PAY) private NetPay netPay; public static final String SERIALIZED_NAME_PAY_PERIOD_DETAILS = "pay_period_details"; @SerializedName(SERIALIZED_NAME_PAY_PERIOD_DETAILS) private PayPeriodDetails payPeriodDetails; public static final String SERIALIZED_NAME_PAYSTUB_DETAILS = "paystub_details"; @SerializedName(SERIALIZED_NAME_PAYSTUB_DETAILS) private PaystubDetails paystubDetails; public static final String SERIALIZED_NAME_INCOME_BREAKDOWN = "income_breakdown"; @SerializedName(SERIALIZED_NAME_INCOME_BREAKDOWN) private List<IncomeBreakdown> incomeBreakdown = null; public static final String SERIALIZED_NAME_YTD_EARNINGS = "ytd_earnings"; @SerializedName(SERIALIZED_NAME_YTD_EARNINGS) private PaystubYTDDetails ytdEarnings; public Paystub deductions(Deductions deductions) { this.deductions = deductions; return this; } /** * Get deductions * @return deductions **/ @ApiModelProperty(required = true, value = "") public Deductions getDeductions() { return deductions; } public void setDeductions(Deductions deductions) { this.deductions = deductions; } public Paystub docId(String docId) { this.docId = docId; return this; } /** * An identifier of the document referenced by the document metadata. * @return docId **/ @ApiModelProperty(required = true, value = "An identifier of the document referenced by the document metadata.") public String getDocId() { return docId; } public void setDocId(String docId) { this.docId = docId; } public Paystub earnings(Earnings earnings) { this.earnings = earnings; return this; } /** * Get earnings * @return earnings **/ @ApiModelProperty(required = true, value = "") public Earnings getEarnings() { return earnings; } public void setEarnings(Earnings earnings) { this.earnings = earnings; } public Paystub employee(Employee employee) { this.employee = employee; return this; } /** * Get employee * @return employee **/ @ApiModelProperty(required = true, value = "") public Employee getEmployee() { return employee; } public void setEmployee(Employee employee) { this.employee = employee; } public Paystub employer(PaystubEmployer employer) { this.employer = employer; return this; } /** * Get employer * @return employer **/ @ApiModelProperty(required = true, value = "") public PaystubEmployer getEmployer() { return employer; } public void setEmployer(PaystubEmployer employer) { this.employer = employer; } public Paystub employmentDetails(EmploymentDetails employmentDetails) { this.employmentDetails = employmentDetails; return this; } /** * Get employmentDetails * @return employmentDetails **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public EmploymentDetails getEmploymentDetails() { return employmentDetails; } public void setEmploymentDetails(EmploymentDetails employmentDetails) { this.employmentDetails = employmentDetails; } public Paystub netPay(NetPay netPay) { this.netPay = netPay; return this; } /** * Get netPay * @return netPay **/ @ApiModelProperty(required = true, value = "") public NetPay getNetPay() { return netPay; } public void setNetPay(NetPay netPay) { this.netPay = netPay; } public Paystub payPeriodDetails(PayPeriodDetails payPeriodDetails) { this.payPeriodDetails = payPeriodDetails; return this; } /** * Get payPeriodDetails * @return payPeriodDetails **/ @ApiModelProperty(required = true, value = "") public PayPeriodDetails getPayPeriodDetails() { return payPeriodDetails; } public void setPayPeriodDetails(PayPeriodDetails payPeriodDetails) { this.payPeriodDetails = payPeriodDetails; } public Paystub paystubDetails(PaystubDetails paystubDetails) { this.paystubDetails = paystubDetails; return this; } /** * Get paystubDetails * @return paystubDetails **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaystubDetails getPaystubDetails() { return paystubDetails; } public void setPaystubDetails(PaystubDetails paystubDetails) { this.paystubDetails = paystubDetails; } public Paystub incomeBreakdown(List<IncomeBreakdown> incomeBreakdown) { this.incomeBreakdown = incomeBreakdown; return this; } public Paystub addIncomeBreakdownItem(IncomeBreakdown incomeBreakdownItem) { if (this.incomeBreakdown == null) { this.incomeBreakdown = new ArrayList<>(); } this.incomeBreakdown.add(incomeBreakdownItem); return this; } /** * Get incomeBreakdown * @return incomeBreakdown **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public List<IncomeBreakdown> getIncomeBreakdown() { return incomeBreakdown; } public void setIncomeBreakdown(List<IncomeBreakdown> incomeBreakdown) { this.incomeBreakdown = incomeBreakdown; } public Paystub ytdEarnings(PaystubYTDDetails ytdEarnings) { this.ytdEarnings = ytdEarnings; return this; } /** * Get ytdEarnings * @return ytdEarnings **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaystubYTDDetails getYtdEarnings() { return ytdEarnings; } public void setYtdEarnings(PaystubYTDDetails ytdEarnings) { this.ytdEarnings = ytdEarnings; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Paystub paystub = (Paystub) o; return Objects.equals(this.deductions, paystub.deductions) && Objects.equals(this.docId, paystub.docId) && Objects.equals(this.earnings, paystub.earnings) && Objects.equals(this.employee, paystub.employee) && Objects.equals(this.employer, paystub.employer) && Objects.equals(this.employmentDetails, paystub.employmentDetails) && Objects.equals(this.netPay, paystub.netPay) && Objects.equals(this.payPeriodDetails, paystub.payPeriodDetails) && Objects.equals(this.paystubDetails, paystub.paystubDetails) && Objects.equals(this.incomeBreakdown, paystub.incomeBreakdown) && Objects.equals(this.ytdEarnings, paystub.ytdEarnings); } @Override public int hashCode() { return Objects.hash(deductions, docId, earnings, employee, employer, employmentDetails, netPay, payPeriodDetails, paystubDetails, incomeBreakdown, ytdEarnings); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Paystub {\n"); sb.append(" deductions: ").append(toIndentedString(deductions)).append("\n"); sb.append(" docId: ").append(toIndentedString(docId)).append("\n"); sb.append(" earnings: ").append(toIndentedString(earnings)).append("\n"); sb.append(" employee: ").append(toIndentedString(employee)).append("\n"); sb.append(" employer: ").append(toIndentedString(employer)).append("\n"); sb.append(" employmentDetails: ").append(toIndentedString(employmentDetails)).append("\n"); sb.append(" netPay: ").append(toIndentedString(netPay)).append("\n"); sb.append(" payPeriodDetails: ").append(toIndentedString(payPeriodDetails)).append("\n"); sb.append(" paystubDetails: ").append(toIndentedString(paystubDetails)).append("\n"); sb.append(" incomeBreakdown: ").append(toIndentedString(incomeBreakdown)).append("\n"); sb.append(" ytdEarnings: ").append(toIndentedString(ytdEarnings)).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/TransactionsRecurringCreateResponse.java
src/main/java/com/plaid/client/model/TransactionsRecurringCreateResponse.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.TransactionStream; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * TransactionsRecurringCreateResponse defines the response schema for the &#x60;/transactions/recurring/streams/create&#x60; endpoint. */ @ApiModel(description = "TransactionsRecurringCreateResponse defines the response schema for the `/transactions/recurring/streams/create` endpoint.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionsRecurringCreateResponse { public static final String SERIALIZED_NAME_ADDED_STREAMS = "added_streams"; @SerializedName(SERIALIZED_NAME_ADDED_STREAMS) private List<TransactionStream> addedStreams = new ArrayList<>(); public static final String SERIALIZED_NAME_MODIFIED_STREAMS = "modified_streams"; @SerializedName(SERIALIZED_NAME_MODIFIED_STREAMS) private List<TransactionStream> modifiedStreams = null; public static final String SERIALIZED_NAME_REMOVED_STREAM_IDS = "removed_stream_ids"; @SerializedName(SERIALIZED_NAME_REMOVED_STREAM_IDS) private List<String> removedStreamIds = null; public TransactionsRecurringCreateResponse addedStreams(List<TransactionStream> addedStreams) { this.addedStreams = addedStreams; return this; } public TransactionsRecurringCreateResponse addAddedStreamsItem(TransactionStream addedStreamsItem) { this.addedStreams.add(addedStreamsItem); return this; } /** * Streams created as a result of the operation. * @return addedStreams **/ @ApiModelProperty(required = true, value = "Streams created as a result of the operation.") public List<TransactionStream> getAddedStreams() { return addedStreams; } public void setAddedStreams(List<TransactionStream> addedStreams) { this.addedStreams = addedStreams; } public TransactionsRecurringCreateResponse modifiedStreams(List<TransactionStream> modifiedStreams) { this.modifiedStreams = modifiedStreams; return this; } public TransactionsRecurringCreateResponse addModifiedStreamsItem(TransactionStream modifiedStreamsItem) { if (this.modifiedStreams == null) { this.modifiedStreams = new ArrayList<>(); } this.modifiedStreams.add(modifiedStreamsItem); return this; } /** * Other streams with transactions removed from them as a result of the operation (in no particular order). * @return modifiedStreams **/ @javax.annotation.Nullable @ApiModelProperty(value = "Other streams with transactions removed from them as a result of the operation (in no particular order).") public List<TransactionStream> getModifiedStreams() { return modifiedStreams; } public void setModifiedStreams(List<TransactionStream> modifiedStreams) { this.modifiedStreams = modifiedStreams; } public TransactionsRecurringCreateResponse removedStreamIds(List<String> removedStreamIds) { this.removedStreamIds = removedStreamIds; return this; } public TransactionsRecurringCreateResponse addRemovedStreamIdsItem(String removedStreamIdsItem) { if (this.removedStreamIds == null) { this.removedStreamIds = new ArrayList<>(); } this.removedStreamIds.add(removedStreamIdsItem); return this; } /** * The ids of streams that are no longer qualified as recurring transaction streams (in no particular order). * @return removedStreamIds **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ids of streams that are no longer qualified as recurring transaction streams (in no particular order).") public List<String> getRemovedStreamIds() { return removedStreamIds; } public void setRemovedStreamIds(List<String> removedStreamIds) { this.removedStreamIds = removedStreamIds; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransactionsRecurringCreateResponse transactionsRecurringCreateResponse = (TransactionsRecurringCreateResponse) o; return Objects.equals(this.addedStreams, transactionsRecurringCreateResponse.addedStreams) && Objects.equals(this.modifiedStreams, transactionsRecurringCreateResponse.modifiedStreams) && Objects.equals(this.removedStreamIds, transactionsRecurringCreateResponse.removedStreamIds); } @Override public int hashCode() { return Objects.hash(addedStreams, modifiedStreams, removedStreamIds); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsRecurringCreateResponse {\n"); sb.append(" addedStreams: ").append(toIndentedString(addedStreams)).append("\n"); sb.append(" modifiedStreams: ").append(toIndentedString(modifiedStreams)).append("\n"); sb.append(" removedStreamIds: ").append(toIndentedString(removedStreamIds)).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/AssetDetail.java
src/main/java/com/plaid/client/model/AssetDetail.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.AssetType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Details about an asset. */ @ApiModel(description = "Details about an asset.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AssetDetail { public static final String SERIALIZED_NAME_ASSET_UNIQUE_IDENTIFIER = "AssetUniqueIdentifier"; @SerializedName(SERIALIZED_NAME_ASSET_UNIQUE_IDENTIFIER) private String assetUniqueIdentifier; public static final String SERIALIZED_NAME_ASSET_ACCOUNT_IDENTIFIER = "AssetAccountIdentifier"; @SerializedName(SERIALIZED_NAME_ASSET_ACCOUNT_IDENTIFIER) private String assetAccountIdentifier; public static final String SERIALIZED_NAME_ASSET_AS_OF_DATE = "AssetAsOfDate"; @SerializedName(SERIALIZED_NAME_ASSET_AS_OF_DATE) private String assetAsOfDate; public static final String SERIALIZED_NAME_ASSET_DESCRIPTION = "AssetDescription"; @SerializedName(SERIALIZED_NAME_ASSET_DESCRIPTION) private String assetDescription; public static final String SERIALIZED_NAME_ASSET_AVAILABLE_BALANCE_AMOUNT = "AssetAvailableBalanceAmount"; @SerializedName(SERIALIZED_NAME_ASSET_AVAILABLE_BALANCE_AMOUNT) private Double assetAvailableBalanceAmount; public static final String SERIALIZED_NAME_ASSET_CURRENT_BALANCE_AMOUNT = "AssetCurrentBalanceAmount"; @SerializedName(SERIALIZED_NAME_ASSET_CURRENT_BALANCE_AMOUNT) private Double assetCurrentBalanceAmount; public static final String SERIALIZED_NAME_ASSET_HOLDING_BALANCE_AMOUNT = "AssetHoldingBalanceAmount"; @SerializedName(SERIALIZED_NAME_ASSET_HOLDING_BALANCE_AMOUNT) private Double assetHoldingBalanceAmount; public static final String SERIALIZED_NAME_ASSET_HOLDING_BALANCE_NET_MARGIN_AMOUNT = "AssetHoldingBalanceNetMarginAmount"; @SerializedName(SERIALIZED_NAME_ASSET_HOLDING_BALANCE_NET_MARGIN_AMOUNT) private Double assetHoldingBalanceNetMarginAmount; public static final String SERIALIZED_NAME_ASSET_BONDS_BALANCE_AMOUNT = "AssetBondsBalanceAmount"; @SerializedName(SERIALIZED_NAME_ASSET_BONDS_BALANCE_AMOUNT) private Double assetBondsBalanceAmount; public static final String SERIALIZED_NAME_ASSET_STOCKS_BALANCE_AMOUNT = "AssetStocksBalanceAmount"; @SerializedName(SERIALIZED_NAME_ASSET_STOCKS_BALANCE_AMOUNT) private Double assetStocksBalanceAmount; public static final String SERIALIZED_NAME_ASSET_CRYPTO_BALANCE_AMOUNT = "AssetCryptoBalanceAmount"; @SerializedName(SERIALIZED_NAME_ASSET_CRYPTO_BALANCE_AMOUNT) private Double assetCryptoBalanceAmount; public static final String SERIALIZED_NAME_ASSET_OTHER_BALANCE_AMOUNT = "AssetOtherBalanceAmount"; @SerializedName(SERIALIZED_NAME_ASSET_OTHER_BALANCE_AMOUNT) private Double assetOtherBalanceAmount; public static final String SERIALIZED_NAME_ASSET_MARGIN_AMOUNT_BALANCE = "AssetMarginAmountBalance"; @SerializedName(SERIALIZED_NAME_ASSET_MARGIN_AMOUNT_BALANCE) private Double assetMarginAmountBalance; public static final String SERIALIZED_NAME_ASSET_AVAILABLE_CASH_BALANCE_AMOUNT = "AssetAvailableCashBalanceAmount"; @SerializedName(SERIALIZED_NAME_ASSET_AVAILABLE_CASH_BALANCE_AMOUNT) private Double assetAvailableCashBalanceAmount; public static final String SERIALIZED_NAME_ASSET_CASH_BALANCE_AMOUNT = "AssetCashBalanceAmount"; @SerializedName(SERIALIZED_NAME_ASSET_CASH_BALANCE_AMOUNT) private Double assetCashBalanceAmount; public static final String SERIALIZED_NAME_ASSET_TYPE = "AssetType"; @SerializedName(SERIALIZED_NAME_ASSET_TYPE) private AssetType assetType; public static final String SERIALIZED_NAME_ASSET_TYPE_ADDITIONAL_DESCRIPTION = "AssetTypeAdditionalDescription"; @SerializedName(SERIALIZED_NAME_ASSET_TYPE_ADDITIONAL_DESCRIPTION) private String assetTypeAdditionalDescription; public static final String SERIALIZED_NAME_ASSET_DAYS_REQUESTED_COUNT = "AssetDaysRequestedCount"; @SerializedName(SERIALIZED_NAME_ASSET_DAYS_REQUESTED_COUNT) private Integer assetDaysRequestedCount; public static final String SERIALIZED_NAME_ASSET_OWNERSHIP_TYPE = "AssetOwnershipType"; @SerializedName(SERIALIZED_NAME_ASSET_OWNERSHIP_TYPE) private String assetOwnershipType; /** * Whether or not the account is a retirement account (e.g., 401K, 403b, 457, thrift savings plans, traditional and Roth, IRAs, SEP-IRA, SIMPLE-IRA, KEOGH, state retirement savings plans, other independent and IRS-qualified employer retirement plans) */ @JsonAdapter(AssetRetirementIndicatorEnum.Adapter.class) public enum AssetRetirementIndicatorEnum { TRUE("true"), FALSE("false"); private String value; AssetRetirementIndicatorEnum(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static AssetRetirementIndicatorEnum fromValue(String value) { for (AssetRetirementIndicatorEnum b : AssetRetirementIndicatorEnum.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<AssetRetirementIndicatorEnum> { @Override public void write(final JsonWriter jsonWriter, final AssetRetirementIndicatorEnum enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public AssetRetirementIndicatorEnum read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return AssetRetirementIndicatorEnum.fromValue(value); } } } public static final String SERIALIZED_NAME_ASSET_RETIREMENT_INDICATOR = "AssetRetirementIndicator"; @SerializedName(SERIALIZED_NAME_ASSET_RETIREMENT_INDICATOR) private AssetRetirementIndicatorEnum assetRetirementIndicator; /** * Whether the account is employer sponsored retirement account or not (e.g., 401K, 403b, 457, thrift savings plan) */ @JsonAdapter(AssetEmployerSponsoredIndicatorEnum.Adapter.class) public enum AssetEmployerSponsoredIndicatorEnum { TRUE("true"), FALSE("false"); private String value; AssetEmployerSponsoredIndicatorEnum(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static AssetEmployerSponsoredIndicatorEnum fromValue(String value) { for (AssetEmployerSponsoredIndicatorEnum b : AssetEmployerSponsoredIndicatorEnum.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<AssetEmployerSponsoredIndicatorEnum> { @Override public void write(final JsonWriter jsonWriter, final AssetEmployerSponsoredIndicatorEnum enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public AssetEmployerSponsoredIndicatorEnum read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return AssetEmployerSponsoredIndicatorEnum.fromValue(value); } } } public static final String SERIALIZED_NAME_ASSET_EMPLOYER_SPONSORED_INDICATOR = "AssetEmployerSponsoredIndicator"; @SerializedName(SERIALIZED_NAME_ASSET_EMPLOYER_SPONSORED_INDICATOR) private AssetEmployerSponsoredIndicatorEnum assetEmployerSponsoredIndicator; public AssetDetail assetUniqueIdentifier(String assetUniqueIdentifier) { this.assetUniqueIdentifier = assetUniqueIdentifier; return this; } /** * A vendor created unique Identifier. * @return assetUniqueIdentifier **/ @ApiModelProperty(required = true, value = "A vendor created unique Identifier.") public String getAssetUniqueIdentifier() { return assetUniqueIdentifier; } public void setAssetUniqueIdentifier(String assetUniqueIdentifier) { this.assetUniqueIdentifier = assetUniqueIdentifier; } public AssetDetail assetAccountIdentifier(String assetAccountIdentifier) { this.assetAccountIdentifier = assetAccountIdentifier; return this; } /** * A unique alphanumeric string identifying an asset. * @return assetAccountIdentifier **/ @ApiModelProperty(required = true, value = "A unique alphanumeric string identifying an asset.") public String getAssetAccountIdentifier() { return assetAccountIdentifier; } public void setAssetAccountIdentifier(String assetAccountIdentifier) { this.assetAccountIdentifier = assetAccountIdentifier; } public AssetDetail assetAsOfDate(String assetAsOfDate) { this.assetAsOfDate = assetAsOfDate; return this; } /** * Account Report As of Date / Create Date. Format YYYY-MM-DD * @return assetAsOfDate **/ @ApiModelProperty(required = true, value = "Account Report As of Date / Create Date. Format YYYY-MM-DD") public String getAssetAsOfDate() { return assetAsOfDate; } public void setAssetAsOfDate(String assetAsOfDate) { this.assetAsOfDate = assetAsOfDate; } public AssetDetail assetDescription(String assetDescription) { this.assetDescription = assetDescription; return this; } /** * A text description that further defines the Asset. This could be used to describe the shares associated with the stocks, bonds or mutual funds, retirement funds or business owned that the borrower has disclosed (named) as an asset. * @return assetDescription **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "A text description that further defines the Asset. This could be used to describe the shares associated with the stocks, bonds or mutual funds, retirement funds or business owned that the borrower has disclosed (named) as an asset.") public String getAssetDescription() { return assetDescription; } public void setAssetDescription(String assetDescription) { this.assetDescription = assetDescription; } public AssetDetail assetAvailableBalanceAmount(Double assetAvailableBalanceAmount) { this.assetAvailableBalanceAmount = assetAvailableBalanceAmount; return this; } /** * Asset Account Available Balance. * @return assetAvailableBalanceAmount **/ @ApiModelProperty(required = true, value = "Asset Account Available Balance.") public Double getAssetAvailableBalanceAmount() { return assetAvailableBalanceAmount; } public void setAssetAvailableBalanceAmount(Double assetAvailableBalanceAmount) { this.assetAvailableBalanceAmount = assetAvailableBalanceAmount; } public AssetDetail assetCurrentBalanceAmount(Double assetCurrentBalanceAmount) { this.assetCurrentBalanceAmount = assetCurrentBalanceAmount; return this; } /** * A vendor created unique Identifier * @return assetCurrentBalanceAmount **/ @ApiModelProperty(required = true, value = "A vendor created unique Identifier") public Double getAssetCurrentBalanceAmount() { return assetCurrentBalanceAmount; } public void setAssetCurrentBalanceAmount(Double assetCurrentBalanceAmount) { this.assetCurrentBalanceAmount = assetCurrentBalanceAmount; } public AssetDetail assetHoldingBalanceAmount(Double assetHoldingBalanceAmount) { this.assetHoldingBalanceAmount = assetHoldingBalanceAmount; return this; } /** * Total market value of holdings (non-restricted, vested, not crypto, not other, not cash) Note: Any employer stock plan balance must be excluded from the total account balance (identification is &#39;stock plan&#39;) * @return assetHoldingBalanceAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "Total market value of holdings (non-restricted, vested, not crypto, not other, not cash) Note: Any employer stock plan balance must be excluded from the total account balance (identification is 'stock plan')") public Double getAssetHoldingBalanceAmount() { return assetHoldingBalanceAmount; } public void setAssetHoldingBalanceAmount(Double assetHoldingBalanceAmount) { this.assetHoldingBalanceAmount = assetHoldingBalanceAmount; } public AssetDetail assetHoldingBalanceNetMarginAmount(Double assetHoldingBalanceNetMarginAmount) { this.assetHoldingBalanceNetMarginAmount = assetHoldingBalanceNetMarginAmount; return this; } /** * HoldingsBalance net MarginAmount * @return assetHoldingBalanceNetMarginAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "HoldingsBalance net MarginAmount") public Double getAssetHoldingBalanceNetMarginAmount() { return assetHoldingBalanceNetMarginAmount; } public void setAssetHoldingBalanceNetMarginAmount(Double assetHoldingBalanceNetMarginAmount) { this.assetHoldingBalanceNetMarginAmount = assetHoldingBalanceNetMarginAmount; } public AssetDetail assetBondsBalanceAmount(Double assetBondsBalanceAmount) { this.assetBondsBalanceAmount = assetBondsBalanceAmount; return this; } /** * Total market value of all bonds held (non-restricted, vested) * @return assetBondsBalanceAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "Total market value of all bonds held (non-restricted, vested)") public Double getAssetBondsBalanceAmount() { return assetBondsBalanceAmount; } public void setAssetBondsBalanceAmount(Double assetBondsBalanceAmount) { this.assetBondsBalanceAmount = assetBondsBalanceAmount; } public AssetDetail assetStocksBalanceAmount(Double assetStocksBalanceAmount) { this.assetStocksBalanceAmount = assetStocksBalanceAmount; return this; } /** * Total market value of all stocks held (non-restricted, vested, not employer sponsored stock plan) * @return assetStocksBalanceAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "Total market value of all stocks held (non-restricted, vested, not employer sponsored stock plan)") public Double getAssetStocksBalanceAmount() { return assetStocksBalanceAmount; } public void setAssetStocksBalanceAmount(Double assetStocksBalanceAmount) { this.assetStocksBalanceAmount = assetStocksBalanceAmount; } public AssetDetail assetCryptoBalanceAmount(Double assetCryptoBalanceAmount) { this.assetCryptoBalanceAmount = assetCryptoBalanceAmount; return this; } /** * Total balance of all cryptocurrency held (non-restricted, vested) * @return assetCryptoBalanceAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "Total balance of all cryptocurrency held (non-restricted, vested)") public Double getAssetCryptoBalanceAmount() { return assetCryptoBalanceAmount; } public void setAssetCryptoBalanceAmount(Double assetCryptoBalanceAmount) { this.assetCryptoBalanceAmount = assetCryptoBalanceAmount; } public AssetDetail assetOtherBalanceAmount(Double assetOtherBalanceAmount) { this.assetOtherBalanceAmount = assetOtherBalanceAmount; return this; } /** * Total balance of all other holding types (non-restricted, vested) * @return assetOtherBalanceAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "Total balance of all other holding types (non-restricted, vested)") public Double getAssetOtherBalanceAmount() { return assetOtherBalanceAmount; } public void setAssetOtherBalanceAmount(Double assetOtherBalanceAmount) { this.assetOtherBalanceAmount = assetOtherBalanceAmount; } public AssetDetail assetMarginAmountBalance(Double assetMarginAmountBalance) { this.assetMarginAmountBalance = assetMarginAmountBalance; return this; } /** * loan balance (amount owed by account owner) * @return assetMarginAmountBalance **/ @javax.annotation.Nullable @ApiModelProperty(value = "loan balance (amount owed by account owner)") public Double getAssetMarginAmountBalance() { return assetMarginAmountBalance; } public void setAssetMarginAmountBalance(Double assetMarginAmountBalance) { this.assetMarginAmountBalance = assetMarginAmountBalance; } public AssetDetail assetAvailableCashBalanceAmount(Double assetAvailableCashBalanceAmount) { this.assetAvailableCashBalanceAmount = assetAvailableCashBalanceAmount; return this; } /** * amount available for cash withdrawal * @return assetAvailableCashBalanceAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "amount available for cash withdrawal") public Double getAssetAvailableCashBalanceAmount() { return assetAvailableCashBalanceAmount; } public void setAssetAvailableCashBalanceAmount(Double assetAvailableCashBalanceAmount) { this.assetAvailableCashBalanceAmount = assetAvailableCashBalanceAmount; } public AssetDetail assetCashBalanceAmount(Double assetCashBalanceAmount) { this.assetCashBalanceAmount = assetCashBalanceAmount; return this; } /** * cash balance of the account * @return assetCashBalanceAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "cash balance of the account") public Double getAssetCashBalanceAmount() { return assetCashBalanceAmount; } public void setAssetCashBalanceAmount(Double assetCashBalanceAmount) { this.assetCashBalanceAmount = assetCashBalanceAmount; } public AssetDetail assetType(AssetType assetType) { this.assetType = assetType; return this; } /** * Get assetType * @return assetType **/ @ApiModelProperty(required = true, value = "") public AssetType getAssetType() { return assetType; } public void setAssetType(AssetType assetType) { this.assetType = assetType; } public AssetDetail assetTypeAdditionalDescription(String assetTypeAdditionalDescription) { this.assetTypeAdditionalDescription = assetTypeAdditionalDescription; return this; } /** * Additional Asset Decription some examples are Investment Tax-Deferred , Loan, 401K, 403B, Checking, Money Market, Credit Card,ROTH,529,Biller,ROLLOVER,CD,Savings,Investment Taxable, IRA, Mortgage, Line Of Credit. * @return assetTypeAdditionalDescription **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Additional Asset Decription some examples are Investment Tax-Deferred , Loan, 401K, 403B, Checking, Money Market, Credit Card,ROTH,529,Biller,ROLLOVER,CD,Savings,Investment Taxable, IRA, Mortgage, Line Of Credit.") public String getAssetTypeAdditionalDescription() { return assetTypeAdditionalDescription; } public void setAssetTypeAdditionalDescription(String assetTypeAdditionalDescription) { this.assetTypeAdditionalDescription = assetTypeAdditionalDescription; } public AssetDetail assetDaysRequestedCount(Integer assetDaysRequestedCount) { this.assetDaysRequestedCount = assetDaysRequestedCount; return this; } /** * The Number of days requested made to the Financial Institution. Example When looking for 3 months of data from the FI, pass in 90 days. * @return assetDaysRequestedCount **/ @ApiModelProperty(required = true, value = "The Number of days requested made to the Financial Institution. Example When looking for 3 months of data from the FI, pass in 90 days.") public Integer getAssetDaysRequestedCount() { return assetDaysRequestedCount; } public void setAssetDaysRequestedCount(Integer assetDaysRequestedCount) { this.assetDaysRequestedCount = assetDaysRequestedCount; } public AssetDetail assetOwnershipType(String assetOwnershipType) { this.assetOwnershipType = assetOwnershipType; return this; } /** * Ownership type of the asset account. * @return assetOwnershipType **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Ownership type of the asset account.") public String getAssetOwnershipType() { return assetOwnershipType; } public void setAssetOwnershipType(String assetOwnershipType) { this.assetOwnershipType = assetOwnershipType; } public AssetDetail assetRetirementIndicator(AssetRetirementIndicatorEnum assetRetirementIndicator) { this.assetRetirementIndicator = assetRetirementIndicator; return this; } /** * Whether or not the account is a retirement account (e.g., 401K, 403b, 457, thrift savings plans, traditional and Roth, IRAs, SEP-IRA, SIMPLE-IRA, KEOGH, state retirement savings plans, other independent and IRS-qualified employer retirement plans) * @return assetRetirementIndicator **/ @javax.annotation.Nullable @ApiModelProperty(value = "Whether or not the account is a retirement account (e.g., 401K, 403b, 457, thrift savings plans, traditional and Roth, IRAs, SEP-IRA, SIMPLE-IRA, KEOGH, state retirement savings plans, other independent and IRS-qualified employer retirement plans)") public AssetRetirementIndicatorEnum getAssetRetirementIndicator() { return assetRetirementIndicator; } public void setAssetRetirementIndicator(AssetRetirementIndicatorEnum assetRetirementIndicator) { this.assetRetirementIndicator = assetRetirementIndicator; } public AssetDetail assetEmployerSponsoredIndicator(AssetEmployerSponsoredIndicatorEnum assetEmployerSponsoredIndicator) { this.assetEmployerSponsoredIndicator = assetEmployerSponsoredIndicator; return this; } /** * Whether the account is employer sponsored retirement account or not (e.g., 401K, 403b, 457, thrift savings plan) * @return assetEmployerSponsoredIndicator **/ @javax.annotation.Nullable @ApiModelProperty(value = "Whether the account is employer sponsored retirement account or not (e.g., 401K, 403b, 457, thrift savings plan)") public AssetEmployerSponsoredIndicatorEnum getAssetEmployerSponsoredIndicator() { return assetEmployerSponsoredIndicator; } public void setAssetEmployerSponsoredIndicator(AssetEmployerSponsoredIndicatorEnum assetEmployerSponsoredIndicator) { this.assetEmployerSponsoredIndicator = assetEmployerSponsoredIndicator; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AssetDetail assetDetail = (AssetDetail) o; return Objects.equals(this.assetUniqueIdentifier, assetDetail.assetUniqueIdentifier) && Objects.equals(this.assetAccountIdentifier, assetDetail.assetAccountIdentifier) && Objects.equals(this.assetAsOfDate, assetDetail.assetAsOfDate) && Objects.equals(this.assetDescription, assetDetail.assetDescription) && Objects.equals(this.assetAvailableBalanceAmount, assetDetail.assetAvailableBalanceAmount) && Objects.equals(this.assetCurrentBalanceAmount, assetDetail.assetCurrentBalanceAmount) && Objects.equals(this.assetHoldingBalanceAmount, assetDetail.assetHoldingBalanceAmount) && Objects.equals(this.assetHoldingBalanceNetMarginAmount, assetDetail.assetHoldingBalanceNetMarginAmount) && Objects.equals(this.assetBondsBalanceAmount, assetDetail.assetBondsBalanceAmount) && Objects.equals(this.assetStocksBalanceAmount, assetDetail.assetStocksBalanceAmount) && Objects.equals(this.assetCryptoBalanceAmount, assetDetail.assetCryptoBalanceAmount) && Objects.equals(this.assetOtherBalanceAmount, assetDetail.assetOtherBalanceAmount) && Objects.equals(this.assetMarginAmountBalance, assetDetail.assetMarginAmountBalance) && Objects.equals(this.assetAvailableCashBalanceAmount, assetDetail.assetAvailableCashBalanceAmount) && Objects.equals(this.assetCashBalanceAmount, assetDetail.assetCashBalanceAmount) && Objects.equals(this.assetType, assetDetail.assetType) && Objects.equals(this.assetTypeAdditionalDescription, assetDetail.assetTypeAdditionalDescription) && Objects.equals(this.assetDaysRequestedCount, assetDetail.assetDaysRequestedCount) && Objects.equals(this.assetOwnershipType, assetDetail.assetOwnershipType) && Objects.equals(this.assetRetirementIndicator, assetDetail.assetRetirementIndicator) && Objects.equals(this.assetEmployerSponsoredIndicator, assetDetail.assetEmployerSponsoredIndicator); } @Override public int hashCode() { return Objects.hash(assetUniqueIdentifier, assetAccountIdentifier, assetAsOfDate, assetDescription, assetAvailableBalanceAmount, assetCurrentBalanceAmount, assetHoldingBalanceAmount, assetHoldingBalanceNetMarginAmount, assetBondsBalanceAmount, assetStocksBalanceAmount, assetCryptoBalanceAmount, assetOtherBalanceAmount, assetMarginAmountBalance, assetAvailableCashBalanceAmount, assetCashBalanceAmount, assetType, assetTypeAdditionalDescription, assetDaysRequestedCount, assetOwnershipType, assetRetirementIndicator, assetEmployerSponsoredIndicator); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetDetail {\n"); sb.append(" assetUniqueIdentifier: ").append(toIndentedString(assetUniqueIdentifier)).append("\n"); sb.append(" assetAccountIdentifier: ").append(toIndentedString(assetAccountIdentifier)).append("\n"); sb.append(" assetAsOfDate: ").append(toIndentedString(assetAsOfDate)).append("\n"); sb.append(" assetDescription: ").append(toIndentedString(assetDescription)).append("\n"); sb.append(" assetAvailableBalanceAmount: ").append(toIndentedString(assetAvailableBalanceAmount)).append("\n"); sb.append(" assetCurrentBalanceAmount: ").append(toIndentedString(assetCurrentBalanceAmount)).append("\n"); sb.append(" assetHoldingBalanceAmount: ").append(toIndentedString(assetHoldingBalanceAmount)).append("\n"); sb.append(" assetHoldingBalanceNetMarginAmount: ").append(toIndentedString(assetHoldingBalanceNetMarginAmount)).append("\n"); sb.append(" assetBondsBalanceAmount: ").append(toIndentedString(assetBondsBalanceAmount)).append("\n"); sb.append(" assetStocksBalanceAmount: ").append(toIndentedString(assetStocksBalanceAmount)).append("\n"); sb.append(" assetCryptoBalanceAmount: ").append(toIndentedString(assetCryptoBalanceAmount)).append("\n"); sb.append(" assetOtherBalanceAmount: ").append(toIndentedString(assetOtherBalanceAmount)).append("\n"); sb.append(" assetMarginAmountBalance: ").append(toIndentedString(assetMarginAmountBalance)).append("\n"); sb.append(" assetAvailableCashBalanceAmount: ").append(toIndentedString(assetAvailableCashBalanceAmount)).append("\n"); sb.append(" assetCashBalanceAmount: ").append(toIndentedString(assetCashBalanceAmount)).append("\n"); sb.append(" assetType: ").append(toIndentedString(assetType)).append("\n"); sb.append(" assetTypeAdditionalDescription: ").append(toIndentedString(assetTypeAdditionalDescription)).append("\n"); sb.append(" assetDaysRequestedCount: ").append(toIndentedString(assetDaysRequestedCount)).append("\n"); sb.append(" assetOwnershipType: ").append(toIndentedString(assetOwnershipType)).append("\n"); sb.append(" assetRetirementIndicator: ").append(toIndentedString(assetRetirementIndicator)).append("\n"); sb.append(" assetEmployerSponsoredIndicator: ").append(toIndentedString(assetEmployerSponsoredIndicator)).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/StatementsRefreshCompleteResult.java
src/main/java/com/plaid/client/model/StatementsRefreshCompleteResult.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 result of the statement refresh extraction &#x60;SUCCESS&#x60;: The statements were successfully extracted and can be listed via &#x60;/statements/list/&#x60; and downloaded via &#x60;/statements/download/&#x60;. &#x60;FAILURE&#x60;: The statements failed to be extracted. */ @JsonAdapter(StatementsRefreshCompleteResult.Adapter.class) public enum StatementsRefreshCompleteResult { SUCCESS("SUCCESS"), FAILURE("FAILURE"), // 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; StatementsRefreshCompleteResult(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static StatementsRefreshCompleteResult fromValue(String value) { for (StatementsRefreshCompleteResult b : StatementsRefreshCompleteResult.values()) { if (b.value.equals(value)) { return b; } } return StatementsRefreshCompleteResult.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<StatementsRefreshCompleteResult> { @Override public void write(final JsonWriter jsonWriter, final StatementsRefreshCompleteResult enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public StatementsRefreshCompleteResult read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return StatementsRefreshCompleteResult.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/PayrollItem.java
src/main/java/com/plaid/client/model/PayrollItem.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.PayrollIncomeAccountData; import com.plaid.client.model.PayrollIncomeObject; import com.plaid.client.model.PayrollItemStatus; 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; /** * An object containing information about the payroll item. */ @ApiModel(description = "An object containing information about the payroll item.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PayrollItem { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; 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_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) private List<PayrollIncomeAccountData> accounts = new ArrayList<>(); public static final String SERIALIZED_NAME_PAYROLL_INCOME = "payroll_income"; @SerializedName(SERIALIZED_NAME_PAYROLL_INCOME) private List<PayrollIncomeObject> payrollIncome = new ArrayList<>(); public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private PayrollItemStatus status; public static final String SERIALIZED_NAME_UPDATED_AT = "updated_at"; @SerializedName(SERIALIZED_NAME_UPDATED_AT) private OffsetDateTime updatedAt; public PayrollItem itemId(String itemId) { this.itemId = itemId; return this; } /** * The &#x60;item_id&#x60; 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 PayrollItem institutionId(String institutionId) { this.institutionId = institutionId; return this; } /** * The unique identifier of the institution associated with the Item. * @return institutionId **/ @ApiModelProperty(required = true, value = "The unique identifier of the institution associated with the Item.") public String getInstitutionId() { return institutionId; } public void setInstitutionId(String institutionId) { this.institutionId = institutionId; } public PayrollItem institutionName(String institutionName) { this.institutionName = institutionName; return this; } /** * The name of the institution associated with the Item. * @return institutionName **/ @ApiModelProperty(required = true, value = "The name of the institution associated with the Item.") public String getInstitutionName() { return institutionName; } public void setInstitutionName(String institutionName) { this.institutionName = institutionName; } public PayrollItem accounts(List<PayrollIncomeAccountData> accounts) { this.accounts = accounts; return this; } public PayrollItem addAccountsItem(PayrollIncomeAccountData accountsItem) { this.accounts.add(accountsItem); return this; } /** * Get accounts * @return accounts **/ @ApiModelProperty(required = true, value = "") public List<PayrollIncomeAccountData> getAccounts() { return accounts; } public void setAccounts(List<PayrollIncomeAccountData> accounts) { this.accounts = accounts; } public PayrollItem payrollIncome(List<PayrollIncomeObject> payrollIncome) { this.payrollIncome = payrollIncome; return this; } public PayrollItem addPayrollIncomeItem(PayrollIncomeObject payrollIncomeItem) { this.payrollIncome.add(payrollIncomeItem); return this; } /** * Get payrollIncome * @return payrollIncome **/ @ApiModelProperty(required = true, value = "") public List<PayrollIncomeObject> getPayrollIncome() { return payrollIncome; } public void setPayrollIncome(List<PayrollIncomeObject> payrollIncome) { this.payrollIncome = payrollIncome; } public PayrollItem status(PayrollItemStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public PayrollItemStatus getStatus() { return status; } public void setStatus(PayrollItemStatus status) { this.status = status; } public PayrollItem updatedAt(OffsetDateTime updatedAt) { this.updatedAt = updatedAt; return this; } /** * Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DDTHH:mm:ssZ) indicating the last time that the Item was updated. * @return updatedAt **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DDTHH:mm:ssZ) indicating the last time that the Item was updated.") public OffsetDateTime getUpdatedAt() { return updatedAt; } public void setUpdatedAt(OffsetDateTime updatedAt) { this.updatedAt = updatedAt; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PayrollItem payrollItem = (PayrollItem) o; return Objects.equals(this.itemId, payrollItem.itemId) && Objects.equals(this.institutionId, payrollItem.institutionId) && Objects.equals(this.institutionName, payrollItem.institutionName) && Objects.equals(this.accounts, payrollItem.accounts) && Objects.equals(this.payrollIncome, payrollItem.payrollIncome) && Objects.equals(this.status, payrollItem.status) && Objects.equals(this.updatedAt, payrollItem.updatedAt); } @Override public int hashCode() { return Objects.hash(itemId, institutionId, institutionName, accounts, payrollIncome, status, updatedAt); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PayrollItem {\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" institutionId: ").append(toIndentedString(institutionId)).append("\n"); sb.append(" institutionName: ").append(toIndentedString(institutionName)).append("\n"); sb.append(" accounts: ").append(toIndentedString(accounts)).append("\n"); sb.append(" payrollIncome: ").append(toIndentedString(payrollIncome)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).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/PartnerEndCustomerWithSecretsAllOf.java
src/main/java/com/plaid/client/model/PartnerEndCustomerWithSecretsAllOf.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.PartnerEndCustomerSecrets; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * PartnerEndCustomerWithSecretsAllOf */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PartnerEndCustomerWithSecretsAllOf { public static final String SERIALIZED_NAME_SECRETS = "secrets"; @SerializedName(SERIALIZED_NAME_SECRETS) private PartnerEndCustomerSecrets secrets; public PartnerEndCustomerWithSecretsAllOf secrets(PartnerEndCustomerSecrets secrets) { this.secrets = secrets; return this; } /** * Get secrets * @return secrets **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PartnerEndCustomerSecrets getSecrets() { return secrets; } public void setSecrets(PartnerEndCustomerSecrets secrets) { this.secrets = secrets; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PartnerEndCustomerWithSecretsAllOf partnerEndCustomerWithSecretsAllOf = (PartnerEndCustomerWithSecretsAllOf) o; return Objects.equals(this.secrets, partnerEndCustomerWithSecretsAllOf.secrets); } @Override public int hashCode() { return Objects.hash(secrets); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PartnerEndCustomerWithSecretsAllOf {\n"); sb.append(" secrets: ").append(toIndentedString(secrets)).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/TransferRecurringGetRequest.java
src/main/java/com/plaid/client/model/TransferRecurringGetRequest.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 &#x60;/transfer/recurring/get&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/recurring/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferRecurringGetRequest { 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_RECURRING_TRANSFER_ID = "recurring_transfer_id"; @SerializedName(SERIALIZED_NAME_RECURRING_TRANSFER_ID) private String recurringTransferId; public TransferRecurringGetRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; 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 TransferRecurringGetRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; 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 TransferRecurringGetRequest recurringTransferId(String recurringTransferId) { this.recurringTransferId = recurringTransferId; return this; } /** * Plaid’s unique identifier for a recurring transfer. * @return recurringTransferId **/ @ApiModelProperty(required = true, value = "Plaid’s unique identifier for a recurring transfer.") public String getRecurringTransferId() { return recurringTransferId; } public void setRecurringTransferId(String recurringTransferId) { this.recurringTransferId = recurringTransferId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferRecurringGetRequest transferRecurringGetRequest = (TransferRecurringGetRequest) o; return Objects.equals(this.clientId, transferRecurringGetRequest.clientId) && Objects.equals(this.secret, transferRecurringGetRequest.secret) && Objects.equals(this.recurringTransferId, transferRecurringGetRequest.recurringTransferId); } @Override public int hashCode() { return Objects.hash(clientId, secret, recurringTransferId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferRecurringGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" recurringTransferId: ").append(toIndentedString(recurringTransferId)).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/LinkSessionSuccessMetadataTransferStatus.java
src/main/java/com/plaid/client/model/LinkSessionSuccessMetadataTransferStatus.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 status of a transfer. Returned only when [Transfer UI](https://plaid.com/docs/transfer/using-transfer-ui) is implemented. - &#x60;COMPLETE&#x60; – The transfer was completed. - &#x60;INCOMPLETE&#x60; – The transfer could not be completed. For help, see [Troubleshooting transfers](https://plaid.com/docs/transfer/using-transfer-ui/#troubleshooting-transfer-ui). */ @JsonAdapter(LinkSessionSuccessMetadataTransferStatus.Adapter.class) public enum LinkSessionSuccessMetadataTransferStatus { COMPLETE("COMPLETE"), INCOMPLETE("INCOMPLETE"), 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; LinkSessionSuccessMetadataTransferStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static LinkSessionSuccessMetadataTransferStatus fromValue(String value) { for (LinkSessionSuccessMetadataTransferStatus b : LinkSessionSuccessMetadataTransferStatus.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<LinkSessionSuccessMetadataTransferStatus> { @Override public void write(final JsonWriter jsonWriter, final LinkSessionSuccessMetadataTransferStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public LinkSessionSuccessMetadataTransferStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return LinkSessionSuccessMetadataTransferStatus.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/TransactionsRecurringUpdateRequest.java
src/main/java/com/plaid/client/model/TransactionsRecurringUpdateRequest.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.TransactionsRecurringUpdateInput; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * TransactionsRecurringUpdateRequest defined the request schema for &#x60;/transactions/recurring/streams/update&#x60; endpoint. */ @ApiModel(description = "TransactionsRecurringUpdateRequest defined the request schema for `/transactions/recurring/streams/update` endpoint.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionsRecurringUpdateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) private String accessToken; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_INPUTS = "inputs"; @SerializedName(SERIALIZED_NAME_INPUTS) private List<TransactionsRecurringUpdateInput> inputs = new ArrayList<>(); public TransactionsRecurringUpdateRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; 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 TransactionsRecurringUpdateRequest 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 TransactionsRecurringUpdateRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; 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 TransactionsRecurringUpdateRequest inputs(List<TransactionsRecurringUpdateInput> inputs) { this.inputs = inputs; return this; } public TransactionsRecurringUpdateRequest addInputsItem(TransactionsRecurringUpdateInput inputsItem) { this.inputs.add(inputsItem); return this; } /** * A list of all the operations to be performed. This will either all succeed or all fail. * @return inputs **/ @ApiModelProperty(required = true, value = "A list of all the operations to be performed. This will either all succeed or all fail.") public List<TransactionsRecurringUpdateInput> getInputs() { return inputs; } public void setInputs(List<TransactionsRecurringUpdateInput> inputs) { this.inputs = inputs; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransactionsRecurringUpdateRequest transactionsRecurringUpdateRequest = (TransactionsRecurringUpdateRequest) o; return Objects.equals(this.clientId, transactionsRecurringUpdateRequest.clientId) && Objects.equals(this.accessToken, transactionsRecurringUpdateRequest.accessToken) && Objects.equals(this.secret, transactionsRecurringUpdateRequest.secret) && Objects.equals(this.inputs, transactionsRecurringUpdateRequest.inputs); } @Override public int hashCode() { return Objects.hash(clientId, accessToken, secret, inputs); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsRecurringUpdateRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" inputs: ").append(toIndentedString(inputs)).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/AccountIdentityMatchScore.java
src/main/java/com/plaid/client/model/AccountIdentityMatchScore.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.AccountIdentityMatchScoreAllOf; import com.plaid.client.model.AccountSubtype; import com.plaid.client.model.AccountType; import com.plaid.client.model.AccountVerificationInsights; import com.plaid.client.model.AddressMatchScore; import com.plaid.client.model.EmailAddressMatchScore; import com.plaid.client.model.NameMatchScore; import com.plaid.client.model.PhoneNumberMatchScore; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Identity match scores for an account */ @ApiModel(description = "Identity match scores for an account") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AccountIdentityMatchScore { 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&#39;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: &#x60;pending_automatic_verification&#x60;: The Item is pending automatic verification. &#x60;pending_manual_verification&#x60;: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the code. &#x60;automatically_verified&#x60;: The Item has successfully been automatically verified. &#x60;manually_verified&#x60;: The Item has successfully been manually verified. &#x60;verification_expired&#x60;: 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. &#x60;verification_failed&#x60;: 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. &#x60;unsent&#x60;: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit. &#x60;database_insights_pending&#x60;: The Database Auth result is pending and will be available upon Auth request. &#x60;database_insights_fail&#x60;: The Item&#39;s numbers have been verified using Plaid&#39;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. &#x60;database_insights_pass&#x60;: The Item&#39;s numbers have been verified using Plaid&#39;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. &#x60;database_insights_pass_with_caution&#x60;: The Item&#39;s numbers have been verified using Plaid&#39;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. &#x60;database_matched&#x60;: (deprecated) The Item has successfully been verified using Plaid&#39;s data sources. Only returned for Auth Items created via Database Match. &#x60;null&#x60; 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_LEGAL_NAME = "legal_name"; @SerializedName(SERIALIZED_NAME_LEGAL_NAME) private NameMatchScore legalName; public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBER) private PhoneNumberMatchScore phoneNumber; public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) private EmailAddressMatchScore emailAddress; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private AddressMatchScore address; public AccountIdentityMatchScore accountId(String accountId) { this.accountId = accountId; return this; } /** * Plaid’s unique identifier for the account. This value will not change unless Plaid can&#39;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 &#x60;account_id&#x60; will be assigned to the account. The &#x60;account_id&#x60; can also change if the &#x60;access_token&#x60; is deleted and the same credentials that were used to generate that &#x60;access_token&#x60; are used to generate a new &#x60;access_token&#x60; on a later date. In that case, the new &#x60;account_id&#x60; will be different from the old &#x60;account_id&#x60;. If an account with a specific &#x60;account_id&#x60; 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 &#x60;/cra/&#x60;), the &#x60;account_id&#x60; returned will not match the &#x60;account_id&#x60; returned by a non-CRA endpoint. Like all Plaid identifiers, the &#x60;account_id&#x60; 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 AccountIdentityMatchScore 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 AccountIdentityMatchScore 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 AccountIdentityMatchScore 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 AccountIdentityMatchScore 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 AccountIdentityMatchScore 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 AccountIdentityMatchScore 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 AccountIdentityMatchScore verificationStatus(VerificationStatusEnum verificationStatus) { this.verificationStatus = verificationStatus; return this; } /** * Indicates an Item&#39;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: &#x60;pending_automatic_verification&#x60;: The Item is pending automatic verification. &#x60;pending_manual_verification&#x60;: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the code. &#x60;automatically_verified&#x60;: The Item has successfully been automatically verified. &#x60;manually_verified&#x60;: The Item has successfully been manually verified. &#x60;verification_expired&#x60;: 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. &#x60;verification_failed&#x60;: 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. &#x60;unsent&#x60;: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit. &#x60;database_insights_pending&#x60;: The Database Auth result is pending and will be available upon Auth request. &#x60;database_insights_fail&#x60;: The Item&#39;s numbers have been verified using Plaid&#39;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. &#x60;database_insights_pass&#x60;: The Item&#39;s numbers have been verified using Plaid&#39;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. &#x60;database_insights_pass_with_caution&#x60;: The Item&#39;s numbers have been verified using Plaid&#39;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. &#x60;database_matched&#x60;: (deprecated) The Item has successfully been verified using Plaid&#39;s data sources. Only returned for Auth Items created via Database Match. &#x60;null&#x60; 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 AccountIdentityMatchScore 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 &#x60;user.legal_name&#x60; request field in &#x60;/link/token/create&#x60; 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 AccountIdentityMatchScore 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 AccountIdentityMatchScore 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 (&#x60;ins_56&#x60;, &#x60;ins_13&#x60;) as well as the OAuth Sandbox institution (&#x60;ins_127287&#x60;); 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 AccountIdentityMatchScore 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 AccountIdentityMatchScore legalName(NameMatchScore legalName) { this.legalName = legalName; return this; } /** * Get legalName * @return legalName **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public NameMatchScore getLegalName() { return legalName; } public void setLegalName(NameMatchScore legalName) { this.legalName = legalName; } public AccountIdentityMatchScore phoneNumber(PhoneNumberMatchScore phoneNumber) { this.phoneNumber = phoneNumber; return this; } /** * Get phoneNumber * @return phoneNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PhoneNumberMatchScore getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(PhoneNumberMatchScore phoneNumber) { this.phoneNumber = phoneNumber; } public AccountIdentityMatchScore emailAddress(EmailAddressMatchScore emailAddress) { this.emailAddress = emailAddress; return this; } /** * Get emailAddress * @return emailAddress **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public EmailAddressMatchScore getEmailAddress() { return emailAddress; } public void setEmailAddress(EmailAddressMatchScore emailAddress) { this.emailAddress = emailAddress; } public AccountIdentityMatchScore address(AddressMatchScore address) { this.address = address; return this; } /** * Get address * @return address **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AddressMatchScore getAddress() { return address; } public void setAddress(AddressMatchScore address) { this.address = address; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AccountIdentityMatchScore accountIdentityMatchScore = (AccountIdentityMatchScore) o; return Objects.equals(this.accountId, accountIdentityMatchScore.accountId) && Objects.equals(this.balances, accountIdentityMatchScore.balances) && Objects.equals(this.mask, accountIdentityMatchScore.mask) && Objects.equals(this.name, accountIdentityMatchScore.name) && Objects.equals(this.officialName, accountIdentityMatchScore.officialName) && Objects.equals(this.type, accountIdentityMatchScore.type) && Objects.equals(this.subtype, accountIdentityMatchScore.subtype) && Objects.equals(this.verificationStatus, accountIdentityMatchScore.verificationStatus) && Objects.equals(this.verificationName, accountIdentityMatchScore.verificationName) && Objects.equals(this.verificationInsights, accountIdentityMatchScore.verificationInsights) && Objects.equals(this.persistentAccountId, accountIdentityMatchScore.persistentAccountId) && Objects.equals(this.holderCategory, accountIdentityMatchScore.holderCategory) && Objects.equals(this.legalName, accountIdentityMatchScore.legalName) && Objects.equals(this.phoneNumber, accountIdentityMatchScore.phoneNumber) && Objects.equals(this.emailAddress, accountIdentityMatchScore.emailAddress) && Objects.equals(this.address, accountIdentityMatchScore.address); } @Override public int hashCode() { return Objects.hash(accountId, balances, mask, name, officialName, type, subtype, verificationStatus, verificationName, verificationInsights, persistentAccountId, holderCategory, legalName, phoneNumber, emailAddress, address); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AccountIdentityMatchScore {\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(" legalName: ").append(toIndentedString(legalName)).append("\n"); sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n"); sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).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/TransferExpectedSweepSettlementScheduleItem.java
src/main/java/com/plaid/client/model/TransferExpectedSweepSettlementScheduleItem.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; /** * Defines an expected sweep date and amount. */ @ApiModel(description = "Defines an expected sweep date and amount.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferExpectedSweepSettlementScheduleItem { public static final String SERIALIZED_NAME_SWEEP_SETTLEMENT_DATE = "sweep_settlement_date"; @SerializedName(SERIALIZED_NAME_SWEEP_SETTLEMENT_DATE) private LocalDate sweepSettlementDate; public static final String SERIALIZED_NAME_SWEPT_SETTLED_AMOUNT = "swept_settled_amount"; @SerializedName(SERIALIZED_NAME_SWEPT_SETTLED_AMOUNT) private String sweptSettledAmount; public TransferExpectedSweepSettlementScheduleItem sweepSettlementDate(LocalDate sweepSettlementDate) { this.sweepSettlementDate = sweepSettlementDate; return this; } /** * The settlement date of a sweep for this transfer. * @return sweepSettlementDate **/ @ApiModelProperty(required = true, value = "The settlement date of a sweep for this transfer.") public LocalDate getSweepSettlementDate() { return sweepSettlementDate; } public void setSweepSettlementDate(LocalDate sweepSettlementDate) { this.sweepSettlementDate = sweepSettlementDate; } public TransferExpectedSweepSettlementScheduleItem sweptSettledAmount(String sweptSettledAmount) { this.sweptSettledAmount = sweptSettledAmount; return this; } /** * The accumulated amount that has been swept by &#x60;sweep_settlement_date&#x60;. * @return sweptSettledAmount **/ @ApiModelProperty(required = true, value = "The accumulated amount that has been swept by `sweep_settlement_date`.") public String getSweptSettledAmount() { return sweptSettledAmount; } public void setSweptSettledAmount(String sweptSettledAmount) { this.sweptSettledAmount = sweptSettledAmount; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferExpectedSweepSettlementScheduleItem transferExpectedSweepSettlementScheduleItem = (TransferExpectedSweepSettlementScheduleItem) o; return Objects.equals(this.sweepSettlementDate, transferExpectedSweepSettlementScheduleItem.sweepSettlementDate) && Objects.equals(this.sweptSettledAmount, transferExpectedSweepSettlementScheduleItem.sweptSettledAmount); } @Override public int hashCode() { return Objects.hash(sweepSettlementDate, sweptSettledAmount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferExpectedSweepSettlementScheduleItem {\n"); sb.append(" sweepSettlementDate: ").append(toIndentedString(sweepSettlementDate)).append("\n"); sb.append(" sweptSettledAmount: ").append(toIndentedString(sweptSettledAmount)).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/AuthGetResponse.java
src/main/java/com/plaid/client/model/AuthGetResponse.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.AuthGetNumbers; 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; /** * AuthGetResponse defines the response schema for &#x60;/auth/get&#x60; */ @ApiModel(description = "AuthGetResponse defines the response schema for `/auth/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AuthGetResponse { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) private List<AccountBase> accounts = new ArrayList<>(); public static final String SERIALIZED_NAME_NUMBERS = "numbers"; @SerializedName(SERIALIZED_NAME_NUMBERS) private AuthGetNumbers numbers; public static final String SERIALIZED_NAME_ITEM = "item"; @SerializedName(SERIALIZED_NAME_ITEM) private Item item; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public AuthGetResponse accounts(List<AccountBase> accounts) { this.accounts = accounts; return this; } public AuthGetResponse addAccountsItem(AccountBase accountsItem) { this.accounts.add(accountsItem); return this; } /** * The &#x60;accounts&#x60; for which numbers are being retrieved. * @return accounts **/ @ApiModelProperty(required = true, value = "The `accounts` for which numbers are being retrieved.") public List<AccountBase> getAccounts() { return accounts; } public void setAccounts(List<AccountBase> accounts) { this.accounts = accounts; } public AuthGetResponse numbers(AuthGetNumbers numbers) { this.numbers = numbers; return this; } /** * Get numbers * @return numbers **/ @ApiModelProperty(required = true, value = "") public AuthGetNumbers getNumbers() { return numbers; } public void setNumbers(AuthGetNumbers numbers) { this.numbers = numbers; } public AuthGetResponse 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 AuthGetResponse 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; } AuthGetResponse authGetResponse = (AuthGetResponse) o; return Objects.equals(this.accounts, authGetResponse.accounts) && Objects.equals(this.numbers, authGetResponse.numbers) && Objects.equals(this.item, authGetResponse.item) && Objects.equals(this.requestId, authGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(accounts, numbers, item, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AuthGetResponse {\n"); sb.append(" accounts: ").append(toIndentedString(accounts)).append("\n"); sb.append(" numbers: ").append(toIndentedString(numbers)).append("\n"); sb.append(" item: ").append(toIndentedString(item)).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/AddressNullable.java
src/main/java/com/plaid/client/model/AddressNullable.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.Address; import com.plaid.client.model.AddressData; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * A physical mailing address. */ @ApiModel(description = "A physical mailing address.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AddressNullable { public static final String SERIALIZED_NAME_DATA = "data"; @SerializedName(SERIALIZED_NAME_DATA) private AddressData data; public static final String SERIALIZED_NAME_PRIMARY = "primary"; @SerializedName(SERIALIZED_NAME_PRIMARY) private Boolean primary; public AddressNullable data(AddressData data) { this.data = data; return this; } /** * Get data * @return data **/ @ApiModelProperty(required = true, value = "") public AddressData getData() { return data; } public void setData(AddressData data) { this.data = data; } public AddressNullable primary(Boolean primary) { this.primary = primary; return this; } /** * When &#x60;true&#x60;, identifies the address as the primary address on an account. * @return primary **/ @javax.annotation.Nullable @ApiModelProperty(value = "When `true`, identifies the address as the primary address on an account.") 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; } AddressNullable addressNullable = (AddressNullable) o; return Objects.equals(this.data, addressNullable.data) && Objects.equals(this.primary, addressNullable.primary); } @Override public int hashCode() { return Objects.hash(data, primary); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AddressNullable {\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/TransferBalanceGetRequest.java
src/main/java/com/plaid/client/model/TransferBalanceGetRequest.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.TransferBalanceType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the request schema for &#x60;/transfer/balance/get&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/balance/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferBalanceGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; 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_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private TransferBalanceType type; public TransferBalanceGetRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; 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 TransferBalanceGetRequest originatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; return this; } /** * Client ID of the end customer. * @return originatorClientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Client ID of the end customer.") public String getOriginatorClientId() { return originatorClientId; } public void setOriginatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; } public TransferBalanceGetRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; 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 TransferBalanceGetRequest type(TransferBalanceType type) { this.type = type; return this; } /** * Get type * @return type **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransferBalanceType getType() { return type; } public void setType(TransferBalanceType type) { this.type = type; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferBalanceGetRequest transferBalanceGetRequest = (TransferBalanceGetRequest) o; return Objects.equals(this.clientId, transferBalanceGetRequest.clientId) && Objects.equals(this.originatorClientId, transferBalanceGetRequest.originatorClientId) && Objects.equals(this.secret, transferBalanceGetRequest.secret) && Objects.equals(this.type, transferBalanceGetRequest.type); } @Override public int hashCode() { return Objects.hash(clientId, originatorClientId, secret, type); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferBalanceGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" originatorClientId: ").append(toIndentedString(originatorClientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).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/PaystubOverrideEmployeeAddress.java
src/main/java/com/plaid/client/model/PaystubOverrideEmployeeAddress.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 address of the employee. */ @ApiModel(description = "The address of the employee.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaystubOverrideEmployeeAddress { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) private String city; public static final String SERIALIZED_NAME_REGION = "region"; @SerializedName(SERIALIZED_NAME_REGION) private String region; public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) private String street; public static final String SERIALIZED_NAME_POSTAL_CODE = "postal_code"; @SerializedName(SERIALIZED_NAME_POSTAL_CODE) private String postalCode; public static final String SERIALIZED_NAME_COUNTRY = "country"; @SerializedName(SERIALIZED_NAME_COUNTRY) private String country; public PaystubOverrideEmployeeAddress city(String city) { this.city = city; return this; } /** * The full city name. * @return city **/ @javax.annotation.Nullable @ApiModelProperty(value = "The full city name.") public String getCity() { return city; } public void setCity(String city) { this.city = city; } public PaystubOverrideEmployeeAddress region(String region) { this.region = region; return this; } /** * The region or state Example: &#x60;\&quot;NC\&quot;&#x60; * @return region **/ @javax.annotation.Nullable @ApiModelProperty(value = "The region or state Example: `\"NC\"`") public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public PaystubOverrideEmployeeAddress street(String street) { this.street = street; return this; } /** * The full street address Example: &#x60;\&quot;564 Main Street, APT 15\&quot;&#x60; * @return street **/ @javax.annotation.Nullable @ApiModelProperty(value = "The full street address Example: `\"564 Main Street, APT 15\"`") public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } public PaystubOverrideEmployeeAddress postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * 5 digit postal code. * @return postalCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "5 digit postal code.") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public PaystubOverrideEmployeeAddress country(String country) { this.country = country; return this; } /** * The country of the address. * @return country **/ @javax.annotation.Nullable @ApiModelProperty(value = "The country of the address.") public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaystubOverrideEmployeeAddress paystubOverrideEmployeeAddress = (PaystubOverrideEmployeeAddress) o; return Objects.equals(this.city, paystubOverrideEmployeeAddress.city) && Objects.equals(this.region, paystubOverrideEmployeeAddress.region) && Objects.equals(this.street, paystubOverrideEmployeeAddress.street) && Objects.equals(this.postalCode, paystubOverrideEmployeeAddress.postalCode) && Objects.equals(this.country, paystubOverrideEmployeeAddress.country); } @Override public int hashCode() { return Objects.hash(city, region, street, postalCode, country); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaystubOverrideEmployeeAddress {\n"); sb.append(" city: ").append(toIndentedString(city)).append("\n"); sb.append(" region: ").append(toIndentedString(region)).append("\n"); sb.append(" street: ").append(toIndentedString(street)).append("\n"); sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n"); sb.append(" country: ").append(toIndentedString(country)).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/UserThirdPartyTokenRemoveRequest.java
src/main/java/com/plaid/client/model/UserThirdPartyTokenRemoveRequest.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; /** * UserThirdPartyTokenCreateRequest defines the request schema for &#x60;/user/third_party_token/remove&#x60; */ @ApiModel(description = "UserThirdPartyTokenCreateRequest defines the request schema for `/user/third_party_token/remove`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class UserThirdPartyTokenRemoveRequest { 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_THIRD_PARTY_USER_TOKEN = "third_party_user_token"; @SerializedName(SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN) private String thirdPartyUserToken; public UserThirdPartyTokenRemoveRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; 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 UserThirdPartyTokenRemoveRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; 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 UserThirdPartyTokenRemoveRequest thirdPartyUserToken(String thirdPartyUserToken) { this.thirdPartyUserToken = thirdPartyUserToken; return this; } /** * The third-party user token associated with the requested User data. * @return thirdPartyUserToken **/ @ApiModelProperty(required = true, value = "The third-party user token associated with the requested User data.") public String getThirdPartyUserToken() { return thirdPartyUserToken; } public void setThirdPartyUserToken(String thirdPartyUserToken) { this.thirdPartyUserToken = thirdPartyUserToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } UserThirdPartyTokenRemoveRequest userThirdPartyTokenRemoveRequest = (UserThirdPartyTokenRemoveRequest) o; return Objects.equals(this.clientId, userThirdPartyTokenRemoveRequest.clientId) && Objects.equals(this.secret, userThirdPartyTokenRemoveRequest.secret) && Objects.equals(this.thirdPartyUserToken, userThirdPartyTokenRemoveRequest.thirdPartyUserToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, thirdPartyUserToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class UserThirdPartyTokenRemoveRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" thirdPartyUserToken: ").append(toIndentedString(thirdPartyUserToken)).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/ExpirationDate.java
src/main/java/com/plaid/client/model/ExpirationDate.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 description of whether the associated document was expired when the verification was performed. Note: In the case where an expiration date is not present on the document or failed to be extracted, this value will be &#x60;no_data&#x60;. */ @JsonAdapter(ExpirationDate.Adapter.class) public enum ExpirationDate { NOT_EXPIRED("not_expired"), EXPIRED("expired"), NO_DATA("no_data"), // 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; ExpirationDate(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static ExpirationDate fromValue(String value) { for (ExpirationDate b : ExpirationDate.values()) { if (b.value.equals(value)) { return b; } } return ExpirationDate.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<ExpirationDate> { @Override public void write(final JsonWriter jsonWriter, final ExpirationDate enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public ExpirationDate read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return ExpirationDate.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/CraCheckReportCreateRequest.java
src/main/java/com/plaid/client/model/CraCheckReportCreateRequest.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.ConsumerReportPermissiblePurpose; import com.plaid.client.model.CraCheckReportCashflowInsightsGetOptions; import com.plaid.client.model.CraCheckReportCreateBaseReportOptions; import com.plaid.client.model.CraCheckReportCreatePartnerInsightsOptions; import com.plaid.client.model.CraCheckReportLendScoreGetOptions; import com.plaid.client.model.CraCheckReportNetworkInsightsGetOptions; 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; /** * CraCheckReportCreateRequest defines the request schema for &#x60;/cra/check_report/create&#x60;. */ @ApiModel(description = "CraCheckReportCreateRequest defines the request schema for `/cra/check_report/create`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCheckReportCreateRequest { 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_USER_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) private String userToken; public static final String SERIALIZED_NAME_WEBHOOK = "webhook"; @SerializedName(SERIALIZED_NAME_WEBHOOK) private String webhook; public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) private Integer daysRequested; public static final String SERIALIZED_NAME_DAYS_REQUIRED = "days_required"; @SerializedName(SERIALIZED_NAME_DAYS_REQUIRED) private Integer daysRequired; 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_PRODUCTS = "products"; @SerializedName(SERIALIZED_NAME_PRODUCTS) private List<Products> products = null; public static final String SERIALIZED_NAME_BASE_REPORT = "base_report"; @SerializedName(SERIALIZED_NAME_BASE_REPORT) private CraCheckReportCreateBaseReportOptions baseReport; public static final String SERIALIZED_NAME_CASHFLOW_INSIGHTS = "cashflow_insights"; @SerializedName(SERIALIZED_NAME_CASHFLOW_INSIGHTS) private CraCheckReportCashflowInsightsGetOptions cashflowInsights; public static final String SERIALIZED_NAME_PARTNER_INSIGHTS = "partner_insights"; @SerializedName(SERIALIZED_NAME_PARTNER_INSIGHTS) private CraCheckReportCreatePartnerInsightsOptions partnerInsights; public static final String SERIALIZED_NAME_LEND_SCORE = "lend_score"; @SerializedName(SERIALIZED_NAME_LEND_SCORE) private CraCheckReportLendScoreGetOptions lendScore; public static final String SERIALIZED_NAME_NETWORK_INSIGHTS = "network_insights"; @SerializedName(SERIALIZED_NAME_NETWORK_INSIGHTS) private CraCheckReportNetworkInsightsGetOptions networkInsights; public static final String SERIALIZED_NAME_INCLUDE_INVESTMENTS = "include_investments"; @SerializedName(SERIALIZED_NAME_INCLUDE_INVESTMENTS) private Boolean includeInvestments; public static final String SERIALIZED_NAME_CONSUMER_REPORT_PERMISSIBLE_PURPOSE = "consumer_report_permissible_purpose"; @SerializedName(SERIALIZED_NAME_CONSUMER_REPORT_PERMISSIBLE_PURPOSE) private ConsumerReportPermissiblePurpose consumerReportPermissiblePurpose; public CraCheckReportCreateRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; 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 CraCheckReportCreateRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; 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 CraCheckReportCreateRequest userId(String userId) { this.userId = userId; return this; } /** * A unique user identifier, created by &#x60;/user/create&#x60;. Integrations that began using &#x60;/user/create&#x60; after December 10, 2025 use this field to identify a user instead of the &#x60;user_token&#x60;. 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 CraCheckReportCreateRequest 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 &#x60;user_token&#x60; field. All other customers should use the &#x60;user_id&#x60; 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; } public CraCheckReportCreateRequest webhook(String webhook) { this.webhook = webhook; return this; } /** * The destination URL to which webhooks will be sent * @return webhook **/ @ApiModelProperty(required = true, value = "The destination URL to which webhooks will be sent ") public String getWebhook() { return webhook; } public void setWebhook(String webhook) { this.webhook = webhook; } public CraCheckReportCreateRequest daysRequested(Integer daysRequested) { this.daysRequested = daysRequested; return this; } /** * The number of days of data to request for the report. Default value is 365; maximum is 731; minimum is 180. If a value lower than 180 is provided, a minimum of 180 days of history will be requested. * maximum: 731 * @return daysRequested **/ @ApiModelProperty(required = true, value = "The number of days of data to request for the report. Default value is 365; maximum is 731; minimum is 180. If a value lower than 180 is provided, a minimum of 180 days of history will be requested.") public Integer getDaysRequested() { return daysRequested; } public void setDaysRequested(Integer daysRequested) { this.daysRequested = daysRequested; } public CraCheckReportCreateRequest daysRequired(Integer daysRequired) { this.daysRequired = daysRequired; return this; } /** * The minimum number of days of data required for the report to be successfully generated. * maximum: 184 * @return daysRequired **/ @javax.annotation.Nullable @ApiModelProperty(value = "The minimum number of days of data required for the report to be successfully generated.") public Integer getDaysRequired() { return daysRequired; } public void setDaysRequired(Integer daysRequired) { this.daysRequired = daysRequired; } public CraCheckReportCreateRequest 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 CraCheckReportCreateRequest products(List<Products> products) { this.products = products; return this; } public CraCheckReportCreateRequest addProductsItem(Products productsItem) { if (this.products == null) { this.products = new ArrayList<>(); } this.products.add(productsItem); return this; } /** * Specifies a list of products that will be eagerly generated when creating the report (in addition to the Base Report, which is always eagerly generated). These products will be made available before a success webhook is sent. Use this option to minimize response latency for product &#x60;/get&#x60; endpoints. Note that specifying &#x60;cra_partner_insights&#x60; in this field will trigger a billable event. Other products are not billed until the respective reports are fetched via product-specific &#x60;/get&#x60; endpoints. * @return products **/ @javax.annotation.Nullable @ApiModelProperty(value = "Specifies a list of products that will be eagerly generated when creating the report (in addition to the Base Report, which is always eagerly generated). These products will be made available before a success webhook is sent. Use this option to minimize response latency for product `/get` endpoints. Note that specifying `cra_partner_insights` in this field will trigger a billable event. Other products are not billed until the respective reports are fetched via product-specific `/get` endpoints.") public List<Products> getProducts() { return products; } public void setProducts(List<Products> products) { this.products = products; } public CraCheckReportCreateRequest baseReport(CraCheckReportCreateBaseReportOptions baseReport) { this.baseReport = baseReport; return this; } /** * Get baseReport * @return baseReport **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CraCheckReportCreateBaseReportOptions getBaseReport() { return baseReport; } public void setBaseReport(CraCheckReportCreateBaseReportOptions baseReport) { this.baseReport = baseReport; } public CraCheckReportCreateRequest cashflowInsights(CraCheckReportCashflowInsightsGetOptions cashflowInsights) { this.cashflowInsights = cashflowInsights; return this; } /** * Get cashflowInsights * @return cashflowInsights **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CraCheckReportCashflowInsightsGetOptions getCashflowInsights() { return cashflowInsights; } public void setCashflowInsights(CraCheckReportCashflowInsightsGetOptions cashflowInsights) { this.cashflowInsights = cashflowInsights; } public CraCheckReportCreateRequest partnerInsights(CraCheckReportCreatePartnerInsightsOptions partnerInsights) { this.partnerInsights = partnerInsights; return this; } /** * Get partnerInsights * @return partnerInsights **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CraCheckReportCreatePartnerInsightsOptions getPartnerInsights() { return partnerInsights; } public void setPartnerInsights(CraCheckReportCreatePartnerInsightsOptions partnerInsights) { this.partnerInsights = partnerInsights; } public CraCheckReportCreateRequest lendScore(CraCheckReportLendScoreGetOptions lendScore) { this.lendScore = lendScore; return this; } /** * Get lendScore * @return lendScore **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CraCheckReportLendScoreGetOptions getLendScore() { return lendScore; } public void setLendScore(CraCheckReportLendScoreGetOptions lendScore) { this.lendScore = lendScore; } public CraCheckReportCreateRequest networkInsights(CraCheckReportNetworkInsightsGetOptions networkInsights) { this.networkInsights = networkInsights; return this; } /** * Get networkInsights * @return networkInsights **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CraCheckReportNetworkInsightsGetOptions getNetworkInsights() { return networkInsights; } public void setNetworkInsights(CraCheckReportNetworkInsightsGetOptions networkInsights) { this.networkInsights = networkInsights; } public CraCheckReportCreateRequest includeInvestments(Boolean includeInvestments) { this.includeInvestments = includeInvestments; return this; } /** * Indicates that investment data should be extracted from the linked account(s). * @return includeInvestments **/ @javax.annotation.Nullable @ApiModelProperty(value = "Indicates that investment data should be extracted from the linked account(s).") public Boolean getIncludeInvestments() { return includeInvestments; } public void setIncludeInvestments(Boolean includeInvestments) { this.includeInvestments = includeInvestments; } public CraCheckReportCreateRequest consumerReportPermissiblePurpose(ConsumerReportPermissiblePurpose consumerReportPermissiblePurpose) { this.consumerReportPermissiblePurpose = consumerReportPermissiblePurpose; return this; } /** * Get consumerReportPermissiblePurpose * @return consumerReportPermissiblePurpose **/ @ApiModelProperty(required = true, value = "") public ConsumerReportPermissiblePurpose getConsumerReportPermissiblePurpose() { return consumerReportPermissiblePurpose; } public void setConsumerReportPermissiblePurpose(ConsumerReportPermissiblePurpose consumerReportPermissiblePurpose) { this.consumerReportPermissiblePurpose = consumerReportPermissiblePurpose; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraCheckReportCreateRequest craCheckReportCreateRequest = (CraCheckReportCreateRequest) o; return Objects.equals(this.clientId, craCheckReportCreateRequest.clientId) && Objects.equals(this.secret, craCheckReportCreateRequest.secret) && Objects.equals(this.userId, craCheckReportCreateRequest.userId) && Objects.equals(this.userToken, craCheckReportCreateRequest.userToken) && Objects.equals(this.webhook, craCheckReportCreateRequest.webhook) && Objects.equals(this.daysRequested, craCheckReportCreateRequest.daysRequested) && Objects.equals(this.daysRequired, craCheckReportCreateRequest.daysRequired) && Objects.equals(this.clientReportId, craCheckReportCreateRequest.clientReportId) && Objects.equals(this.products, craCheckReportCreateRequest.products) && Objects.equals(this.baseReport, craCheckReportCreateRequest.baseReport) && Objects.equals(this.cashflowInsights, craCheckReportCreateRequest.cashflowInsights) && Objects.equals(this.partnerInsights, craCheckReportCreateRequest.partnerInsights) && Objects.equals(this.lendScore, craCheckReportCreateRequest.lendScore) && Objects.equals(this.networkInsights, craCheckReportCreateRequest.networkInsights) && Objects.equals(this.includeInvestments, craCheckReportCreateRequest.includeInvestments) && Objects.equals(this.consumerReportPermissiblePurpose, craCheckReportCreateRequest.consumerReportPermissiblePurpose); } @Override public int hashCode() { return Objects.hash(clientId, secret, userId, userToken, webhook, daysRequested, daysRequired, clientReportId, products, baseReport, cashflowInsights, partnerInsights, lendScore, networkInsights, includeInvestments, consumerReportPermissiblePurpose); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportCreateRequest {\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(" userToken: ").append(toIndentedString(userToken)).append("\n"); sb.append(" webhook: ").append(toIndentedString(webhook)).append("\n"); sb.append(" daysRequested: ").append(toIndentedString(daysRequested)).append("\n"); sb.append(" daysRequired: ").append(toIndentedString(daysRequired)).append("\n"); sb.append(" clientReportId: ").append(toIndentedString(clientReportId)).append("\n"); sb.append(" products: ").append(toIndentedString(products)).append("\n"); sb.append(" baseReport: ").append(toIndentedString(baseReport)).append("\n"); sb.append(" cashflowInsights: ").append(toIndentedString(cashflowInsights)).append("\n"); sb.append(" partnerInsights: ").append(toIndentedString(partnerInsights)).append("\n"); sb.append(" lendScore: ").append(toIndentedString(lendScore)).append("\n"); sb.append(" networkInsights: ").append(toIndentedString(networkInsights)).append("\n"); sb.append(" includeInvestments: ").append(toIndentedString(includeInvestments)).append("\n"); sb.append(" consumerReportPermissiblePurpose: ").append(toIndentedString(consumerReportPermissiblePurpose)).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/ItemProductReadyWebhook.java
src/main/java/com/plaid/client/model/ItemProductReadyWebhook.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.PlaidError; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Fired once Plaid calculates income from an Item. */ @ApiModel(description = "Fired once Plaid calculates income from an Item.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ItemProductReadyWebhook { 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_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private PlaidError error; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public ItemProductReadyWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;INCOME&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`INCOME`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public ItemProductReadyWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;PRODUCT_READY&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`PRODUCT_READY`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public ItemProductReadyWebhook itemId(String itemId) { this.itemId = itemId; return this; } /** * The &#x60;item_id&#x60; 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 ItemProductReadyWebhook error(PlaidError error) { this.error = error; return this; } /** * Get error * @return error **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PlaidError getError() { return error; } public void setError(PlaidError error) { this.error = error; } public ItemProductReadyWebhook 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; } ItemProductReadyWebhook itemProductReadyWebhook = (ItemProductReadyWebhook) o; return Objects.equals(this.webhookType, itemProductReadyWebhook.webhookType) && Objects.equals(this.webhookCode, itemProductReadyWebhook.webhookCode) && Objects.equals(this.itemId, itemProductReadyWebhook.itemId) && Objects.equals(this.error, itemProductReadyWebhook.error) && Objects.equals(this.environment, itemProductReadyWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, itemId, error, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ItemProductReadyWebhook {\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(" error: ").append(toIndentedString(error)).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/PaystubOverrideDistributionBreakdown.java
src/main/java/com/plaid/client/model/PaystubOverrideDistributionBreakdown.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 accounts that the payment was distributed to. */ @ApiModel(description = "Information about the accounts that the payment was distributed to.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaystubOverrideDistributionBreakdown { public static final String SERIALIZED_NAME_ACCOUNT_NAME = "account_name"; @SerializedName(SERIALIZED_NAME_ACCOUNT_NAME) private String accountName; public static final String SERIALIZED_NAME_BANK_NAME = "bank_name"; @SerializedName(SERIALIZED_NAME_BANK_NAME) private String bankName; public static final String SERIALIZED_NAME_CURRENT_AMOUNT = "current_amount"; @SerializedName(SERIALIZED_NAME_CURRENT_AMOUNT) private Double currentAmount; public static final String SERIALIZED_NAME_CURRENCY = "currency"; @SerializedName(SERIALIZED_NAME_CURRENCY) private String currency; public static final String SERIALIZED_NAME_MASK = "mask"; @SerializedName(SERIALIZED_NAME_MASK) private String mask; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private String type; public PaystubOverrideDistributionBreakdown accountName(String accountName) { this.accountName = accountName; return this; } /** * Name of the account for the given distribution. * @return accountName **/ @javax.annotation.Nullable @ApiModelProperty(value = "Name of the account for the given distribution.") public String getAccountName() { return accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public PaystubOverrideDistributionBreakdown bankName(String bankName) { this.bankName = bankName; return this; } /** * The name of the bank that the payment is being deposited to. * @return bankName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The name of the bank that the payment is being deposited to.") public String getBankName() { return bankName; } public void setBankName(String bankName) { this.bankName = bankName; } public PaystubOverrideDistributionBreakdown currentAmount(Double currentAmount) { this.currentAmount = currentAmount; return this; } /** * The amount distributed to this account. * @return currentAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The amount distributed to this account.") public Double getCurrentAmount() { return currentAmount; } public void setCurrentAmount(Double currentAmount) { this.currentAmount = currentAmount; } public PaystubOverrideDistributionBreakdown currency(String currency) { this.currency = currency; return this; } /** * The ISO-4217 currency code of the net pay. Always &#x60;null&#x60; if &#x60;unofficial_currency_code&#x60; is non-null. * @return currency **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ISO-4217 currency code of the net pay. Always `null` if `unofficial_currency_code` is non-null.") public String getCurrency() { return currency; } public void setCurrency(String currency) { this.currency = currency; } public PaystubOverrideDistributionBreakdown mask(String mask) { this.mask = mask; return this; } /** * The last 2-4 alphanumeric characters of an account&#39;s official account number. * @return mask **/ @javax.annotation.Nullable @ApiModelProperty(value = "The last 2-4 alphanumeric characters of an account's official account number.") public String getMask() { return mask; } public void setMask(String mask) { this.mask = mask; } public PaystubOverrideDistributionBreakdown type(String type) { this.type = type; return this; } /** * Type of the account that the paystub was sent to (e.g. &#39;checking&#39;). * @return type **/ @javax.annotation.Nullable @ApiModelProperty(value = "Type of the account that the paystub was sent to (e.g. 'checking').") public String getType() { return type; } public void setType(String type) { this.type = type; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaystubOverrideDistributionBreakdown paystubOverrideDistributionBreakdown = (PaystubOverrideDistributionBreakdown) o; return Objects.equals(this.accountName, paystubOverrideDistributionBreakdown.accountName) && Objects.equals(this.bankName, paystubOverrideDistributionBreakdown.bankName) && Objects.equals(this.currentAmount, paystubOverrideDistributionBreakdown.currentAmount) && Objects.equals(this.currency, paystubOverrideDistributionBreakdown.currency) && Objects.equals(this.mask, paystubOverrideDistributionBreakdown.mask) && Objects.equals(this.type, paystubOverrideDistributionBreakdown.type); } @Override public int hashCode() { return Objects.hash(accountName, bankName, currentAmount, currency, mask, type); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaystubOverrideDistributionBreakdown {\n"); sb.append(" accountName: ").append(toIndentedString(accountName)).append("\n"); sb.append(" bankName: ").append(toIndentedString(bankName)).append("\n"); sb.append(" currentAmount: ").append(toIndentedString(currentAmount)).append("\n"); sb.append(" currency: ").append(toIndentedString(currency)).append("\n"); sb.append(" mask: ").append(toIndentedString(mask)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).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/TransferEventListResponse.java
src/main/java/com/plaid/client/model/TransferEventListResponse.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.TransferEvent; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Defines the response schema for &#x60;/transfer/event/list&#x60; */ @ApiModel(description = "Defines the response schema for `/transfer/event/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferEventListResponse { public static final String SERIALIZED_NAME_TRANSFER_EVENTS = "transfer_events"; @SerializedName(SERIALIZED_NAME_TRANSFER_EVENTS) private List<TransferEvent> transferEvents = new ArrayList<>(); 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 TransferEventListResponse transferEvents(List<TransferEvent> transferEvents) { this.transferEvents = transferEvents; return this; } public TransferEventListResponse addTransferEventsItem(TransferEvent transferEventsItem) { this.transferEvents.add(transferEventsItem); return this; } /** * Get transferEvents * @return transferEvents **/ @ApiModelProperty(required = true, value = "") public List<TransferEvent> getTransferEvents() { return transferEvents; } public void setTransferEvents(List<TransferEvent> transferEvents) { this.transferEvents = transferEvents; } public TransferEventListResponse hasMore(Boolean hasMore) { this.hasMore = hasMore; return this; } /** * Whether there are more events to be pulled from the endpoint that have not already been returned * @return hasMore **/ @ApiModelProperty(required = true, value = "Whether there are more events to be pulled from the endpoint that have not already been returned") public Boolean getHasMore() { return hasMore; } public void setHasMore(Boolean hasMore) { this.hasMore = hasMore; } public TransferEventListResponse 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; } TransferEventListResponse transferEventListResponse = (TransferEventListResponse) o; return Objects.equals(this.transferEvents, transferEventListResponse.transferEvents) && Objects.equals(this.hasMore, transferEventListResponse.hasMore) && Objects.equals(this.requestId, transferEventListResponse.requestId); } @Override public int hashCode() { return Objects.hash(transferEvents, hasMore, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferEventListResponse {\n"); sb.append(" transferEvents: ").append(toIndentedString(transferEvents)).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/Taxform.java
src/main/java/com/plaid/client/model/Taxform.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.W2; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Data about an official document used to report the user&#39;s income to the IRS. */ @ApiModel(description = "Data about an official document used to report the user's income to the IRS.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Taxform { public static final String SERIALIZED_NAME_DOC_ID = "doc_id"; @SerializedName(SERIALIZED_NAME_DOC_ID) private String docId; public static final String SERIALIZED_NAME_DOCUMENT_TYPE = "document_type"; @SerializedName(SERIALIZED_NAME_DOCUMENT_TYPE) private String documentType; public static final String SERIALIZED_NAME_W2 = "w2"; @SerializedName(SERIALIZED_NAME_W2) private W2 w2; public Taxform docId(String docId) { this.docId = docId; return this; } /** * An identifier of the document referenced by the document metadata. * @return docId **/ @javax.annotation.Nullable @ApiModelProperty(value = "An identifier of the document referenced by the document metadata.") public String getDocId() { return docId; } public void setDocId(String docId) { this.docId = docId; } public Taxform documentType(String documentType) { this.documentType = documentType; return this; } /** * The type of tax document. Currently, the only supported value is &#x60;w2&#x60;. * @return documentType **/ @ApiModelProperty(required = true, value = "The type of tax document. Currently, the only supported value is `w2`.") public String getDocumentType() { return documentType; } public void setDocumentType(String documentType) { this.documentType = documentType; } public Taxform w2(W2 w2) { this.w2 = w2; return this; } /** * Get w2 * @return w2 **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public W2 getW2() { return w2; } public void setW2(W2 w2) { this.w2 = w2; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Taxform taxform = (Taxform) o; return Objects.equals(this.docId, taxform.docId) && Objects.equals(this.documentType, taxform.documentType) && Objects.equals(this.w2, taxform.w2); } @Override public int hashCode() { return Objects.hash(docId, documentType, w2); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Taxform {\n"); sb.append(" docId: ").append(toIndentedString(docId)).append("\n"); sb.append(" documentType: ").append(toIndentedString(documentType)).append("\n"); sb.append(" w2: ").append(toIndentedString(w2)).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/InstitutionsGetRequestOptions.java
src/main/java/com/plaid/client/model/InstitutionsGetRequestOptions.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; /** * An optional object to filter &#x60;/institutions/get&#x60; results. */ @ApiModel(description = "An optional object to filter `/institutions/get` results.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InstitutionsGetRequestOptions { public static final String SERIALIZED_NAME_PRODUCTS = "products"; @SerializedName(SERIALIZED_NAME_PRODUCTS) private List<Products> products = null; public static final String SERIALIZED_NAME_ROUTING_NUMBERS = "routing_numbers"; @SerializedName(SERIALIZED_NAME_ROUTING_NUMBERS) private List<String> routingNumbers = null; public static final String SERIALIZED_NAME_OAUTH = "oauth"; @SerializedName(SERIALIZED_NAME_OAUTH) private Boolean oauth; public static final String SERIALIZED_NAME_INCLUDE_OPTIONAL_METADATA = "include_optional_metadata"; @SerializedName(SERIALIZED_NAME_INCLUDE_OPTIONAL_METADATA) private Boolean includeOptionalMetadata; public static final String SERIALIZED_NAME_INCLUDE_AUTH_METADATA = "include_auth_metadata"; @SerializedName(SERIALIZED_NAME_INCLUDE_AUTH_METADATA) private Boolean includeAuthMetadata = false; public static final String SERIALIZED_NAME_INCLUDE_PAYMENT_INITIATION_METADATA = "include_payment_initiation_metadata"; @SerializedName(SERIALIZED_NAME_INCLUDE_PAYMENT_INITIATION_METADATA) private Boolean includePaymentInitiationMetadata = false; public InstitutionsGetRequestOptions products(List<Products> products) { this.products = products; return this; } public InstitutionsGetRequestOptions addProductsItem(Products productsItem) { if (this.products == null) { this.products = new ArrayList<>(); } this.products.add(productsItem); return this; } /** * Filter the Institutions based on which products they support. Will only return institutions that support all listed products. When filtering based on &#x60;auth&#x60;, an institution must support Instant Auth to match the criterion. To filter for Signal Transaction Scores support, use &#x60;balance&#x60;. To filter for Transfer support, use &#x60;auth&#x60;. * @return products **/ @javax.annotation.Nullable @ApiModelProperty(value = "Filter the Institutions based on which products they support. Will only return institutions that support all listed products. When filtering based on `auth`, an institution must support Instant Auth to match the criterion. To filter for Signal Transaction Scores support, use `balance`. To filter for Transfer support, use `auth`.") public List<Products> getProducts() { return products; } public void setProducts(List<Products> products) { this.products = products; } public InstitutionsGetRequestOptions routingNumbers(List<String> routingNumbers) { this.routingNumbers = routingNumbers; return this; } public InstitutionsGetRequestOptions addRoutingNumbersItem(String routingNumbersItem) { if (this.routingNumbers == null) { this.routingNumbers = new ArrayList<>(); } this.routingNumbers.add(routingNumbersItem); return this; } /** * Specify an array of routing numbers to filter institutions. The response will only return institutions that match all of the routing numbers in the array. Routing number records used for this matching are generally comprehensive; however, failure to match a given routing number to an institution does not necessarily mean that the institution is unsupported by Plaid. Invalid routing numbers (numbers that are not 9 digits in length or do not have a valid checksum) will be filtered from the array before the response is processed. If all provided routing numbers are invalid, an &#x60;INVALID_REQUEST&#x60; error with the code of &#x60;INVALID_FIELD&#x60; will be returned. * @return routingNumbers **/ @javax.annotation.Nullable @ApiModelProperty(value = "Specify an array of routing numbers to filter institutions. The response will only return institutions that match all of the routing numbers in the array. Routing number records used for this matching are generally comprehensive; however, failure to match a given routing number to an institution does not necessarily mean that the institution is unsupported by Plaid. Invalid routing numbers (numbers that are not 9 digits in length or do not have a valid checksum) will be filtered from the array before the response is processed. If all provided routing numbers are invalid, an `INVALID_REQUEST` error with the code of `INVALID_FIELD` will be returned.") public List<String> getRoutingNumbers() { return routingNumbers; } public void setRoutingNumbers(List<String> routingNumbers) { this.routingNumbers = routingNumbers; } public InstitutionsGetRequestOptions oauth(Boolean oauth) { this.oauth = oauth; return this; } /** * Limit results to institutions with or without OAuth login flows. Note that institutions will have &#x60;oauth&#x60; set to &#x60;true&#x60; if some Items associated with that institution are required to use OAuth flows; institutions in a state of migration to OAuth will have the &#x60;oauth&#x60; attribute set to &#x60;true&#x60;. * @return oauth **/ @javax.annotation.Nullable @ApiModelProperty(value = "Limit results to institutions with or without OAuth login flows. Note that institutions will have `oauth` set to `true` if some Items associated with that institution are required to use OAuth flows; institutions in a state of migration to OAuth will have the `oauth` attribute set to `true`.") public Boolean getOauth() { return oauth; } public void setOauth(Boolean oauth) { this.oauth = oauth; } public InstitutionsGetRequestOptions includeOptionalMetadata(Boolean includeOptionalMetadata) { this.includeOptionalMetadata = includeOptionalMetadata; return this; } /** * When &#x60;true&#x60;, return the institution&#39;s homepage URL, logo and primary brand color. Not all institutions&#39; logos are available. Note that Plaid does not own any of the logos shared by the API, and that by accessing or using these logos, you agree that you are doing so at your own risk and will, if necessary, obtain all required permissions from the appropriate rights holders and adhere to any applicable usage guidelines. Plaid disclaims all express or implied warranties with respect to the logos. * @return includeOptionalMetadata **/ @javax.annotation.Nullable @ApiModelProperty(value = "When `true`, return the institution's homepage URL, logo and primary brand color. Not all institutions' logos are available. Note that Plaid does not own any of the logos shared by the API, and that by accessing or using these logos, you agree that you are doing so at your own risk and will, if necessary, obtain all required permissions from the appropriate rights holders and adhere to any applicable usage guidelines. Plaid disclaims all express or implied warranties with respect to the logos.") public Boolean getIncludeOptionalMetadata() { return includeOptionalMetadata; } public void setIncludeOptionalMetadata(Boolean includeOptionalMetadata) { this.includeOptionalMetadata = includeOptionalMetadata; } public InstitutionsGetRequestOptions includeAuthMetadata(Boolean includeAuthMetadata) { this.includeAuthMetadata = includeAuthMetadata; return this; } /** * When &#x60;true&#x60;, returns metadata related to the Auth product indicating which auth methods are supported. * @return includeAuthMetadata **/ @javax.annotation.Nullable @ApiModelProperty(value = "When `true`, returns metadata related to the Auth product indicating which auth methods are supported.") public Boolean getIncludeAuthMetadata() { return includeAuthMetadata; } public void setIncludeAuthMetadata(Boolean includeAuthMetadata) { this.includeAuthMetadata = includeAuthMetadata; } public InstitutionsGetRequestOptions includePaymentInitiationMetadata(Boolean includePaymentInitiationMetadata) { this.includePaymentInitiationMetadata = includePaymentInitiationMetadata; return this; } /** * When &#x60;true&#x60;, returns metadata related to the Payment Initiation product indicating which payment configurations are supported. * @return includePaymentInitiationMetadata **/ @javax.annotation.Nullable @ApiModelProperty(value = "When `true`, returns metadata related to the Payment Initiation product indicating which payment configurations are supported.") public Boolean getIncludePaymentInitiationMetadata() { return includePaymentInitiationMetadata; } public void setIncludePaymentInitiationMetadata(Boolean includePaymentInitiationMetadata) { this.includePaymentInitiationMetadata = includePaymentInitiationMetadata; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } InstitutionsGetRequestOptions institutionsGetRequestOptions = (InstitutionsGetRequestOptions) o; return Objects.equals(this.products, institutionsGetRequestOptions.products) && Objects.equals(this.routingNumbers, institutionsGetRequestOptions.routingNumbers) && Objects.equals(this.oauth, institutionsGetRequestOptions.oauth) && Objects.equals(this.includeOptionalMetadata, institutionsGetRequestOptions.includeOptionalMetadata) && Objects.equals(this.includeAuthMetadata, institutionsGetRequestOptions.includeAuthMetadata) && Objects.equals(this.includePaymentInitiationMetadata, institutionsGetRequestOptions.includePaymentInitiationMetadata); } @Override public int hashCode() { return Objects.hash(products, routingNumbers, oauth, includeOptionalMetadata, includeAuthMetadata, includePaymentInitiationMetadata); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InstitutionsGetRequestOptions {\n"); sb.append(" products: ").append(toIndentedString(products)).append("\n"); sb.append(" routingNumbers: ").append(toIndentedString(routingNumbers)).append("\n"); sb.append(" oauth: ").append(toIndentedString(oauth)).append("\n"); sb.append(" includeOptionalMetadata: ").append(toIndentedString(includeOptionalMetadata)).append("\n"); sb.append(" includeAuthMetadata: ").append(toIndentedString(includeAuthMetadata)).append("\n"); sb.append(" includePaymentInitiationMetadata: ").append(toIndentedString(includePaymentInitiationMetadata)).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/ExternalPaymentRefundDetails.java
src/main/java/com/plaid/client/model/ExternalPaymentRefundDetails.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.RecipientBACSNullable; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Details about external payment refund */ @ApiModel(description = "Details about external payment refund") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ExternalPaymentRefundDetails { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_IBAN = "iban"; @SerializedName(SERIALIZED_NAME_IBAN) private String iban; public static final String SERIALIZED_NAME_BACS = "bacs"; @SerializedName(SERIALIZED_NAME_BACS) private RecipientBACSNullable bacs; public ExternalPaymentRefundDetails name(String name) { this.name = name; return this; } /** * The name of the account holder. * @return name **/ @ApiModelProperty(required = true, value = "The name of the account holder.") public String getName() { return name; } public void setName(String name) { this.name = name; } public ExternalPaymentRefundDetails iban(String iban) { this.iban = iban; return this; } /** * The International Bank Account Number (IBAN) for the account. * @return iban **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The International Bank Account Number (IBAN) for the account.") public String getIban() { return iban; } public void setIban(String iban) { this.iban = iban; } public ExternalPaymentRefundDetails bacs(RecipientBACSNullable bacs) { this.bacs = bacs; return this; } /** * Get bacs * @return bacs **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public RecipientBACSNullable getBacs() { return bacs; } public void setBacs(RecipientBACSNullable bacs) { this.bacs = bacs; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ExternalPaymentRefundDetails externalPaymentRefundDetails = (ExternalPaymentRefundDetails) o; return Objects.equals(this.name, externalPaymentRefundDetails.name) && Objects.equals(this.iban, externalPaymentRefundDetails.iban) && Objects.equals(this.bacs, externalPaymentRefundDetails.bacs); } @Override public int hashCode() { return Objects.hash(name, iban, bacs); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ExternalPaymentRefundDetails {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" iban: ").append(toIndentedString(iban)).append("\n"); sb.append(" bacs: ").append(toIndentedString(bacs)).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/CraCheckReportLendScoreGetOptions.java
src/main/java/com/plaid/client/model/CraCheckReportLendScoreGetOptions.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.PlaidLendScoreVersion; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines configuration options to generate the LendScore */ @ApiModel(description = "Defines configuration options to generate the LendScore") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCheckReportLendScoreGetOptions { public static final String SERIALIZED_NAME_LEND_SCORE_VERSION = "lend_score_version"; @SerializedName(SERIALIZED_NAME_LEND_SCORE_VERSION) private PlaidLendScoreVersion lendScoreVersion; public CraCheckReportLendScoreGetOptions lendScoreVersion(PlaidLendScoreVersion lendScoreVersion) { this.lendScoreVersion = lendScoreVersion; return this; } /** * Get lendScoreVersion * @return lendScoreVersion **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PlaidLendScoreVersion getLendScoreVersion() { return lendScoreVersion; } public void setLendScoreVersion(PlaidLendScoreVersion lendScoreVersion) { this.lendScoreVersion = lendScoreVersion; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraCheckReportLendScoreGetOptions craCheckReportLendScoreGetOptions = (CraCheckReportLendScoreGetOptions) o; return Objects.equals(this.lendScoreVersion, craCheckReportLendScoreGetOptions.lendScoreVersion); } @Override public int hashCode() { return Objects.hash(lendScoreVersion); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportLendScoreGetOptions {\n"); sb.append(" lendScoreVersion: ").append(toIndentedString(lendScoreVersion)).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/ItemImportResponse.java
src/main/java/com/plaid/client/model/ItemImportResponse.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; /** * ItemImportResponse defines the response schema for &#x60;/item/import&#x60; */ @ApiModel(description = "ItemImportResponse defines the response schema for `/item/import`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ItemImportResponse { public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) private String accessToken; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public ItemImportResponse 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 ItemImportResponse 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; } ItemImportResponse itemImportResponse = (ItemImportResponse) o; return Objects.equals(this.accessToken, itemImportResponse.accessToken) && Objects.equals(this.requestId, itemImportResponse.requestId); } @Override public int hashCode() { return Objects.hash(accessToken, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ItemImportResponse {\n"); sb.append(" accessToken: ").append(toIndentedString(accessToken)).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/CreditBankStatementUploadItem.java
src/main/java/com/plaid/client/model/CreditBankStatementUploadItem.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.CreditBankStatementUploadObject; import com.plaid.client.model.PayrollItemStatus; 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; /** * An object containing information about the bank statement upload Item. */ @ApiModel(description = "An object containing information about the bank statement upload Item.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditBankStatementUploadItem { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_BANK_STATEMENTS = "bank_statements"; @SerializedName(SERIALIZED_NAME_BANK_STATEMENTS) private List<CreditBankStatementUploadObject> bankStatements = new ArrayList<>(); public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private PayrollItemStatus status; public static final String SERIALIZED_NAME_UPDATED_AT = "updated_at"; @SerializedName(SERIALIZED_NAME_UPDATED_AT) private OffsetDateTime updatedAt; public CreditBankStatementUploadItem itemId(String itemId) { this.itemId = itemId; return this; } /** * The &#x60;item_id&#x60; 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 CreditBankStatementUploadItem bankStatements(List<CreditBankStatementUploadObject> bankStatements) { this.bankStatements = bankStatements; return this; } public CreditBankStatementUploadItem addBankStatementsItem(CreditBankStatementUploadObject bankStatementsItem) { this.bankStatements.add(bankStatementsItem); return this; } /** * Get bankStatements * @return bankStatements **/ @ApiModelProperty(required = true, value = "") public List<CreditBankStatementUploadObject> getBankStatements() { return bankStatements; } public void setBankStatements(List<CreditBankStatementUploadObject> bankStatements) { this.bankStatements = bankStatements; } public CreditBankStatementUploadItem status(PayrollItemStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public PayrollItemStatus getStatus() { return status; } public void setStatus(PayrollItemStatus status) { this.status = status; } public CreditBankStatementUploadItem updatedAt(OffsetDateTime updatedAt) { this.updatedAt = updatedAt; return this; } /** * Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DDTHH:mm:ssZ) indicating the last time that the Item was updated. * @return updatedAt **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DDTHH:mm:ssZ) indicating the last time that the Item was updated.") public OffsetDateTime getUpdatedAt() { return updatedAt; } public void setUpdatedAt(OffsetDateTime updatedAt) { this.updatedAt = updatedAt; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditBankStatementUploadItem creditBankStatementUploadItem = (CreditBankStatementUploadItem) o; return Objects.equals(this.itemId, creditBankStatementUploadItem.itemId) && Objects.equals(this.bankStatements, creditBankStatementUploadItem.bankStatements) && Objects.equals(this.status, creditBankStatementUploadItem.status) && Objects.equals(this.updatedAt, creditBankStatementUploadItem.updatedAt); } @Override public int hashCode() { return Objects.hash(itemId, bankStatements, status, updatedAt); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditBankStatementUploadItem {\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" bankStatements: ").append(toIndentedString(bankStatements)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).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/AAMVAAnalysis.java
src/main/java/com/plaid/client/model/AAMVAAnalysis.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.AAMVADetailedMatchResult; import com.plaid.client.model.AAMVAMatchResult; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Analyzed AAMVA data for the associated hit. Note: This field is only available for U.S. driver&#39;s licenses issued by participating states. */ @ApiModel(description = "Analyzed AAMVA data for the associated hit. Note: This field is only available for U.S. driver's licenses issued by participating states.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AAMVAAnalysis { public static final String SERIALIZED_NAME_IS_VERIFIED = "is_verified"; @SerializedName(SERIALIZED_NAME_IS_VERIFIED) private Boolean isVerified; public static final String SERIALIZED_NAME_ID_NUMBER = "id_number"; @SerializedName(SERIALIZED_NAME_ID_NUMBER) private AAMVAMatchResult idNumber; public static final String SERIALIZED_NAME_ID_ISSUE_DATE = "id_issue_date"; @SerializedName(SERIALIZED_NAME_ID_ISSUE_DATE) private AAMVAMatchResult idIssueDate; public static final String SERIALIZED_NAME_ID_EXPIRATION_DATE = "id_expiration_date"; @SerializedName(SERIALIZED_NAME_ID_EXPIRATION_DATE) private AAMVAMatchResult idExpirationDate; public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) private AAMVADetailedMatchResult street; public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) private AAMVAMatchResult city; public static final String SERIALIZED_NAME_POSTAL_CODE = "postal_code"; @SerializedName(SERIALIZED_NAME_POSTAL_CODE) private AAMVADetailedMatchResult postalCode; public static final String SERIALIZED_NAME_DATE_OF_BIRTH = "date_of_birth"; @SerializedName(SERIALIZED_NAME_DATE_OF_BIRTH) private AAMVAMatchResult dateOfBirth; public static final String SERIALIZED_NAME_GENDER = "gender"; @SerializedName(SERIALIZED_NAME_GENDER) private AAMVAMatchResult gender; public static final String SERIALIZED_NAME_HEIGHT = "height"; @SerializedName(SERIALIZED_NAME_HEIGHT) private AAMVAMatchResult height; public static final String SERIALIZED_NAME_EYE_COLOR = "eye_color"; @SerializedName(SERIALIZED_NAME_EYE_COLOR) private AAMVAMatchResult eyeColor; public static final String SERIALIZED_NAME_FIRST_NAME = "first_name"; @SerializedName(SERIALIZED_NAME_FIRST_NAME) private AAMVADetailedMatchResult firstName; public static final String SERIALIZED_NAME_MIDDLE_NAME = "middle_name"; @SerializedName(SERIALIZED_NAME_MIDDLE_NAME) private AAMVADetailedMatchResult middleName; public static final String SERIALIZED_NAME_LAST_NAME = "last_name"; @SerializedName(SERIALIZED_NAME_LAST_NAME) private AAMVADetailedMatchResult lastName; public AAMVAAnalysis isVerified(Boolean isVerified) { this.isVerified = isVerified; return this; } /** * The overall outcome of checking the associated hit against the issuing state database. * @return isVerified **/ @ApiModelProperty(example = "true", required = true, value = "The overall outcome of checking the associated hit against the issuing state database.") public Boolean getIsVerified() { return isVerified; } public void setIsVerified(Boolean isVerified) { this.isVerified = isVerified; } public AAMVAAnalysis idNumber(AAMVAMatchResult idNumber) { this.idNumber = idNumber; return this; } /** * Get idNumber * @return idNumber **/ @ApiModelProperty(required = true, value = "") public AAMVAMatchResult getIdNumber() { return idNumber; } public void setIdNumber(AAMVAMatchResult idNumber) { this.idNumber = idNumber; } public AAMVAAnalysis idIssueDate(AAMVAMatchResult idIssueDate) { this.idIssueDate = idIssueDate; return this; } /** * Get idIssueDate * @return idIssueDate **/ @ApiModelProperty(required = true, value = "") public AAMVAMatchResult getIdIssueDate() { return idIssueDate; } public void setIdIssueDate(AAMVAMatchResult idIssueDate) { this.idIssueDate = idIssueDate; } public AAMVAAnalysis idExpirationDate(AAMVAMatchResult idExpirationDate) { this.idExpirationDate = idExpirationDate; return this; } /** * Get idExpirationDate * @return idExpirationDate **/ @ApiModelProperty(required = true, value = "") public AAMVAMatchResult getIdExpirationDate() { return idExpirationDate; } public void setIdExpirationDate(AAMVAMatchResult idExpirationDate) { this.idExpirationDate = idExpirationDate; } public AAMVAAnalysis street(AAMVADetailedMatchResult street) { this.street = street; return this; } /** * Get street * @return street **/ @ApiModelProperty(required = true, value = "") public AAMVADetailedMatchResult getStreet() { return street; } public void setStreet(AAMVADetailedMatchResult street) { this.street = street; } public AAMVAAnalysis city(AAMVAMatchResult city) { this.city = city; return this; } /** * Get city * @return city **/ @ApiModelProperty(required = true, value = "") public AAMVAMatchResult getCity() { return city; } public void setCity(AAMVAMatchResult city) { this.city = city; } public AAMVAAnalysis postalCode(AAMVADetailedMatchResult postalCode) { this.postalCode = postalCode; return this; } /** * Get postalCode * @return postalCode **/ @ApiModelProperty(required = true, value = "") public AAMVADetailedMatchResult getPostalCode() { return postalCode; } public void setPostalCode(AAMVADetailedMatchResult postalCode) { this.postalCode = postalCode; } public AAMVAAnalysis dateOfBirth(AAMVAMatchResult dateOfBirth) { this.dateOfBirth = dateOfBirth; return this; } /** * Get dateOfBirth * @return dateOfBirth **/ @ApiModelProperty(required = true, value = "") public AAMVAMatchResult getDateOfBirth() { return dateOfBirth; } public void setDateOfBirth(AAMVAMatchResult dateOfBirth) { this.dateOfBirth = dateOfBirth; } public AAMVAAnalysis gender(AAMVAMatchResult gender) { this.gender = gender; return this; } /** * Get gender * @return gender **/ @ApiModelProperty(required = true, value = "") public AAMVAMatchResult getGender() { return gender; } public void setGender(AAMVAMatchResult gender) { this.gender = gender; } public AAMVAAnalysis height(AAMVAMatchResult height) { this.height = height; return this; } /** * Get height * @return height **/ @ApiModelProperty(required = true, value = "") public AAMVAMatchResult getHeight() { return height; } public void setHeight(AAMVAMatchResult height) { this.height = height; } public AAMVAAnalysis eyeColor(AAMVAMatchResult eyeColor) { this.eyeColor = eyeColor; return this; } /** * Get eyeColor * @return eyeColor **/ @ApiModelProperty(required = true, value = "") public AAMVAMatchResult getEyeColor() { return eyeColor; } public void setEyeColor(AAMVAMatchResult eyeColor) { this.eyeColor = eyeColor; } public AAMVAAnalysis firstName(AAMVADetailedMatchResult firstName) { this.firstName = firstName; return this; } /** * Get firstName * @return firstName **/ @ApiModelProperty(required = true, value = "") public AAMVADetailedMatchResult getFirstName() { return firstName; } public void setFirstName(AAMVADetailedMatchResult firstName) { this.firstName = firstName; } public AAMVAAnalysis middleName(AAMVADetailedMatchResult middleName) { this.middleName = middleName; return this; } /** * Get middleName * @return middleName **/ @ApiModelProperty(required = true, value = "") public AAMVADetailedMatchResult getMiddleName() { return middleName; } public void setMiddleName(AAMVADetailedMatchResult middleName) { this.middleName = middleName; } public AAMVAAnalysis lastName(AAMVADetailedMatchResult lastName) { this.lastName = lastName; return this; } /** * Get lastName * @return lastName **/ @ApiModelProperty(required = true, value = "") public AAMVADetailedMatchResult getLastName() { return lastName; } public void setLastName(AAMVADetailedMatchResult lastName) { this.lastName = lastName; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AAMVAAnalysis aaMVAAnalysis = (AAMVAAnalysis) o; return Objects.equals(this.isVerified, aaMVAAnalysis.isVerified) && Objects.equals(this.idNumber, aaMVAAnalysis.idNumber) && Objects.equals(this.idIssueDate, aaMVAAnalysis.idIssueDate) && Objects.equals(this.idExpirationDate, aaMVAAnalysis.idExpirationDate) && Objects.equals(this.street, aaMVAAnalysis.street) && Objects.equals(this.city, aaMVAAnalysis.city) && Objects.equals(this.postalCode, aaMVAAnalysis.postalCode) && Objects.equals(this.dateOfBirth, aaMVAAnalysis.dateOfBirth) && Objects.equals(this.gender, aaMVAAnalysis.gender) && Objects.equals(this.height, aaMVAAnalysis.height) && Objects.equals(this.eyeColor, aaMVAAnalysis.eyeColor) && Objects.equals(this.firstName, aaMVAAnalysis.firstName) && Objects.equals(this.middleName, aaMVAAnalysis.middleName) && Objects.equals(this.lastName, aaMVAAnalysis.lastName); } @Override public int hashCode() { return Objects.hash(isVerified, idNumber, idIssueDate, idExpirationDate, street, city, postalCode, dateOfBirth, gender, height, eyeColor, firstName, middleName, lastName); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AAMVAAnalysis {\n"); sb.append(" isVerified: ").append(toIndentedString(isVerified)).append("\n"); sb.append(" idNumber: ").append(toIndentedString(idNumber)).append("\n"); sb.append(" idIssueDate: ").append(toIndentedString(idIssueDate)).append("\n"); sb.append(" idExpirationDate: ").append(toIndentedString(idExpirationDate)).append("\n"); sb.append(" street: ").append(toIndentedString(street)).append("\n"); sb.append(" city: ").append(toIndentedString(city)).append("\n"); sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n"); sb.append(" dateOfBirth: ").append(toIndentedString(dateOfBirth)).append("\n"); sb.append(" gender: ").append(toIndentedString(gender)).append("\n"); sb.append(" height: ").append(toIndentedString(height)).append("\n"); sb.append(" eyeColor: ").append(toIndentedString(eyeColor)).append("\n"); sb.append(" firstName: ").append(toIndentedString(firstName)).append("\n"); sb.append(" middleName: ").append(toIndentedString(middleName)).append("\n"); sb.append(" lastName: ").append(toIndentedString(lastName)).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/CraLoanUpdate.java
src/main/java/com/plaid/client/model/CraLoanUpdate.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.CraLoanPaymentHistory; import com.plaid.client.model.CraLoanStatusHistoryUpdate; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Contains loan data to update. */ @ApiModel(description = "Contains loan data to update.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraLoanUpdate { public static final String SERIALIZED_NAME_LOAN_ID = "loan_id"; @SerializedName(SERIALIZED_NAME_LOAN_ID) private String loanId; public static final String SERIALIZED_NAME_STATUS_HISTORY = "status_history"; @SerializedName(SERIALIZED_NAME_STATUS_HISTORY) private List<CraLoanStatusHistoryUpdate> statusHistory = null; public static final String SERIALIZED_NAME_PAYMENT_HISTORY = "payment_history"; @SerializedName(SERIALIZED_NAME_PAYMENT_HISTORY) private List<CraLoanPaymentHistory> paymentHistory = null; public CraLoanUpdate loanId(String loanId) { this.loanId = loanId; return this; } /** * A unique identifier for the loan. Personally identifiable information, such as an email address or phone number, should not be used in the &#x60;loan_id&#x60;. * @return loanId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique identifier for the loan. Personally identifiable information, such as an email address or phone number, should not be used in the `loan_id`.") public String getLoanId() { return loanId; } public void setLoanId(String loanId) { this.loanId = loanId; } public CraLoanUpdate statusHistory(List<CraLoanStatusHistoryUpdate> statusHistory) { this.statusHistory = statusHistory; return this; } public CraLoanUpdate addStatusHistoryItem(CraLoanStatusHistoryUpdate statusHistoryItem) { if (this.statusHistory == null) { this.statusHistory = new ArrayList<>(); } this.statusHistory.add(statusHistoryItem); return this; } /** * A list of status update history of the loan. * @return statusHistory **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of status update history of the loan.") public List<CraLoanStatusHistoryUpdate> getStatusHistory() { return statusHistory; } public void setStatusHistory(List<CraLoanStatusHistoryUpdate> statusHistory) { this.statusHistory = statusHistory; } public CraLoanUpdate paymentHistory(List<CraLoanPaymentHistory> paymentHistory) { this.paymentHistory = paymentHistory; return this; } public CraLoanUpdate addPaymentHistoryItem(CraLoanPaymentHistory paymentHistoryItem) { if (this.paymentHistory == null) { this.paymentHistory = new ArrayList<>(); } this.paymentHistory.add(paymentHistoryItem); return this; } /** * The updates to the payment history for the loan. * @return paymentHistory **/ @javax.annotation.Nullable @ApiModelProperty(value = "The updates to the payment history for the loan.") public List<CraLoanPaymentHistory> getPaymentHistory() { return paymentHistory; } public void setPaymentHistory(List<CraLoanPaymentHistory> paymentHistory) { this.paymentHistory = paymentHistory; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraLoanUpdate craLoanUpdate = (CraLoanUpdate) o; return Objects.equals(this.loanId, craLoanUpdate.loanId) && Objects.equals(this.statusHistory, craLoanUpdate.statusHistory) && Objects.equals(this.paymentHistory, craLoanUpdate.paymentHistory); } @Override public int hashCode() { return Objects.hash(loanId, statusHistory, paymentHistory); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraLoanUpdate {\n"); sb.append(" loanId: ").append(toIndentedString(loanId)).append("\n"); sb.append(" statusHistory: ").append(toIndentedString(statusHistory)).append("\n"); sb.append(" paymentHistory: ").append(toIndentedString(paymentHistory)).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/CreditBankIncomeGetRequestOptions.java
src/main/java/com/plaid/client/model/CreditBankIncomeGetRequestOptions.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 object for &#x60;/credit/bank_income/get&#x60; request options. */ @ApiModel(description = "An optional object for `/credit/bank_income/get` request options.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditBankIncomeGetRequestOptions { public static final String SERIALIZED_NAME_COUNT = "count"; @SerializedName(SERIALIZED_NAME_COUNT) private Integer count = 1; public CreditBankIncomeGetRequestOptions count(Integer count) { this.count = count; return this; } /** * How many Bank Income Reports should be fetched. Multiple reports may be available if the report has been re-created or refreshed. If more than one report is available, the most recent reports will be returned first. * @return count **/ @javax.annotation.Nullable @ApiModelProperty(value = "How many Bank Income Reports should be fetched. Multiple reports may be available if the report has been re-created or refreshed. If more than one report is available, the most recent reports will be returned first.") public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditBankIncomeGetRequestOptions creditBankIncomeGetRequestOptions = (CreditBankIncomeGetRequestOptions) o; return Objects.equals(this.count, creditBankIncomeGetRequestOptions.count); } @Override public int hashCode() { return Objects.hash(count); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditBankIncomeGetRequestOptions {\n"); sb.append(" count: ").append(toIndentedString(count)).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/CounterpartyNumbersInternational.java
src/main/java/com/plaid/client/model/CounterpartyNumbersInternational.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.NumbersIBANNullable; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Account numbers using the International Bank Account Number and BIC/SWIFT code format. */ @ApiModel(description = "Account numbers using the International Bank Account Number and BIC/SWIFT code format.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CounterpartyNumbersInternational { public static final String SERIALIZED_NAME_IBAN = "iban"; @SerializedName(SERIALIZED_NAME_IBAN) private NumbersIBANNullable iban; public static final String SERIALIZED_NAME_BIC = "bic"; @SerializedName(SERIALIZED_NAME_BIC) private String bic; public CounterpartyNumbersInternational iban(NumbersIBANNullable iban) { this.iban = iban; return this; } /** * Get iban * @return iban **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public NumbersIBANNullable getIban() { return iban; } public void setIban(NumbersIBANNullable iban) { this.iban = iban; } public CounterpartyNumbersInternational bic(String bic) { this.bic = bic; return this; } /** * Bank identifier code (BIC) for this counterparty. * @return bic **/ @javax.annotation.Nullable @ApiModelProperty(value = "Bank identifier code (BIC) for this counterparty.") public String getBic() { return bic; } public void setBic(String bic) { this.bic = bic; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CounterpartyNumbersInternational counterpartyNumbersInternational = (CounterpartyNumbersInternational) o; return Objects.equals(this.iban, counterpartyNumbersInternational.iban) && Objects.equals(this.bic, counterpartyNumbersInternational.bic); } @Override public int hashCode() { return Objects.hash(iban, bic); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CounterpartyNumbersInternational {\n"); sb.append(" iban: ").append(toIndentedString(iban)).append("\n"); sb.append(" bic: ").append(toIndentedString(bic)).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/PaymentInitiationPaymentListRequest.java
src/main/java/com/plaid/client/model/PaymentInitiationPaymentListRequest.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; /** * PaymentInitiationPaymentListRequest defines the request schema for &#x60;/payment_initiation/payment/list&#x60; */ @ApiModel(description = "PaymentInitiationPaymentListRequest defines the request schema for `/payment_initiation/payment/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentInitiationPaymentListRequest { 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_COUNT = "count"; @SerializedName(SERIALIZED_NAME_COUNT) private Integer count = 10; public static final String SERIALIZED_NAME_CURSOR = "cursor"; @SerializedName(SERIALIZED_NAME_CURSOR) private OffsetDateTime cursor; public static final String SERIALIZED_NAME_CONSENT_ID = "consent_id"; @SerializedName(SERIALIZED_NAME_CONSENT_ID) private String consentId; public PaymentInitiationPaymentListRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; 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 PaymentInitiationPaymentListRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; 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 PaymentInitiationPaymentListRequest count(Integer count) { this.count = count; return this; } /** * The maximum number of payments to return. If &#x60;count&#x60; is not specified, a maximum of 10 payments will be returned, beginning with the most recent payment before the cursor (if specified). * minimum: 1 * maximum: 200 * @return count **/ @javax.annotation.Nullable @ApiModelProperty(value = "The maximum number of payments to return. If `count` is not specified, a maximum of 10 payments will be returned, beginning with the most recent payment before the cursor (if specified).") public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } public PaymentInitiationPaymentListRequest cursor(OffsetDateTime cursor) { this.cursor = cursor; return this; } /** * A string in RFC 3339 format (i.e. \&quot;2019-12-06T22:35:49Z\&quot;). Only payments created before the cursor will be returned. * @return cursor **/ @javax.annotation.Nullable @ApiModelProperty(value = "A string in RFC 3339 format (i.e. \"2019-12-06T22:35:49Z\"). Only payments created before the cursor will be returned.") public OffsetDateTime getCursor() { return cursor; } public void setCursor(OffsetDateTime cursor) { this.cursor = cursor; } public PaymentInitiationPaymentListRequest consentId(String consentId) { this.consentId = consentId; return this; } /** * The consent ID. If specified, only payments, executed using this consent, will be returned. * @return consentId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The consent ID. If specified, only payments, executed using this consent, will be returned.") public String getConsentId() { return consentId; } public void setConsentId(String consentId) { this.consentId = consentId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaymentInitiationPaymentListRequest paymentInitiationPaymentListRequest = (PaymentInitiationPaymentListRequest) o; return Objects.equals(this.clientId, paymentInitiationPaymentListRequest.clientId) && Objects.equals(this.secret, paymentInitiationPaymentListRequest.secret) && Objects.equals(this.count, paymentInitiationPaymentListRequest.count) && Objects.equals(this.cursor, paymentInitiationPaymentListRequest.cursor) && Objects.equals(this.consentId, paymentInitiationPaymentListRequest.consentId); } @Override public int hashCode() { return Objects.hash(clientId, secret, count, cursor, consentId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentInitiationPaymentListRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" count: ").append(toIndentedString(count)).append("\n"); sb.append(" cursor: ").append(toIndentedString(cursor)).append("\n"); sb.append(" consentId: ").append(toIndentedString(consentId)).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/AccountBalance.java
src/main/java/com/plaid/client/model/AccountBalance.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; /** * A set of fields describing the balance for an account. Balance information may be cached unless the balance object was returned by &#x60;/accounts/balance/get&#x60; or &#x60;/signal/evaluate&#x60; (using a Balance-only ruleset). */ @ApiModel(description = "A set of fields describing the balance for an account. Balance information may be cached unless the balance object was returned by `/accounts/balance/get` or `/signal/evaluate` (using a Balance-only ruleset).") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AccountBalance { public static final String SERIALIZED_NAME_AVAILABLE = "available"; @SerializedName(SERIALIZED_NAME_AVAILABLE) private Double available; public static final String SERIALIZED_NAME_CURRENT = "current"; @SerializedName(SERIALIZED_NAME_CURRENT) private Double current; public static final String SERIALIZED_NAME_LIMIT = "limit"; @SerializedName(SERIALIZED_NAME_LIMIT) private Double limit; 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 static final String SERIALIZED_NAME_LAST_UPDATED_DATETIME = "last_updated_datetime"; @SerializedName(SERIALIZED_NAME_LAST_UPDATED_DATETIME) private OffsetDateTime lastUpdatedDatetime; public AccountBalance available(Double available) { this.available = available; return this; } /** * The amount of funds available to be withdrawn from the account, as determined by the financial institution. For &#x60;credit&#x60;-type accounts, the &#x60;available&#x60; balance typically equals the &#x60;limit&#x60; less the &#x60;current&#x60; balance, less any pending outflows plus any pending inflows. For &#x60;depository&#x60;-type accounts, the &#x60;available&#x60; balance typically equals the &#x60;current&#x60; balance less any pending outflows plus any pending inflows. For &#x60;depository&#x60;-type accounts, the &#x60;available&#x60; balance does not include the overdraft limit. For &#x60;investment&#x60;-type accounts (or &#x60;brokerage&#x60;-type accounts for API versions 2018-05-22 and earlier), the &#x60;available&#x60; balance is the total cash available to withdraw as presented by the institution. Note that not all institutions calculate the &#x60;available&#x60; balance. In the event that &#x60;available&#x60; balance is unavailable, Plaid will return an &#x60;available&#x60; balance value of &#x60;null&#x60;. Available balance may be cached and is not guaranteed to be up-to-date in realtime unless the value was returned by &#x60;/accounts/balance/get&#x60;, or by &#x60;/signal/evaluate&#x60; with a Balance-only ruleset. If &#x60;current&#x60; is &#x60;null&#x60; this field is guaranteed not to be &#x60;null&#x60;. * @return available **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The amount of funds available to be withdrawn from the account, as determined by the financial institution. For `credit`-type accounts, the `available` balance typically equals the `limit` less the `current` balance, less any pending outflows plus any pending inflows. For `depository`-type accounts, the `available` balance typically equals the `current` balance less any pending outflows plus any pending inflows. For `depository`-type accounts, the `available` balance does not include the overdraft limit. For `investment`-type accounts (or `brokerage`-type accounts for API versions 2018-05-22 and earlier), the `available` balance is the total cash available to withdraw as presented by the institution. Note that not all institutions calculate the `available` balance. In the event that `available` balance is unavailable, Plaid will return an `available` balance value of `null`. Available balance may be cached and is not guaranteed to be up-to-date in realtime unless the value was returned by `/accounts/balance/get`, or by `/signal/evaluate` with a Balance-only ruleset. If `current` is `null` this field is guaranteed not to be `null`.") public Double getAvailable() { return available; } public void setAvailable(Double available) { this.available = available; } public AccountBalance current(Double current) { this.current = current; return this; } /** * The total amount of funds in or owed by the account. For &#x60;credit&#x60;-type accounts, a positive balance indicates the amount owed; a negative amount indicates the lender owing the account holder. For &#x60;loan&#x60;-type accounts, the current balance is the principal remaining on the loan, except in the case of student loan accounts at Sallie Mae (&#x60;ins_116944&#x60;). For Sallie Mae student loans, the account&#39;s balance includes both principal and any outstanding interest. Similar to &#x60;credit&#x60;-type accounts, a positive balance is typically expected, while a negative amount indicates the lender owing the account holder. For &#x60;investment&#x60;-type accounts (or &#x60;brokerage&#x60;-type accounts for API versions 2018-05-22 and earlier), the current balance is the total value of assets as presented by the institution. Note that balance information may be cached unless the value was returned by &#x60;/accounts/balance/get&#x60; or by &#x60;/signal/evaluate&#x60; with a Balance-only ruleset; if the Item is enabled for Transactions, the balance will be at least as recent as the most recent Transaction update. If you require realtime balance information, use the &#x60;available&#x60; balance as provided by &#x60;/accounts/balance/get&#x60; or &#x60;/signal/evaluate&#x60; called with a Balance-only &#x60;ruleset_key&#x60;. When returned by &#x60;/accounts/balance/get&#x60;, this field may be &#x60;null&#x60;. When this happens, &#x60;available&#x60; is guaranteed not to be &#x60;null&#x60;. * @return current **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The total amount of funds in or owed by the account. For `credit`-type accounts, a positive balance indicates the amount owed; a negative amount indicates the lender owing the account holder. For `loan`-type accounts, the current balance is the principal remaining on the loan, except in the case of student loan accounts at Sallie Mae (`ins_116944`). For Sallie Mae student loans, the account's balance includes both principal and any outstanding interest. Similar to `credit`-type accounts, a positive balance is typically expected, while a negative amount indicates the lender owing the account holder. For `investment`-type accounts (or `brokerage`-type accounts for API versions 2018-05-22 and earlier), the current balance is the total value of assets as presented by the institution. Note that balance information may be cached unless the value was returned by `/accounts/balance/get` or by `/signal/evaluate` with a Balance-only ruleset; if the Item is enabled for Transactions, the balance will be at least as recent as the most recent Transaction update. If you require realtime balance information, use the `available` balance as provided by `/accounts/balance/get` or `/signal/evaluate` called with a Balance-only `ruleset_key`. When returned by `/accounts/balance/get`, this field may be `null`. When this happens, `available` is guaranteed not to be `null`.") public Double getCurrent() { return current; } public void setCurrent(Double current) { this.current = current; } public AccountBalance limit(Double limit) { this.limit = limit; return this; } /** * For &#x60;credit&#x60;-type accounts, this represents the credit limit. For &#x60;depository&#x60;-type accounts, this represents the pre-arranged overdraft limit, which is common for current (checking) accounts in Europe. In North America, this field is typically only available for &#x60;credit&#x60;-type accounts. * @return limit **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "For `credit`-type accounts, this represents the credit limit. For `depository`-type accounts, this represents the pre-arranged overdraft limit, which is common for current (checking) accounts in Europe. In North America, this field is typically only available for `credit`-type accounts.") public Double getLimit() { return limit; } public void setLimit(Double limit) { this.limit = limit; } public AccountBalance isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO-4217 currency code of the balance. Always null if &#x60;unofficial_currency_code&#x60; is non-null. * @return isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ISO-4217 currency code of the balance. Always null if `unofficial_currency_code` is non-null.") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public AccountBalance unofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; return this; } /** * The unofficial currency code associated with the balance. Always null if &#x60;iso_currency_code&#x60; 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. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported &#x60;unofficial_currency_code&#x60;s. * @return unofficialCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The unofficial currency code associated with the 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. 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; } public AccountBalance lastUpdatedDatetime(OffsetDateTime lastUpdatedDatetime) { this.lastUpdatedDatetime = lastUpdatedDatetime; return this; } /** * Timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (&#x60;YYYY-MM-DDTHH:mm:ssZ&#x60;) indicating the last time the balance was updated. This field is returned only when the institution is &#x60;ins_128026&#x60; (Capital One). * @return lastUpdatedDatetime **/ @javax.annotation.Nullable @ApiModelProperty(value = "Timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the last time the balance was updated. This field is returned only when the institution is `ins_128026` (Capital One).") public OffsetDateTime getLastUpdatedDatetime() { return lastUpdatedDatetime; } public void setLastUpdatedDatetime(OffsetDateTime lastUpdatedDatetime) { this.lastUpdatedDatetime = lastUpdatedDatetime; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AccountBalance accountBalance = (AccountBalance) o; return Objects.equals(this.available, accountBalance.available) && Objects.equals(this.current, accountBalance.current) && Objects.equals(this.limit, accountBalance.limit) && Objects.equals(this.isoCurrencyCode, accountBalance.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, accountBalance.unofficialCurrencyCode) && Objects.equals(this.lastUpdatedDatetime, accountBalance.lastUpdatedDatetime); } @Override public int hashCode() { return Objects.hash(available, current, limit, isoCurrencyCode, unofficialCurrencyCode, lastUpdatedDatetime); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AccountBalance {\n"); sb.append(" available: ").append(toIndentedString(available)).append("\n"); sb.append(" current: ").append(toIndentedString(current)).append("\n"); sb.append(" limit: ").append(toIndentedString(limit)).append("\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append(" unofficialCurrencyCode: ").append(toIndentedString(unofficialCurrencyCode)).append("\n"); sb.append(" lastUpdatedDatetime: ").append(toIndentedString(lastUpdatedDatetime)).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/BankTransferGetResponse.java
src/main/java/com/plaid/client/model/BankTransferGetResponse.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.BankTransfer; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the response schema for &#x60;/bank_transfer/get&#x60; */ @ApiModel(description = "Defines the response schema for `/bank_transfer/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BankTransferGetResponse { public static final String SERIALIZED_NAME_BANK_TRANSFER = "bank_transfer"; @SerializedName(SERIALIZED_NAME_BANK_TRANSFER) private BankTransfer bankTransfer; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public BankTransferGetResponse bankTransfer(BankTransfer bankTransfer) { this.bankTransfer = bankTransfer; return this; } /** * Get bankTransfer * @return bankTransfer **/ @ApiModelProperty(required = true, value = "") public BankTransfer getBankTransfer() { return bankTransfer; } public void setBankTransfer(BankTransfer bankTransfer) { this.bankTransfer = bankTransfer; } public BankTransferGetResponse 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; } BankTransferGetResponse bankTransferGetResponse = (BankTransferGetResponse) o; return Objects.equals(this.bankTransfer, bankTransferGetResponse.bankTransfer) && Objects.equals(this.requestId, bankTransferGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(bankTransfer, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BankTransferGetResponse {\n"); sb.append(" bankTransfer: ").append(toIndentedString(bankTransfer)).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/BeaconUserNameNullable.java
src/main/java/com/plaid/client/model/BeaconUserNameNullable.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 full name for a given Beacon User. */ @ApiModel(description = "The full name for a given Beacon User.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconUserNameNullable { public static final String SERIALIZED_NAME_GIVEN_NAME = "given_name"; @SerializedName(SERIALIZED_NAME_GIVEN_NAME) private String givenName; public static final String SERIALIZED_NAME_FAMILY_NAME = "family_name"; @SerializedName(SERIALIZED_NAME_FAMILY_NAME) private String familyName; public BeaconUserNameNullable givenName(String givenName) { this.givenName = givenName; return this; } /** * A string with at least one non-whitespace character, with a max length of 100 characters. * @return givenName **/ @ApiModelProperty(example = "Leslie", required = true, value = "A string with at least one non-whitespace character, with a max length of 100 characters.") public String getGivenName() { return givenName; } public void setGivenName(String givenName) { this.givenName = givenName; } public BeaconUserNameNullable familyName(String familyName) { this.familyName = familyName; return this; } /** * A string with at least one non-whitespace character, with a max length of 100 characters. * @return familyName **/ @ApiModelProperty(example = "Knope", required = true, value = "A string with at least one non-whitespace character, with a max length of 100 characters.") public String getFamilyName() { return familyName; } public void setFamilyName(String familyName) { this.familyName = familyName; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BeaconUserNameNullable beaconUserNameNullable = (BeaconUserNameNullable) o; return Objects.equals(this.givenName, beaconUserNameNullable.givenName) && Objects.equals(this.familyName, beaconUserNameNullable.familyName); } @Override public int hashCode() { return Objects.hash(givenName, familyName); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconUserNameNullable {\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/OAuthErrorCode.java
src/main/java/com/plaid/client/model/OAuthErrorCode.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; /** * OAuth error code */ @JsonAdapter(OAuthErrorCode.Adapter.class) public enum OAuthErrorCode { INVALID_REQUEST("invalid_request"), INVALID_CLIENT("invalid_client"), INVALID_GRANT("invalid_grant"), UNAUTHORIZED_CLIENT("unauthorized_client"), INVALID_SCOPE("invalid_scope"), UNSUPPORTED_GRANT_TYPE("unsupported_grant_type"), // 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; OAuthErrorCode(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static OAuthErrorCode fromValue(String value) { for (OAuthErrorCode b : OAuthErrorCode.values()) { if (b.value.equals(value)) { return b; } } return OAuthErrorCode.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<OAuthErrorCode> { @Override public void write(final JsonWriter jsonWriter, final OAuthErrorCode enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public OAuthErrorCode read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return OAuthErrorCode.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/FallbackAuthMicrodepositVerificationExpiredWebhook.java
src/main/java/com/plaid/client/model/FallbackAuthMicrodepositVerificationExpiredWebhook.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; /** * Fires when an account has an expired verification when using micro-deposits */ @ApiModel(description = "Fires when an account has an expired verification when using micro-deposits") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class FallbackAuthMicrodepositVerificationExpiredWebhook { 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_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private String error; public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public FallbackAuthMicrodepositVerificationExpiredWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;AUTH&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`AUTH`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public FallbackAuthMicrodepositVerificationExpiredWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;VERIFICATION_EXPIRED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`VERIFICATION_EXPIRED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public FallbackAuthMicrodepositVerificationExpiredWebhook error(String error) { this.error = error; return this; } /** * The error code associated with the webhook. * @return error **/ @javax.annotation.Nullable @ApiModelProperty(value = "The error code associated with the webhook.") public String getError() { return error; } public void setError(String error) { this.error = error; } public FallbackAuthMicrodepositVerificationExpiredWebhook accountId(String accountId) { this.accountId = accountId; return this; } /** * The external account ID associated with the micro-deposit * @return accountId **/ @ApiModelProperty(required = true, value = "The external account ID associated with the micro-deposit") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public FallbackAuthMicrodepositVerificationExpiredWebhook itemId(String itemId) { this.itemId = itemId; return this; } /** * The &#x60;item_id&#x60; 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 FallbackAuthMicrodepositVerificationExpiredWebhook 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; } FallbackAuthMicrodepositVerificationExpiredWebhook fallbackAuthMicrodepositVerificationExpiredWebhook = (FallbackAuthMicrodepositVerificationExpiredWebhook) o; return Objects.equals(this.webhookType, fallbackAuthMicrodepositVerificationExpiredWebhook.webhookType) && Objects.equals(this.webhookCode, fallbackAuthMicrodepositVerificationExpiredWebhook.webhookCode) && Objects.equals(this.error, fallbackAuthMicrodepositVerificationExpiredWebhook.error) && Objects.equals(this.accountId, fallbackAuthMicrodepositVerificationExpiredWebhook.accountId) && Objects.equals(this.itemId, fallbackAuthMicrodepositVerificationExpiredWebhook.itemId) && Objects.equals(this.environment, fallbackAuthMicrodepositVerificationExpiredWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, error, accountId, itemId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class FallbackAuthMicrodepositVerificationExpiredWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" error: ").append(toIndentedString(error)).append("\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).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/BeaconAccountRiskEvaluateRequest.java
src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateRequest.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.BeaconAccountRiskEvaluateEvaluationReason; import com.plaid.client.model.BeaconAccountRiskEvaluateRequestOptions; import com.plaid.client.model.SignalDevice; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * BeaconAccountRiskEvaluateRequest defines the request schema for &#x60;/v1/beacon/account_risk/risk/evaluate&#x60; */ @ApiModel(description = "BeaconAccountRiskEvaluateRequest defines the request schema for `/v1/beacon/account_risk/risk/evaluate`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconAccountRiskEvaluateRequest { 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 static final String SERIALIZED_NAME_OPTIONS = "options"; @SerializedName(SERIALIZED_NAME_OPTIONS) private BeaconAccountRiskEvaluateRequestOptions options; 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_EVALUATION_ID = "client_evaluation_id"; @SerializedName(SERIALIZED_NAME_CLIENT_EVALUATION_ID) private String clientEvaluationId; public static final String SERIALIZED_NAME_EVALUATION_REASON = "evaluation_reason"; @SerializedName(SERIALIZED_NAME_EVALUATION_REASON) private BeaconAccountRiskEvaluateEvaluationReason evaluationReason; public static final String SERIALIZED_NAME_DEVICE = "device"; @SerializedName(SERIALIZED_NAME_DEVICE) private SignalDevice device; public static final String SERIALIZED_NAME_EVALUATE_TIME = "evaluate_time"; @SerializedName(SERIALIZED_NAME_EVALUATE_TIME) private String evaluateTime; public BeaconAccountRiskEvaluateRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; 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 BeaconAccountRiskEvaluateRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; 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 BeaconAccountRiskEvaluateRequest 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; } public BeaconAccountRiskEvaluateRequest options(BeaconAccountRiskEvaluateRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public BeaconAccountRiskEvaluateRequestOptions getOptions() { return options; } public void setOptions(BeaconAccountRiskEvaluateRequestOptions options) { this.options = options; } public BeaconAccountRiskEvaluateRequest clientUserId(String clientUserId) { this.clientUserId = clientUserId; return this; } /** * A unique ID that identifies the end user in your system. This ID is used to correlate requests by a user with multiple evaluations and/or multiple linked accounts. Personally identifiable information, such as an email address or phone number, should not be used in the &#x60;client_user_id&#x60;. * @return clientUserId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique ID that identifies the end user in your system. This ID is used to correlate requests by a user with multiple evaluations and/or multiple linked accounts. 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 BeaconAccountRiskEvaluateRequest clientEvaluationId(String clientEvaluationId) { this.clientEvaluationId = clientEvaluationId; return this; } /** * Unique identifier of what you are looking to evaluate (account add, information change, etc.) to allow us to tie the activity to the decisions and possible fraud outcome sent via our feedback endpoints. You can use your internal request ID or similar. * @return clientEvaluationId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Unique identifier of what you are looking to evaluate (account add, information change, etc.) to allow us to tie the activity to the decisions and possible fraud outcome sent via our feedback endpoints. You can use your internal request ID or similar.") public String getClientEvaluationId() { return clientEvaluationId; } public void setClientEvaluationId(String clientEvaluationId) { this.clientEvaluationId = clientEvaluationId; } public BeaconAccountRiskEvaluateRequest evaluationReason(BeaconAccountRiskEvaluateEvaluationReason evaluationReason) { this.evaluationReason = evaluationReason; return this; } /** * Get evaluationReason * @return evaluationReason **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public BeaconAccountRiskEvaluateEvaluationReason getEvaluationReason() { return evaluationReason; } public void setEvaluationReason(BeaconAccountRiskEvaluateEvaluationReason evaluationReason) { this.evaluationReason = evaluationReason; } public BeaconAccountRiskEvaluateRequest device(SignalDevice device) { this.device = device; return this; } /** * Get device * @return device **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public SignalDevice getDevice() { return device; } public void setDevice(SignalDevice device) { this.device = device; } public BeaconAccountRiskEvaluateRequest evaluateTime(String evaluateTime) { this.evaluateTime = evaluateTime; return this; } /** * The time the event for evaluation has occurred. Populate this field for backfilling data. If you don’t populate this field, we’ll use the timestamp at the time of receipt. Use ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ). * @return evaluateTime **/ @javax.annotation.Nullable @ApiModelProperty(value = "The time the event for evaluation has occurred. Populate this field for backfilling data. If you don’t populate this field, we’ll use the timestamp at the time of receipt. Use ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ).") public String getEvaluateTime() { return evaluateTime; } public void setEvaluateTime(String evaluateTime) { this.evaluateTime = evaluateTime; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BeaconAccountRiskEvaluateRequest beaconAccountRiskEvaluateRequest = (BeaconAccountRiskEvaluateRequest) o; return Objects.equals(this.clientId, beaconAccountRiskEvaluateRequest.clientId) && Objects.equals(this.secret, beaconAccountRiskEvaluateRequest.secret) && Objects.equals(this.accessToken, beaconAccountRiskEvaluateRequest.accessToken) && Objects.equals(this.options, beaconAccountRiskEvaluateRequest.options) && Objects.equals(this.clientUserId, beaconAccountRiskEvaluateRequest.clientUserId) && Objects.equals(this.clientEvaluationId, beaconAccountRiskEvaluateRequest.clientEvaluationId) && Objects.equals(this.evaluationReason, beaconAccountRiskEvaluateRequest.evaluationReason) && Objects.equals(this.device, beaconAccountRiskEvaluateRequest.device) && Objects.equals(this.evaluateTime, beaconAccountRiskEvaluateRequest.evaluateTime); } @Override public int hashCode() { return Objects.hash(clientId, secret, accessToken, options, clientUserId, clientEvaluationId, evaluationReason, device, evaluateTime); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconAccountRiskEvaluateRequest {\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(" options: ").append(toIndentedString(options)).append("\n"); sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n"); sb.append(" clientEvaluationId: ").append(toIndentedString(clientEvaluationId)).append("\n"); sb.append(" evaluationReason: ").append(toIndentedString(evaluationReason)).append("\n"); sb.append(" device: ").append(toIndentedString(device)).append("\n"); sb.append(" evaluateTime: ").append(toIndentedString(evaluateTime)).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/PaymentConsentPeriodicAmountAmount.java
src/main/java/com/plaid/client/model/PaymentConsentPeriodicAmountAmount.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.PaymentAmount; import com.plaid.client.model.PaymentAmountCurrency; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Maximum cumulative amount for all payments in the specified interval. */ @ApiModel(description = "Maximum cumulative amount for all payments in the specified interval.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentConsentPeriodicAmountAmount { 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 PaymentConsentPeriodicAmountAmount 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 PaymentConsentPeriodicAmountAmount value(Double value) { this.value = value; return this; } /** * The amount of the payment. Must contain at most two digits of precision e.g. &#x60;1.23&#x60;. Minimum accepted value is &#x60;1&#x60;. * @return value **/ @ApiModelProperty(required = true, value = "The amount of the payment. Must contain at most two digits of precision e.g. `1.23`. Minimum accepted value is `1`.") 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; } PaymentConsentPeriodicAmountAmount paymentConsentPeriodicAmountAmount = (PaymentConsentPeriodicAmountAmount) o; return Objects.equals(this.currency, paymentConsentPeriodicAmountAmount.currency) && Objects.equals(this.value, paymentConsentPeriodicAmountAmount.value); } @Override public int hashCode() { return Objects.hash(currency, value); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentConsentPeriodicAmountAmount {\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/PaymentInitiationPaymentCreateStatus.java
src/main/java/com/plaid/client/model/PaymentInitiationPaymentCreateStatus.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; /** * For a payment returned by this endpoint, there is only one possible value: &#x60;PAYMENT_STATUS_INPUT_NEEDED&#x60;: The initial phase of the payment */ @JsonAdapter(PaymentInitiationPaymentCreateStatus.Adapter.class) public enum PaymentInitiationPaymentCreateStatus { PAYMENT_STATUS_INPUT_NEEDED("PAYMENT_STATUS_INPUT_NEEDED"), // 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; PaymentInitiationPaymentCreateStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PaymentInitiationPaymentCreateStatus fromValue(String value) { for (PaymentInitiationPaymentCreateStatus b : PaymentInitiationPaymentCreateStatus.values()) { if (b.value.equals(value)) { return b; } } return PaymentInitiationPaymentCreateStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<PaymentInitiationPaymentCreateStatus> { @Override public void write(final JsonWriter jsonWriter, final PaymentInitiationPaymentCreateStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PaymentInitiationPaymentCreateStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PaymentInitiationPaymentCreateStatus.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/IncomeVerificationPrecheckConfidence.java
src/main/java/com/plaid/client/model/IncomeVerificationPrecheckConfidence.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 confidence that Plaid can support the user in the digital income verification flow instead of requiring a manual paystub upload. One of the following: &#x60;\&quot;HIGH\&quot;&#x60;: It is very likely that this user can use the digital income verification flow. \&quot;&#x60;LOW&#x60;\&quot;: It is unlikely that this user can use the digital income verification flow. &#x60;\&quot;UNKNOWN\&quot;&#x60;: It was not possible to determine if the user is supportable with the information passed. */ @JsonAdapter(IncomeVerificationPrecheckConfidence.Adapter.class) public enum IncomeVerificationPrecheckConfidence { HIGH("HIGH"), LOW("LOW"), UNKNOWN("UNKNOWN"), // 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; IncomeVerificationPrecheckConfidence(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static IncomeVerificationPrecheckConfidence fromValue(String value) { for (IncomeVerificationPrecheckConfidence b : IncomeVerificationPrecheckConfidence.values()) { if (b.value.equals(value)) { return b; } } return IncomeVerificationPrecheckConfidence.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<IncomeVerificationPrecheckConfidence> { @Override public void write(final JsonWriter jsonWriter, final IncomeVerificationPrecheckConfidence enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public IncomeVerificationPrecheckConfidence read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return IncomeVerificationPrecheckConfidence.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/LendScore.java
src/main/java/com/plaid/client/model/LendScore.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; /** * The results of the LendScore */ @ApiModel(description = "The results of the LendScore") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LendScore { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) private Integer score; public static final String SERIALIZED_NAME_REASON_CODES = "reason_codes"; @SerializedName(SERIALIZED_NAME_REASON_CODES) private List<String> reasonCodes = null; public static final String SERIALIZED_NAME_ERROR_REASON = "error_reason"; @SerializedName(SERIALIZED_NAME_ERROR_REASON) private String errorReason; public LendScore score(Integer score) { this.score = score; return this; } /** * The score returned by the LendScore model. Will be an integer in the range 1 to 99. Higher scores indicate lower credit risk. * @return score **/ @javax.annotation.Nullable @ApiModelProperty(value = "The score returned by the LendScore model. Will be an integer in the range 1 to 99. Higher scores indicate lower credit risk.") public Integer getScore() { return score; } public void setScore(Integer score) { this.score = score; } public LendScore reasonCodes(List<String> reasonCodes) { this.reasonCodes = reasonCodes; return this; } public LendScore addReasonCodesItem(String reasonCodesItem) { if (this.reasonCodes == null) { this.reasonCodes = new ArrayList<>(); } this.reasonCodes.add(reasonCodesItem); return this; } /** * The reasons for an individual having risk according to the LendScore. For a full list of possible reason codes, contact your Plaid Account Manager. Different LendScore versions will use different sets of reason codes. * @return reasonCodes **/ @javax.annotation.Nullable @ApiModelProperty(value = "The reasons for an individual having risk according to the LendScore. For a full list of possible reason codes, contact your Plaid Account Manager. Different LendScore versions will use different sets of reason codes.") public List<String> getReasonCodes() { return reasonCodes; } public void setReasonCodes(List<String> reasonCodes) { this.reasonCodes = reasonCodes; } public LendScore errorReason(String errorReason) { this.errorReason = errorReason; return this; } /** * Human-readable description of why the LendScore could not be computed. * @return errorReason **/ @javax.annotation.Nullable @ApiModelProperty(value = "Human-readable description of why the LendScore could not be computed.") public String getErrorReason() { return errorReason; } public void setErrorReason(String errorReason) { this.errorReason = errorReason; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LendScore lendScore = (LendScore) o; return Objects.equals(this.score, lendScore.score) && Objects.equals(this.reasonCodes, lendScore.reasonCodes) && Objects.equals(this.errorReason, lendScore.errorReason); } @Override public int hashCode() { return Objects.hash(score, reasonCodes, errorReason); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LendScore {\n"); sb.append(" score: ").append(toIndentedString(score)).append("\n"); sb.append(" reasonCodes: ").append(toIndentedString(reasonCodes)).append("\n"); sb.append(" errorReason: ").append(toIndentedString(errorReason)).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/ClientUserIdentity.java
src/main/java/com/plaid/client/model/ClientUserIdentity.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.ClientUserIdentityAddress; import com.plaid.client.model.ClientUserIdentityEmail; import com.plaid.client.model.ClientUserIdentityName; import com.plaid.client.model.ClientUserIdentityPhoneNumber; import com.plaid.client.model.UserIDNumber; 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; /** * ClientUserIdentity is the shared user identity construct across /user/_* routes. */ @ApiModel(description = "ClientUserIdentity is the shared user identity construct across /user/_* routes.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ClientUserIdentity { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private ClientUserIdentityName name; 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_EMAILS = "emails"; @SerializedName(SERIALIZED_NAME_EMAILS) private List<ClientUserIdentityEmail> emails = null; public static final String SERIALIZED_NAME_PHONE_NUMBERS = "phone_numbers"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBERS) private List<ClientUserIdentityPhoneNumber> phoneNumbers = null; public static final String SERIALIZED_NAME_ADDRESSES = "addresses"; @SerializedName(SERIALIZED_NAME_ADDRESSES) private List<ClientUserIdentityAddress> addresses = null; public static final String SERIALIZED_NAME_ID_NUMBERS = "id_numbers"; @SerializedName(SERIALIZED_NAME_ID_NUMBERS) private List<UserIDNumber> idNumbers = null; public ClientUserIdentity name(ClientUserIdentityName name) { this.name = name; return this; } /** * Get name * @return name **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ClientUserIdentityName getName() { return name; } public void setName(ClientUserIdentityName name) { this.name = name; } public ClientUserIdentity dateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; return this; } /** * The user&#39;s date of birth, to be provided in the format \&quot;yyyy-mm-dd\&quot;. * @return dateOfBirth **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's date of birth, to be provided in the format \"yyyy-mm-dd\".") public LocalDate getDateOfBirth() { return dateOfBirth; } public void setDateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; } public ClientUserIdentity emails(List<ClientUserIdentityEmail> emails) { this.emails = emails; return this; } public ClientUserIdentity addEmailsItem(ClientUserIdentityEmail emailsItem) { if (this.emails == null) { this.emails = new ArrayList<>(); } this.emails.add(emailsItem); return this; } /** * The user&#39;s emails. * @return emails **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's emails.") public List<ClientUserIdentityEmail> getEmails() { return emails; } public void setEmails(List<ClientUserIdentityEmail> emails) { this.emails = emails; } public ClientUserIdentity phoneNumbers(List<ClientUserIdentityPhoneNumber> phoneNumbers) { this.phoneNumbers = phoneNumbers; return this; } public ClientUserIdentity addPhoneNumbersItem(ClientUserIdentityPhoneNumber phoneNumbersItem) { if (this.phoneNumbers == null) { this.phoneNumbers = new ArrayList<>(); } this.phoneNumbers.add(phoneNumbersItem); return this; } /** * The user&#39;s phone numbers, in E.164 format: +{countrycode}{number}. For example: \&quot;+14157452130\&quot;. Phone numbers provided in other formats will be parsed on a best-effort basis. Phone number input is validated against valid number ranges; number strings that do not match a real-world phone numbering scheme may cause the request to fail, even in the Sandbox test environment. * @return phoneNumbers **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's phone numbers, in E.164 format: +{countrycode}{number}. For example: \"+14157452130\". Phone numbers provided in other formats will be parsed on a best-effort basis. Phone number input is validated against valid number ranges; number strings that do not match a real-world phone numbering scheme may cause the request to fail, even in the Sandbox test environment.") public List<ClientUserIdentityPhoneNumber> getPhoneNumbers() { return phoneNumbers; } public void setPhoneNumbers(List<ClientUserIdentityPhoneNumber> phoneNumbers) { this.phoneNumbers = phoneNumbers; } public ClientUserIdentity addresses(List<ClientUserIdentityAddress> addresses) { this.addresses = addresses; return this; } public ClientUserIdentity addAddressesItem(ClientUserIdentityAddress addressesItem) { if (this.addresses == null) { this.addresses = new ArrayList<>(); } this.addresses.add(addressesItem); return this; } /** * The user&#39;s addresses. * @return addresses **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's addresses.") public List<ClientUserIdentityAddress> getAddresses() { return addresses; } public void setAddresses(List<ClientUserIdentityAddress> addresses) { this.addresses = addresses; } public ClientUserIdentity idNumbers(List<UserIDNumber> idNumbers) { this.idNumbers = idNumbers; return this; } public ClientUserIdentity addIdNumbersItem(UserIDNumber idNumbersItem) { if (this.idNumbers == null) { this.idNumbers = new ArrayList<>(); } this.idNumbers.add(idNumbersItem); return this; } /** * The user&#39;s ID numbers. * @return idNumbers **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's ID numbers.") public List<UserIDNumber> getIdNumbers() { return idNumbers; } public void setIdNumbers(List<UserIDNumber> idNumbers) { this.idNumbers = idNumbers; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ClientUserIdentity clientUserIdentity = (ClientUserIdentity) o; return Objects.equals(this.name, clientUserIdentity.name) && Objects.equals(this.dateOfBirth, clientUserIdentity.dateOfBirth) && Objects.equals(this.emails, clientUserIdentity.emails) && Objects.equals(this.phoneNumbers, clientUserIdentity.phoneNumbers) && Objects.equals(this.addresses, clientUserIdentity.addresses) && Objects.equals(this.idNumbers, clientUserIdentity.idNumbers); } @Override public int hashCode() { return Objects.hash(name, dateOfBirth, emails, phoneNumbers, addresses, idNumbers); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ClientUserIdentity {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" dateOfBirth: ").append(toIndentedString(dateOfBirth)).append("\n"); sb.append(" emails: ").append(toIndentedString(emails)).append("\n"); sb.append(" phoneNumbers: ").append(toIndentedString(phoneNumbers)).append("\n"); sb.append(" addresses: ").append(toIndentedString(addresses)).append("\n"); sb.append(" idNumbers: ").append(toIndentedString(idNumbers)).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/Enhancements.java
src/main/java/com/plaid/client/model/Enhancements.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.Counterparty; import com.plaid.client.model.Location; import com.plaid.client.model.PaymentChannel; import com.plaid.client.model.PersonalFinanceCategory; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * A grouping of the Plaid produced transaction enhancement fields. */ @ApiModel(description = "A grouping of the Plaid produced transaction enhancement fields.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Enhancements { public static final String SERIALIZED_NAME_MERCHANT_NAME = "merchant_name"; @SerializedName(SERIALIZED_NAME_MERCHANT_NAME) private String merchantName; public static final String SERIALIZED_NAME_WEBSITE = "website"; @SerializedName(SERIALIZED_NAME_WEBSITE) private String website; public static final String SERIALIZED_NAME_LOGO_URL = "logo_url"; @SerializedName(SERIALIZED_NAME_LOGO_URL) private String logoUrl; public static final String SERIALIZED_NAME_CHECK_NUMBER = "check_number"; @SerializedName(SERIALIZED_NAME_CHECK_NUMBER) private String checkNumber; public static final String SERIALIZED_NAME_PAYMENT_CHANNEL = "payment_channel"; @SerializedName(SERIALIZED_NAME_PAYMENT_CHANNEL) private PaymentChannel paymentChannel; public static final String SERIALIZED_NAME_CATEGORY_ID = "category_id"; @SerializedName(SERIALIZED_NAME_CATEGORY_ID) private String categoryId; public static final String SERIALIZED_NAME_CATEGORY = "category"; @SerializedName(SERIALIZED_NAME_CATEGORY) private List<String> category = new ArrayList<>(); public static final String SERIALIZED_NAME_LOCATION = "location"; @SerializedName(SERIALIZED_NAME_LOCATION) private Location location; public static final String SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY = "personal_finance_category"; @SerializedName(SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY) private PersonalFinanceCategory personalFinanceCategory; public static final String SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY_ICON_URL = "personal_finance_category_icon_url"; @SerializedName(SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY_ICON_URL) private String personalFinanceCategoryIconUrl; public static final String SERIALIZED_NAME_COUNTERPARTIES = "counterparties"; @SerializedName(SERIALIZED_NAME_COUNTERPARTIES) private List<Counterparty> counterparties = null; public Enhancements merchantName(String merchantName) { this.merchantName = merchantName; return this; } /** * The name of the primary counterparty, such as the merchant or the financial institution, as extracted by Plaid from the raw description. * @return merchantName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The name of the primary counterparty, such as the merchant or the financial institution, as extracted by Plaid from the raw description.") public String getMerchantName() { return merchantName; } public void setMerchantName(String merchantName) { this.merchantName = merchantName; } public Enhancements website(String website) { this.website = website; return this; } /** * The website associated with this transaction, if available. * @return website **/ @javax.annotation.Nullable @ApiModelProperty(value = "The website associated with this transaction, if available.") public String getWebsite() { return website; } public void setWebsite(String website) { this.website = website; } public Enhancements logoUrl(String logoUrl) { this.logoUrl = logoUrl; return this; } /** * The URL of a logo associated with this transaction, if available. The logo will always be 100×100 pixel PNG file. * @return logoUrl **/ @javax.annotation.Nullable @ApiModelProperty(value = "The URL of a logo associated with this transaction, if available. The logo will always be 100×100 pixel PNG file.") public String getLogoUrl() { return logoUrl; } public void setLogoUrl(String logoUrl) { this.logoUrl = logoUrl; } public Enhancements checkNumber(String checkNumber) { this.checkNumber = checkNumber; return this; } /** * The check number of the transaction. This field is only populated for check transactions. * @return checkNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "The check number of the transaction. This field is only populated for check transactions.") public String getCheckNumber() { return checkNumber; } public void setCheckNumber(String checkNumber) { this.checkNumber = checkNumber; } public Enhancements paymentChannel(PaymentChannel paymentChannel) { this.paymentChannel = paymentChannel; return this; } /** * Get paymentChannel * @return paymentChannel **/ @ApiModelProperty(required = true, value = "") public PaymentChannel getPaymentChannel() { return paymentChannel; } public void setPaymentChannel(PaymentChannel paymentChannel) { this.paymentChannel = paymentChannel; } public Enhancements categoryId(String categoryId) { this.categoryId = categoryId; return this; } /** * The ID of the category to which this transaction belongs. For a full list of categories, see [&#x60;/categories/get&#x60;](https://plaid.com/docs/api/products/transactions/#categoriesget). * @return categoryId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ID of the category to which this transaction belongs. For a full list of categories, see [`/categories/get`](https://plaid.com/docs/api/products/transactions/#categoriesget).") public String getCategoryId() { return categoryId; } public void setCategoryId(String categoryId) { this.categoryId = categoryId; } public Enhancements category(List<String> category) { this.category = category; return this; } public Enhancements addCategoryItem(String categoryItem) { this.category.add(categoryItem); return this; } /** * A hierarchical array of the categories to which this transaction belongs. For a full list of categories, see [&#x60;/categories/get&#x60;](https://plaid.com/docs/api/products/transactions/#categoriesget). * @return category **/ @ApiModelProperty(required = true, value = "A hierarchical array of the categories to which this transaction belongs. For a full list of categories, see [`/categories/get`](https://plaid.com/docs/api/products/transactions/#categoriesget).") public List<String> getCategory() { return category; } public void setCategory(List<String> category) { this.category = category; } public Enhancements location(Location location) { this.location = location; return this; } /** * Get location * @return location **/ @ApiModelProperty(required = true, value = "") public Location getLocation() { return location; } public void setLocation(Location location) { this.location = location; } public Enhancements personalFinanceCategory(PersonalFinanceCategory personalFinanceCategory) { this.personalFinanceCategory = personalFinanceCategory; return this; } /** * Get personalFinanceCategory * @return personalFinanceCategory **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PersonalFinanceCategory getPersonalFinanceCategory() { return personalFinanceCategory; } public void setPersonalFinanceCategory(PersonalFinanceCategory personalFinanceCategory) { this.personalFinanceCategory = personalFinanceCategory; } public Enhancements personalFinanceCategoryIconUrl(String personalFinanceCategoryIconUrl) { this.personalFinanceCategoryIconUrl = personalFinanceCategoryIconUrl; return this; } /** * The URL of an icon associated with the primary personal finance category. The icon will always be 100×100 pixel PNG file. * @return personalFinanceCategoryIconUrl **/ @javax.annotation.Nullable @ApiModelProperty(value = "The URL of an icon associated with the primary personal finance category. The icon will always be 100×100 pixel PNG file.") public String getPersonalFinanceCategoryIconUrl() { return personalFinanceCategoryIconUrl; } public void setPersonalFinanceCategoryIconUrl(String personalFinanceCategoryIconUrl) { this.personalFinanceCategoryIconUrl = personalFinanceCategoryIconUrl; } public Enhancements counterparties(List<Counterparty> counterparties) { this.counterparties = counterparties; return this; } public Enhancements addCounterpartiesItem(Counterparty counterpartiesItem) { if (this.counterparties == null) { this.counterparties = new ArrayList<>(); } this.counterparties.add(counterpartiesItem); return this; } /** * The counterparties present in the transaction. Counterparties, such as the merchant or the financial institution, are extracted by Plaid from the raw description. * @return counterparties **/ @javax.annotation.Nullable @ApiModelProperty(value = "The counterparties present in the transaction. Counterparties, such as the merchant or the financial institution, are extracted by Plaid from the raw description.") public List<Counterparty> getCounterparties() { return counterparties; } public void setCounterparties(List<Counterparty> counterparties) { this.counterparties = counterparties; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Enhancements enhancements = (Enhancements) o; return Objects.equals(this.merchantName, enhancements.merchantName) && Objects.equals(this.website, enhancements.website) && Objects.equals(this.logoUrl, enhancements.logoUrl) && Objects.equals(this.checkNumber, enhancements.checkNumber) && Objects.equals(this.paymentChannel, enhancements.paymentChannel) && Objects.equals(this.categoryId, enhancements.categoryId) && Objects.equals(this.category, enhancements.category) && Objects.equals(this.location, enhancements.location) && Objects.equals(this.personalFinanceCategory, enhancements.personalFinanceCategory) && Objects.equals(this.personalFinanceCategoryIconUrl, enhancements.personalFinanceCategoryIconUrl) && Objects.equals(this.counterparties, enhancements.counterparties); } @Override public int hashCode() { return Objects.hash(merchantName, website, logoUrl, checkNumber, paymentChannel, categoryId, category, location, personalFinanceCategory, personalFinanceCategoryIconUrl, counterparties); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Enhancements {\n"); sb.append(" merchantName: ").append(toIndentedString(merchantName)).append("\n"); sb.append(" website: ").append(toIndentedString(website)).append("\n"); sb.append(" logoUrl: ").append(toIndentedString(logoUrl)).append("\n"); sb.append(" checkNumber: ").append(toIndentedString(checkNumber)).append("\n"); sb.append(" paymentChannel: ").append(toIndentedString(paymentChannel)).append("\n"); sb.append(" categoryId: ").append(toIndentedString(categoryId)).append("\n"); sb.append(" category: ").append(toIndentedString(category)).append("\n"); sb.append(" location: ").append(toIndentedString(location)).append("\n"); sb.append(" personalFinanceCategory: ").append(toIndentedString(personalFinanceCategory)).append("\n"); sb.append(" personalFinanceCategoryIconUrl: ").append(toIndentedString(personalFinanceCategoryIconUrl)).append("\n"); sb.append(" counterparties: ").append(toIndentedString(counterparties)).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/AssetReportInvestmentHolding.java
src/main/java/com/plaid/client/model/AssetReportInvestmentHolding.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; /** * A securities holding at an institution. */ @ApiModel(description = "A securities holding at an institution.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AssetReportInvestmentHolding { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_SECURITY_ID = "security_id"; @SerializedName(SERIALIZED_NAME_SECURITY_ID) private String securityId; public static final String SERIALIZED_NAME_TICKER_SYMBOL = "ticker_symbol"; @SerializedName(SERIALIZED_NAME_TICKER_SYMBOL) private String tickerSymbol; public static final String SERIALIZED_NAME_INSTITUTION_PRICE = "institution_price"; @SerializedName(SERIALIZED_NAME_INSTITUTION_PRICE) private Double institutionPrice; public static final String SERIALIZED_NAME_INSTITUTION_PRICE_AS_OF = "institution_price_as_of"; @SerializedName(SERIALIZED_NAME_INSTITUTION_PRICE_AS_OF) private LocalDate institutionPriceAsOf; public static final String SERIALIZED_NAME_INSTITUTION_VALUE = "institution_value"; @SerializedName(SERIALIZED_NAME_INSTITUTION_VALUE) private Double institutionValue; public static final String SERIALIZED_NAME_COST_BASIS = "cost_basis"; @SerializedName(SERIALIZED_NAME_COST_BASIS) private Double costBasis; public static final String SERIALIZED_NAME_QUANTITY = "quantity"; @SerializedName(SERIALIZED_NAME_QUANTITY) private Double quantity; 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 AssetReportInvestmentHolding accountId(String accountId) { this.accountId = accountId; return this; } /** * The Plaid &#x60;account_id&#x60; associated with the holding. * @return accountId **/ @ApiModelProperty(required = true, value = "The Plaid `account_id` associated with the holding.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public AssetReportInvestmentHolding securityId(String securityId) { this.securityId = securityId; return this; } /** * The Plaid &#x60;security_id&#x60; associated with the holding. Security data is not specific to a user&#39;s account; any user who held the same security at the same financial institution at the same time would have identical security data. The &#x60;security_id&#x60; for the same security will typically be the same across different institutions, but this is not guaranteed. The &#x60;security_id&#x60; does not typically change, but may change if inherent details of the security change due to a corporate action, for example, in the event of a ticker symbol change or CUSIP change. * @return securityId **/ @ApiModelProperty(required = true, value = "The Plaid `security_id` associated with the holding. Security data is not specific to a user's account; any user who held the same security at the same financial institution at the same time would have identical security data. The `security_id` for the same security will typically be the same across different institutions, but this is not guaranteed. The `security_id` does not typically change, but may change if inherent details of the security change due to a corporate action, for example, in the event of a ticker symbol change or CUSIP change.") public String getSecurityId() { return securityId; } public void setSecurityId(String securityId) { this.securityId = securityId; } public AssetReportInvestmentHolding tickerSymbol(String tickerSymbol) { this.tickerSymbol = tickerSymbol; return this; } /** * The holding&#39;s trading symbol for publicly traded holdings, and otherwise a short identifier if available. * @return tickerSymbol **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The holding's trading symbol for publicly traded holdings, and otherwise a short identifier if available.") public String getTickerSymbol() { return tickerSymbol; } public void setTickerSymbol(String tickerSymbol) { this.tickerSymbol = tickerSymbol; } public AssetReportInvestmentHolding institutionPrice(Double institutionPrice) { this.institutionPrice = institutionPrice; return this; } /** * The last price given by the institution for this security. * @return institutionPrice **/ @ApiModelProperty(required = true, value = "The last price given by the institution for this security.") public Double getInstitutionPrice() { return institutionPrice; } public void setInstitutionPrice(Double institutionPrice) { this.institutionPrice = institutionPrice; } public AssetReportInvestmentHolding institutionPriceAsOf(LocalDate institutionPriceAsOf) { this.institutionPriceAsOf = institutionPriceAsOf; return this; } /** * The date at which &#x60;institution_price&#x60; was current. * @return institutionPriceAsOf **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date at which `institution_price` was current.") public LocalDate getInstitutionPriceAsOf() { return institutionPriceAsOf; } public void setInstitutionPriceAsOf(LocalDate institutionPriceAsOf) { this.institutionPriceAsOf = institutionPriceAsOf; } public AssetReportInvestmentHolding institutionValue(Double institutionValue) { this.institutionValue = institutionValue; return this; } /** * The value of the holding, as reported by the institution. * @return institutionValue **/ @ApiModelProperty(required = true, value = "The value of the holding, as reported by the institution.") public Double getInstitutionValue() { return institutionValue; } public void setInstitutionValue(Double institutionValue) { this.institutionValue = institutionValue; } public AssetReportInvestmentHolding costBasis(Double costBasis) { this.costBasis = costBasis; return this; } /** * The original total value of the holding. This field is calculated by Plaid as the sum of the purchase price of all of the shares in the holding. * @return costBasis **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The original total value of the holding. This field is calculated by Plaid as the sum of the purchase price of all of the shares in the holding.") public Double getCostBasis() { return costBasis; } public void setCostBasis(Double costBasis) { this.costBasis = costBasis; } public AssetReportInvestmentHolding quantity(Double quantity) { this.quantity = quantity; return this; } /** * The total quantity of the asset held, as reported by the financial institution. If the security is an option, &#x60;quantity&#x60; will reflect the total number of options (typically the number of contracts multiplied by 100), not the number of contracts. * @return quantity **/ @ApiModelProperty(required = true, value = "The total quantity of the asset held, as reported by the financial institution. If the security is an option, `quantity` will reflect the total number of options (typically the number of contracts multiplied by 100), not the number of contracts.") public Double getQuantity() { return quantity; } public void setQuantity(Double quantity) { this.quantity = quantity; } public AssetReportInvestmentHolding isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO-4217 currency code of the holding. Always &#x60;null&#x60; if &#x60;unofficial_currency_code&#x60; is non-&#x60;null&#x60;. * @return isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ISO-4217 currency code of the holding. Always `null` if `unofficial_currency_code` is non-`null`.") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public AssetReportInvestmentHolding unofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; return this; } /** * The unofficial currency code associated with the holding. Always &#x60;null&#x60; if &#x60;iso_currency_code&#x60; is non-&#x60;null&#x60;. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported &#x60;iso_currency_code&#x60;s. * @return unofficialCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The unofficial currency code associated with the holding. 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. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported `iso_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; } AssetReportInvestmentHolding assetReportInvestmentHolding = (AssetReportInvestmentHolding) o; return Objects.equals(this.accountId, assetReportInvestmentHolding.accountId) && Objects.equals(this.securityId, assetReportInvestmentHolding.securityId) && Objects.equals(this.tickerSymbol, assetReportInvestmentHolding.tickerSymbol) && Objects.equals(this.institutionPrice, assetReportInvestmentHolding.institutionPrice) && Objects.equals(this.institutionPriceAsOf, assetReportInvestmentHolding.institutionPriceAsOf) && Objects.equals(this.institutionValue, assetReportInvestmentHolding.institutionValue) && Objects.equals(this.costBasis, assetReportInvestmentHolding.costBasis) && Objects.equals(this.quantity, assetReportInvestmentHolding.quantity) && Objects.equals(this.isoCurrencyCode, assetReportInvestmentHolding.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, assetReportInvestmentHolding.unofficialCurrencyCode); } @Override public int hashCode() { return Objects.hash(accountId, securityId, tickerSymbol, institutionPrice, institutionPriceAsOf, institutionValue, costBasis, quantity, isoCurrencyCode, unofficialCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetReportInvestmentHolding {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" securityId: ").append(toIndentedString(securityId)).append("\n"); sb.append(" tickerSymbol: ").append(toIndentedString(tickerSymbol)).append("\n"); sb.append(" institutionPrice: ").append(toIndentedString(institutionPrice)).append("\n"); sb.append(" institutionPriceAsOf: ").append(toIndentedString(institutionPriceAsOf)).append("\n"); sb.append(" institutionValue: ").append(toIndentedString(institutionValue)).append("\n"); sb.append(" costBasis: ").append(toIndentedString(costBasis)).append("\n"); sb.append(" quantity: ").append(toIndentedString(quantity)).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/StudentRepaymentPlan.java
src/main/java/com/plaid/client/model/StudentRepaymentPlan.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 object representing the repayment plan for the student loan */ @ApiModel(description = "An object representing the repayment plan for the student loan") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class StudentRepaymentPlan { public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) private String description; /** * The type of the repayment plan. */ @JsonAdapter(TypeEnum.Adapter.class) public enum TypeEnum { EXTENDED_GRADUATED("extended graduated"), EXTENDED_STANDARD("extended standard"), GRADUATED("graduated"), INCOME_CONTINGENT_REPAYMENT("income-contingent repayment"), INCOME_BASED_REPAYMENT("income-based repayment"), INCOME_SENSITIVE_REPAYMENT("income-sensitive repayment"), INTEREST_ONLY("interest-only"), OTHER("other"), PAY_AS_YOU_EARN("pay as you earn"), REVISED_PAY_AS_YOU_EARN("revised pay as you earn"), STANDARD("standard"), SAVING_ON_A_VALUABLE_EDUCATION("saving on a valuable education"), NULL("null"); private String value; TypeEnum(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TypeEnum fromValue(String value) { for (TypeEnum b : TypeEnum.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<TypeEnum> { @Override public void write(final JsonWriter jsonWriter, final TypeEnum enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TypeEnum read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TypeEnum.fromValue(value); } } } public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private TypeEnum type; public StudentRepaymentPlan description(String description) { this.description = description; return this; } /** * The description of the repayment plan as provided by the servicer. * @return description **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The description of the repayment plan as provided by the servicer.") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public StudentRepaymentPlan type(TypeEnum type) { this.type = type; return this; } /** * The type of the repayment plan. * @return type **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The type of the repayment plan.") public TypeEnum getType() { return type; } public void setType(TypeEnum type) { this.type = type; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } StudentRepaymentPlan studentRepaymentPlan = (StudentRepaymentPlan) o; return Objects.equals(this.description, studentRepaymentPlan.description) && Objects.equals(this.type, studentRepaymentPlan.type); } @Override public int hashCode() { return Objects.hash(description, type); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class StudentRepaymentPlan {\n"); sb.append(" description: ").append(toIndentedString(description)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).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/ProcessorSignalReturnReportRequest.java
src/main/java/com/plaid/client/model/ProcessorSignalReturnReportRequest.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; /** * ProcessorSignalReturnReportRequest defines the request schema for &#x60;/processor/signal/return/report&#x60; */ @ApiModel(description = "ProcessorSignalReturnReportRequest defines the request schema for `/processor/signal/return/report`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorSignalReturnReportRequest { 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_CLIENT_TRANSACTION_ID = "client_transaction_id"; @SerializedName(SERIALIZED_NAME_CLIENT_TRANSACTION_ID) private String clientTransactionId; public static final String SERIALIZED_NAME_RETURN_CODE = "return_code"; @SerializedName(SERIALIZED_NAME_RETURN_CODE) private String returnCode; public static final String SERIALIZED_NAME_RETURNED_AT = "returned_at"; @SerializedName(SERIALIZED_NAME_RETURNED_AT) private OffsetDateTime returnedAt; public ProcessorSignalReturnReportRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; 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 ProcessorSignalReturnReportRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; 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 ProcessorSignalReturnReportRequest processorToken(String processorToken) { this.processorToken = processorToken; return this; } /** * The processor token obtained from the Plaid integration partner. Processor tokens are in the format: &#x60;processor-&lt;environment&gt;-&lt;identifier&gt;&#x60; * @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 ProcessorSignalReturnReportRequest clientTransactionId(String clientTransactionId) { this.clientTransactionId = clientTransactionId; return this; } /** * Must be the same as the &#x60;client_transaction_id&#x60; supplied when calling &#x60;/processor/signal/evaluate&#x60; * @return clientTransactionId **/ @ApiModelProperty(required = true, value = "Must be the same as the `client_transaction_id` supplied when calling `/processor/signal/evaluate`") public String getClientTransactionId() { return clientTransactionId; } public void setClientTransactionId(String clientTransactionId) { this.clientTransactionId = clientTransactionId; } public ProcessorSignalReturnReportRequest returnCode(String returnCode) { this.returnCode = returnCode; return this; } /** * Must be a valid ACH return code (e.g. \&quot;R01\&quot;) If formatted incorrectly, this will result in an [&#x60;INVALID_FIELD&#x60;](https://plaid.com/docs/errors/invalid-request/#invalid_field) error. * @return returnCode **/ @ApiModelProperty(required = true, value = "Must be a valid ACH return code (e.g. \"R01\") If formatted incorrectly, this will result in an [`INVALID_FIELD`](https://plaid.com/docs/errors/invalid-request/#invalid_field) error.") public String getReturnCode() { return returnCode; } public void setReturnCode(String returnCode) { this.returnCode = returnCode; } public ProcessorSignalReturnReportRequest returnedAt(OffsetDateTime returnedAt) { this.returnedAt = returnedAt; return this; } /** * Date and time when you receive the returns from your payment processors, in ISO 8601 format (&#x60;YYYY-MM-DDTHH:mm:ssZ&#x60;). * @return returnedAt **/ @javax.annotation.Nullable @ApiModelProperty(value = "Date and time when you receive the returns from your payment processors, in ISO 8601 format (`YYYY-MM-DDTHH:mm:ssZ`).") public OffsetDateTime getReturnedAt() { return returnedAt; } public void setReturnedAt(OffsetDateTime returnedAt) { this.returnedAt = returnedAt; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProcessorSignalReturnReportRequest processorSignalReturnReportRequest = (ProcessorSignalReturnReportRequest) o; return Objects.equals(this.clientId, processorSignalReturnReportRequest.clientId) && Objects.equals(this.secret, processorSignalReturnReportRequest.secret) && Objects.equals(this.processorToken, processorSignalReturnReportRequest.processorToken) && Objects.equals(this.clientTransactionId, processorSignalReturnReportRequest.clientTransactionId) && Objects.equals(this.returnCode, processorSignalReturnReportRequest.returnCode) && Objects.equals(this.returnedAt, processorSignalReturnReportRequest.returnedAt); } @Override public int hashCode() { return Objects.hash(clientId, secret, processorToken, clientTransactionId, returnCode, returnedAt); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorSignalReturnReportRequest {\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(" clientTransactionId: ").append(toIndentedString(clientTransactionId)).append("\n"); sb.append(" returnCode: ").append(toIndentedString(returnCode)).append("\n"); sb.append(" returnedAt: ").append(toIndentedString(returnedAt)).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/CraCheckReportPartnerInsightsGetPartnerInsights.java
src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetPartnerInsights.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.PrismVersions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines configuration to generate Partner Insights */ @ApiModel(description = "Defines configuration to generate Partner Insights") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCheckReportPartnerInsightsGetPartnerInsights { public static final String SERIALIZED_NAME_PRISM_VERSIONS = "prism_versions"; @SerializedName(SERIALIZED_NAME_PRISM_VERSIONS) private PrismVersions prismVersions; public CraCheckReportPartnerInsightsGetPartnerInsights prismVersions(PrismVersions prismVersions) { this.prismVersions = prismVersions; return this; } /** * Get prismVersions * @return prismVersions **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PrismVersions getPrismVersions() { return prismVersions; } public void setPrismVersions(PrismVersions prismVersions) { this.prismVersions = prismVersions; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraCheckReportPartnerInsightsGetPartnerInsights craCheckReportPartnerInsightsGetPartnerInsights = (CraCheckReportPartnerInsightsGetPartnerInsights) o; return Objects.equals(this.prismVersions, craCheckReportPartnerInsightsGetPartnerInsights.prismVersions); } @Override public int hashCode() { return Objects.hash(prismVersions); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportPartnerInsightsGetPartnerInsights {\n"); sb.append(" prismVersions: ").append(toIndentedString(prismVersions)).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/CreditBankStatementUploadBankAccountPeriod.java
src/main/java/com/plaid/client/model/CreditBankStatementUploadBankAccountPeriod.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; import java.time.LocalDate; /** * An object containing data on the overall period of the statement. */ @ApiModel(description = "An object containing data on the overall period of the statement.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditBankStatementUploadBankAccountPeriod { 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_STARTING_BALANCE = "starting_balance"; @SerializedName(SERIALIZED_NAME_STARTING_BALANCE) private Double startingBalance; public static final String SERIALIZED_NAME_ENDING_BALANCE = "ending_balance"; @SerializedName(SERIALIZED_NAME_ENDING_BALANCE) private Double endingBalance; public CreditBankStatementUploadBankAccountPeriod startDate(LocalDate startDate) { this.startDate = startDate; return this; } /** * The start date of the statement period in ISO 8601 format (YYYY-MM-DD). * @return startDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The start date of the statement period in ISO 8601 format (YYYY-MM-DD).") public LocalDate getStartDate() { return startDate; } public void setStartDate(LocalDate startDate) { this.startDate = startDate; } public CreditBankStatementUploadBankAccountPeriod endDate(LocalDate endDate) { this.endDate = endDate; return this; } /** * The end date of the statement period in ISO 8601 format (YYYY-MM-DD). * @return endDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The end date of the statement period in ISO 8601 format (YYYY-MM-DD).") public LocalDate getEndDate() { return endDate; } public void setEndDate(LocalDate endDate) { this.endDate = endDate; } public CreditBankStatementUploadBankAccountPeriod startingBalance(Double startingBalance) { this.startingBalance = startingBalance; return this; } /** * The starting balance of the bank account for the period. * @return startingBalance **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The starting balance of the bank account for the period.") public Double getStartingBalance() { return startingBalance; } public void setStartingBalance(Double startingBalance) { this.startingBalance = startingBalance; } public CreditBankStatementUploadBankAccountPeriod endingBalance(Double endingBalance) { this.endingBalance = endingBalance; return this; } /** * The ending balance of the bank account for the period. * @return endingBalance **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ending balance of the bank account for the period.") public Double getEndingBalance() { return endingBalance; } public void setEndingBalance(Double endingBalance) { this.endingBalance = endingBalance; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditBankStatementUploadBankAccountPeriod creditBankStatementUploadBankAccountPeriod = (CreditBankStatementUploadBankAccountPeriod) o; return Objects.equals(this.startDate, creditBankStatementUploadBankAccountPeriod.startDate) && Objects.equals(this.endDate, creditBankStatementUploadBankAccountPeriod.endDate) && Objects.equals(this.startingBalance, creditBankStatementUploadBankAccountPeriod.startingBalance) && Objects.equals(this.endingBalance, creditBankStatementUploadBankAccountPeriod.endingBalance); } @Override public int hashCode() { return Objects.hash(startDate, endDate, startingBalance, endingBalance); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditBankStatementUploadBankAccountPeriod {\n"); sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n"); sb.append(" endDate: ").append(toIndentedString(endDate)).append("\n"); sb.append(" startingBalance: ").append(toIndentedString(startingBalance)).append("\n"); sb.append(" endingBalance: ").append(toIndentedString(endingBalance)).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/SignalDecisionReportRequest.java
src/main/java/com/plaid/client/model/SignalDecisionReportRequest.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.SignalDecisionOutcome; import com.plaid.client.model.SignalPaymentMethod; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * SignalDecisionReportRequest defines the request schema for &#x60;/signal/decision/report&#x60; */ @ApiModel(description = "SignalDecisionReportRequest defines the request schema for `/signal/decision/report`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SignalDecisionReportRequest { 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_CLIENT_TRANSACTION_ID = "client_transaction_id"; @SerializedName(SERIALIZED_NAME_CLIENT_TRANSACTION_ID) private String clientTransactionId; public static final String SERIALIZED_NAME_INITIATED = "initiated"; @SerializedName(SERIALIZED_NAME_INITIATED) private Boolean initiated; public static final String SERIALIZED_NAME_DAYS_FUNDS_ON_HOLD = "days_funds_on_hold"; @SerializedName(SERIALIZED_NAME_DAYS_FUNDS_ON_HOLD) private Integer daysFundsOnHold; public static final String SERIALIZED_NAME_DECISION_OUTCOME = "decision_outcome"; @SerializedName(SERIALIZED_NAME_DECISION_OUTCOME) private SignalDecisionOutcome decisionOutcome; public static final String SERIALIZED_NAME_PAYMENT_METHOD = "payment_method"; @SerializedName(SERIALIZED_NAME_PAYMENT_METHOD) private SignalPaymentMethod paymentMethod; public static final String SERIALIZED_NAME_AMOUNT_INSTANTLY_AVAILABLE = "amount_instantly_available"; @SerializedName(SERIALIZED_NAME_AMOUNT_INSTANTLY_AVAILABLE) private Double amountInstantlyAvailable; public static final String SERIALIZED_NAME_SUBMITTED_AT = "submitted_at"; @SerializedName(SERIALIZED_NAME_SUBMITTED_AT) private OffsetDateTime submittedAt; public SignalDecisionReportRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; 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 SignalDecisionReportRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; 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 SignalDecisionReportRequest clientTransactionId(String clientTransactionId) { this.clientTransactionId = clientTransactionId; return this; } /** * Must be the same as the &#x60;client_transaction_id&#x60; supplied when calling &#x60;/signal/evaluate&#x60; * @return clientTransactionId **/ @ApiModelProperty(required = true, value = "Must be the same as the `client_transaction_id` supplied when calling `/signal/evaluate`") public String getClientTransactionId() { return clientTransactionId; } public void setClientTransactionId(String clientTransactionId) { this.clientTransactionId = clientTransactionId; } public SignalDecisionReportRequest initiated(Boolean initiated) { this.initiated = initiated; return this; } /** * &#x60;true&#x60; if the ACH transaction was initiated, &#x60;false&#x60; otherwise. This field must be returned as a boolean. If formatted incorrectly, this will result in an [&#x60;INVALID_FIELD&#x60;](https://plaid.com/docs/errors/invalid-request/#invalid_field) error. * @return initiated **/ @ApiModelProperty(required = true, value = "`true` if the ACH transaction was initiated, `false` otherwise. This field must be returned as a boolean. If formatted incorrectly, this will result in an [`INVALID_FIELD`](https://plaid.com/docs/errors/invalid-request/#invalid_field) error.") public Boolean getInitiated() { return initiated; } public void setInitiated(Boolean initiated) { this.initiated = initiated; } public SignalDecisionReportRequest daysFundsOnHold(Integer daysFundsOnHold) { this.daysFundsOnHold = daysFundsOnHold; return this; } /** * The actual number of days (hold time) since the ACH debit transaction that you wait before making funds available to your customers. The holding time could affect the ACH return rate. For example, use 0 if you make funds available to your customers instantly or the same day following the debit transaction, or 1 if you make funds available the next day following the debit initialization. * minimum: 0 * @return daysFundsOnHold **/ @javax.annotation.Nullable @ApiModelProperty(value = "The actual number of days (hold time) since the ACH debit transaction that you wait before making funds available to your customers. The holding time could affect the ACH return rate. For example, use 0 if you make funds available to your customers instantly or the same day following the debit transaction, or 1 if you make funds available the next day following the debit initialization.") public Integer getDaysFundsOnHold() { return daysFundsOnHold; } public void setDaysFundsOnHold(Integer daysFundsOnHold) { this.daysFundsOnHold = daysFundsOnHold; } public SignalDecisionReportRequest decisionOutcome(SignalDecisionOutcome decisionOutcome) { this.decisionOutcome = decisionOutcome; return this; } /** * Get decisionOutcome * @return decisionOutcome **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public SignalDecisionOutcome getDecisionOutcome() { return decisionOutcome; } public void setDecisionOutcome(SignalDecisionOutcome decisionOutcome) { this.decisionOutcome = decisionOutcome; } public SignalDecisionReportRequest paymentMethod(SignalPaymentMethod paymentMethod) { this.paymentMethod = paymentMethod; return this; } /** * Get paymentMethod * @return paymentMethod **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public SignalPaymentMethod getPaymentMethod() { return paymentMethod; } public void setPaymentMethod(SignalPaymentMethod paymentMethod) { this.paymentMethod = paymentMethod; } public SignalDecisionReportRequest amountInstantlyAvailable(Double amountInstantlyAvailable) { this.amountInstantlyAvailable = amountInstantlyAvailable; return this; } /** * The amount (in USD) made available to your customers instantly following the debit transaction. It could be a partial amount of the requested transaction (example: 102.05). * @return amountInstantlyAvailable **/ @javax.annotation.Nullable @ApiModelProperty(value = "The amount (in USD) made available to your customers instantly following the debit transaction. It could be a partial amount of the requested transaction (example: 102.05).") public Double getAmountInstantlyAvailable() { return amountInstantlyAvailable; } public void setAmountInstantlyAvailable(Double amountInstantlyAvailable) { this.amountInstantlyAvailable = amountInstantlyAvailable; } public SignalDecisionReportRequest submittedAt(OffsetDateTime submittedAt) { this.submittedAt = submittedAt; return this; } /** * The date the ACH debit was submitted to the bank for processing (in ISO 8601 format: &#x60;YYYY-MM-DDTHH:mm:ssZ&#x60;). This field should correspond to the attempt initiated after the &#x60;/signal/schedule&#x60; call. * @return submittedAt **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date the ACH debit was submitted to the bank for processing (in ISO 8601 format: `YYYY-MM-DDTHH:mm:ssZ`). This field should correspond to the attempt initiated after the `/signal/schedule` call.") public OffsetDateTime getSubmittedAt() { return submittedAt; } public void setSubmittedAt(OffsetDateTime submittedAt) { this.submittedAt = submittedAt; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SignalDecisionReportRequest signalDecisionReportRequest = (SignalDecisionReportRequest) o; return Objects.equals(this.clientId, signalDecisionReportRequest.clientId) && Objects.equals(this.secret, signalDecisionReportRequest.secret) && Objects.equals(this.clientTransactionId, signalDecisionReportRequest.clientTransactionId) && Objects.equals(this.initiated, signalDecisionReportRequest.initiated) && Objects.equals(this.daysFundsOnHold, signalDecisionReportRequest.daysFundsOnHold) && Objects.equals(this.decisionOutcome, signalDecisionReportRequest.decisionOutcome) && Objects.equals(this.paymentMethod, signalDecisionReportRequest.paymentMethod) && Objects.equals(this.amountInstantlyAvailable, signalDecisionReportRequest.amountInstantlyAvailable) && Objects.equals(this.submittedAt, signalDecisionReportRequest.submittedAt); } @Override public int hashCode() { return Objects.hash(clientId, secret, clientTransactionId, initiated, daysFundsOnHold, decisionOutcome, paymentMethod, amountInstantlyAvailable, submittedAt); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SignalDecisionReportRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" clientTransactionId: ").append(toIndentedString(clientTransactionId)).append("\n"); sb.append(" initiated: ").append(toIndentedString(initiated)).append("\n"); sb.append(" daysFundsOnHold: ").append(toIndentedString(daysFundsOnHold)).append("\n"); sb.append(" decisionOutcome: ").append(toIndentedString(decisionOutcome)).append("\n"); sb.append(" paymentMethod: ").append(toIndentedString(paymentMethod)).append("\n"); sb.append(" amountInstantlyAvailable: ").append(toIndentedString(amountInstantlyAvailable)).append("\n"); sb.append(" submittedAt: ").append(toIndentedString(submittedAt)).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/RiskReason.java
src/main/java/com/plaid/client/model/RiskReason.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; /** * This object includes a code and description to describe medium risk transactions and above on /accounts/balance/get. */ @ApiModel(description = "This object includes a code and description to describe medium risk transactions and above on /accounts/balance/get.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class RiskReason { public static final String SERIALIZED_NAME_CODE = "code"; @SerializedName(SERIALIZED_NAME_CODE) private String code; public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) private String description; public RiskReason code(String code) { this.code = code; return this; } /** * A code that represents the type of risk associated with the proposed transaction. The codes are from PL01 to PL08 and from BK01 to BK07. For a full listing of risk reason codes, see [Risk codes](https://plaid.com/docs/balance/balance-plus/#risk-codes). * @return code **/ @ApiModelProperty(required = true, value = "A code that represents the type of risk associated with the proposed transaction. The codes are from PL01 to PL08 and from BK01 to BK07. For a full listing of risk reason codes, see [Risk codes](https://plaid.com/docs/balance/balance-plus/#risk-codes).") public String getCode() { return code; } public void setCode(String code) { this.code = code; } public RiskReason description(String description) { this.description = description; return this; } /** * A human-readable description explaining the risk code associated with the proposed transaction and some recommended actions. This field is subject to change; any programmatic logic should be based on the &#x60;code&#x60; field instead. * @return description **/ @ApiModelProperty(required = true, value = "A human-readable description explaining the risk code associated with the proposed transaction and some recommended actions. This field is subject to change; any programmatic logic should be based on the `code` field instead.") 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; } RiskReason riskReason = (RiskReason) o; return Objects.equals(this.code, riskReason.code) && Objects.equals(this.description, riskReason.description); } @Override public int hashCode() { return Objects.hash(code, description); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class RiskReason {\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/BetaPartnerCustomerV1EnableRequest.java
src/main/java/com/plaid/client/model/BetaPartnerCustomerV1EnableRequest.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; /** * Request schema for &#x60;/beta/partner/customer/v1/enable&#x60;. */ @ApiModel(description = "Request schema for `/beta/partner/customer/v1/enable`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BetaPartnerCustomerV1EnableRequest { 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 static final String SERIALIZED_NAME_PRODUCTS = "products"; @SerializedName(SERIALIZED_NAME_PRODUCTS) private List<Products> products = null; public BetaPartnerCustomerV1EnableRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; 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 BetaPartnerCustomerV1EnableRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; 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 BetaPartnerCustomerV1EnableRequest 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; } public BetaPartnerCustomerV1EnableRequest products(List<Products> products) { this.products = products; return this; } public BetaPartnerCustomerV1EnableRequest addProductsItem(Products productsItem) { if (this.products == null) { this.products = new ArrayList<>(); } this.products.add(productsItem); return this; } /** * Get products * @return products **/ @javax.annotation.Nullable @ApiModelProperty(value = "") 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; } BetaPartnerCustomerV1EnableRequest betaPartnerCustomerV1EnableRequest = (BetaPartnerCustomerV1EnableRequest) o; return Objects.equals(this.clientId, betaPartnerCustomerV1EnableRequest.clientId) && Objects.equals(this.secret, betaPartnerCustomerV1EnableRequest.secret) && Objects.equals(this.endCustomerClientId, betaPartnerCustomerV1EnableRequest.endCustomerClientId) && Objects.equals(this.products, betaPartnerCustomerV1EnableRequest.products); } @Override public int hashCode() { return Objects.hash(clientId, secret, endCustomerClientId, products); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BetaPartnerCustomerV1EnableRequest {\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(" 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/FraudCheckOutcomeWithNoData.java
src/main/java/com/plaid/client/model/FraudCheckOutcomeWithNoData.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 outcome of the fraud check, when available. */ @JsonAdapter(FraudCheckOutcomeWithNoData.Adapter.class) public enum FraudCheckOutcomeWithNoData { SUCCESS("success"), FAILED("failed"), NO_DATA("no_data"), // 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; FraudCheckOutcomeWithNoData(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static FraudCheckOutcomeWithNoData fromValue(String value) { for (FraudCheckOutcomeWithNoData b : FraudCheckOutcomeWithNoData.values()) { if (b.value.equals(value)) { return b; } } return FraudCheckOutcomeWithNoData.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<FraudCheckOutcomeWithNoData> { @Override public void write(final JsonWriter jsonWriter, final FraudCheckOutcomeWithNoData enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public FraudCheckOutcomeWithNoData read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return FraudCheckOutcomeWithNoData.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/CreditFreddieMacVerificationOfAssetsDeal.java
src/main/java/com/plaid/client/model/CreditFreddieMacVerificationOfAssetsDeal.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.CreditFreddieMacLoans; import com.plaid.client.model.CreditFreddieMacParties; import com.plaid.client.model.CreditFreddieMacServices; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object representing an Asset Report with Freddie Mac schema. */ @ApiModel(description = "An object representing an Asset Report with Freddie Mac schema.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditFreddieMacVerificationOfAssetsDeal { public static final String SERIALIZED_NAME_L_O_A_N_S = "LOANS"; @SerializedName(SERIALIZED_NAME_L_O_A_N_S) private CreditFreddieMacLoans LOANS; public static final String SERIALIZED_NAME_P_A_R_T_I_E_S = "PARTIES"; @SerializedName(SERIALIZED_NAME_P_A_R_T_I_E_S) private CreditFreddieMacParties PARTIES; public static final String SERIALIZED_NAME_S_E_R_V_I_C_E_S = "SERVICES"; @SerializedName(SERIALIZED_NAME_S_E_R_V_I_C_E_S) private CreditFreddieMacServices SERVICES; public CreditFreddieMacVerificationOfAssetsDeal LOANS(CreditFreddieMacLoans LOANS) { this.LOANS = LOANS; return this; } /** * Get LOANS * @return LOANS **/ @ApiModelProperty(required = true, value = "") public CreditFreddieMacLoans getLOANS() { return LOANS; } public void setLOANS(CreditFreddieMacLoans LOANS) { this.LOANS = LOANS; } public CreditFreddieMacVerificationOfAssetsDeal PARTIES(CreditFreddieMacParties PARTIES) { this.PARTIES = PARTIES; return this; } /** * Get PARTIES * @return PARTIES **/ @ApiModelProperty(required = true, value = "") public CreditFreddieMacParties getPARTIES() { return PARTIES; } public void setPARTIES(CreditFreddieMacParties PARTIES) { this.PARTIES = PARTIES; } public CreditFreddieMacVerificationOfAssetsDeal SERVICES(CreditFreddieMacServices SERVICES) { this.SERVICES = SERVICES; return this; } /** * Get SERVICES * @return SERVICES **/ @ApiModelProperty(required = true, value = "") public CreditFreddieMacServices getSERVICES() { return SERVICES; } public void setSERVICES(CreditFreddieMacServices SERVICES) { this.SERVICES = SERVICES; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditFreddieMacVerificationOfAssetsDeal creditFreddieMacVerificationOfAssetsDeal = (CreditFreddieMacVerificationOfAssetsDeal) o; return Objects.equals(this.LOANS, creditFreddieMacVerificationOfAssetsDeal.LOANS) && Objects.equals(this.PARTIES, creditFreddieMacVerificationOfAssetsDeal.PARTIES) && Objects.equals(this.SERVICES, creditFreddieMacVerificationOfAssetsDeal.SERVICES); } @Override public int hashCode() { return Objects.hash(LOANS, PARTIES, SERVICES); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditFreddieMacVerificationOfAssetsDeal {\n"); sb.append(" LOANS: ").append(toIndentedString(LOANS)).append("\n"); sb.append(" PARTIES: ").append(toIndentedString(PARTIES)).append("\n"); sb.append(" SERVICES: ").append(toIndentedString(SERVICES)).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/PaystubOverrideEarnings.java
src/main/java/com/plaid/client/model/PaystubOverrideEarnings.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.PaystubOverrideEarningsBreakdown; import com.plaid.client.model.PaystubOverrideEarningsTotal; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * An object representing both a breakdown of earnings on a paystub and the total earnings. */ @ApiModel(description = "An object representing both a breakdown of earnings on a paystub and the total earnings.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaystubOverrideEarnings { public static final String SERIALIZED_NAME_BREAKDOWN = "breakdown"; @SerializedName(SERIALIZED_NAME_BREAKDOWN) private List<PaystubOverrideEarningsBreakdown> breakdown = null; public static final String SERIALIZED_NAME_TOTAL = "total"; @SerializedName(SERIALIZED_NAME_TOTAL) private PaystubOverrideEarningsTotal total; public PaystubOverrideEarnings breakdown(List<PaystubOverrideEarningsBreakdown> breakdown) { this.breakdown = breakdown; return this; } public PaystubOverrideEarnings addBreakdownItem(PaystubOverrideEarningsBreakdown breakdownItem) { if (this.breakdown == null) { this.breakdown = new ArrayList<>(); } this.breakdown.add(breakdownItem); return this; } /** * Get breakdown * @return breakdown **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public List<PaystubOverrideEarningsBreakdown> getBreakdown() { return breakdown; } public void setBreakdown(List<PaystubOverrideEarningsBreakdown> breakdown) { this.breakdown = breakdown; } public PaystubOverrideEarnings total(PaystubOverrideEarningsTotal total) { this.total = total; return this; } /** * Get total * @return total **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaystubOverrideEarningsTotal getTotal() { return total; } public void setTotal(PaystubOverrideEarningsTotal total) { this.total = total; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaystubOverrideEarnings paystubOverrideEarnings = (PaystubOverrideEarnings) o; return Objects.equals(this.breakdown, paystubOverrideEarnings.breakdown) && Objects.equals(this.total, paystubOverrideEarnings.total); } @Override public int hashCode() { return Objects.hash(breakdown, total); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaystubOverrideEarnings {\n"); sb.append(" breakdown: ").append(toIndentedString(breakdown)).append("\n"); sb.append(" total: ").append(toIndentedString(total)).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/ConsumerDispute.java
src/main/java/com/plaid/client/model/ConsumerDispute.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.ConsumerDisputeCategory; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * The information about a previously submitted valid dispute statement by the consumer */ @ApiModel(description = "The information about a previously submitted valid dispute statement by the consumer") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ConsumerDispute { public static final String SERIALIZED_NAME_CONSUMER_DISPUTE_ID = "consumer_dispute_id"; @SerializedName(SERIALIZED_NAME_CONSUMER_DISPUTE_ID) private String consumerDisputeId; public static final String SERIALIZED_NAME_DISPUTE_FIELD_CREATE_DATE = "dispute_field_create_date"; @SerializedName(SERIALIZED_NAME_DISPUTE_FIELD_CREATE_DATE) private LocalDate disputeFieldCreateDate; public static final String SERIALIZED_NAME_CATEGORY = "category"; @SerializedName(SERIALIZED_NAME_CATEGORY) private ConsumerDisputeCategory category; public static final String SERIALIZED_NAME_STATEMENT = "statement"; @SerializedName(SERIALIZED_NAME_STATEMENT) private String statement; public ConsumerDispute consumerDisputeId(String consumerDisputeId) { this.consumerDisputeId = consumerDisputeId; return this; } /** * (Deprecated) A unique identifier (UUID) of the consumer dispute that can be used for troubleshooting * @return consumerDisputeId **/ @ApiModelProperty(required = true, value = "(Deprecated) A unique identifier (UUID) of the consumer dispute that can be used for troubleshooting") public String getConsumerDisputeId() { return consumerDisputeId; } public void setConsumerDisputeId(String consumerDisputeId) { this.consumerDisputeId = consumerDisputeId; } public ConsumerDispute disputeFieldCreateDate(LocalDate disputeFieldCreateDate) { this.disputeFieldCreateDate = disputeFieldCreateDate; return this; } /** * Date of the disputed field (e.g. transaction date), in an ISO 8601 format (YYYY-MM-DD) * @return disputeFieldCreateDate **/ @ApiModelProperty(required = true, value = "Date of the disputed field (e.g. transaction date), in an ISO 8601 format (YYYY-MM-DD)") public LocalDate getDisputeFieldCreateDate() { return disputeFieldCreateDate; } public void setDisputeFieldCreateDate(LocalDate disputeFieldCreateDate) { this.disputeFieldCreateDate = disputeFieldCreateDate; } public ConsumerDispute category(ConsumerDisputeCategory category) { this.category = category; return this; } /** * Get category * @return category **/ @ApiModelProperty(required = true, value = "") public ConsumerDisputeCategory getCategory() { return category; } public void setCategory(ConsumerDisputeCategory category) { this.category = category; } public ConsumerDispute statement(String statement) { this.statement = statement; return this; } /** * Text content of dispute * @return statement **/ @ApiModelProperty(required = true, value = "Text content of dispute") public String getStatement() { return statement; } public void setStatement(String statement) { this.statement = statement; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ConsumerDispute consumerDispute = (ConsumerDispute) o; return Objects.equals(this.consumerDisputeId, consumerDispute.consumerDisputeId) && Objects.equals(this.disputeFieldCreateDate, consumerDispute.disputeFieldCreateDate) && Objects.equals(this.category, consumerDispute.category) && Objects.equals(this.statement, consumerDispute.statement); } @Override public int hashCode() { return Objects.hash(consumerDisputeId, disputeFieldCreateDate, category, statement); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ConsumerDispute {\n"); sb.append(" consumerDisputeId: ").append(toIndentedString(consumerDisputeId)).append("\n"); sb.append(" disputeFieldCreateDate: ").append(toIndentedString(disputeFieldCreateDate)).append("\n"); sb.append(" category: ").append(toIndentedString(category)).append("\n"); sb.append(" statement: ").append(toIndentedString(statement)).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/WatchlistScreeningEntityProgramListRequest.java
src/main/java/com/plaid/client/model/WatchlistScreeningEntityProgramListRequest.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 input for listing entity watchlist screening programs */ @ApiModel(description = "Request input for listing entity watchlist screening programs") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WatchlistScreeningEntityProgramListRequest { 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_CURSOR = "cursor"; @SerializedName(SERIALIZED_NAME_CURSOR) private String cursor; public WatchlistScreeningEntityProgramListRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; 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 WatchlistScreeningEntityProgramListRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; 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 WatchlistScreeningEntityProgramListRequest 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; } WatchlistScreeningEntityProgramListRequest watchlistScreeningEntityProgramListRequest = (WatchlistScreeningEntityProgramListRequest) o; return Objects.equals(this.secret, watchlistScreeningEntityProgramListRequest.secret) && Objects.equals(this.clientId, watchlistScreeningEntityProgramListRequest.clientId) && Objects.equals(this.cursor, watchlistScreeningEntityProgramListRequest.cursor); } @Override public int hashCode() { return Objects.hash(secret, clientId, cursor); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WatchlistScreeningEntityProgramListRequest {\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).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/StatementsRefreshRequest.java
src/main/java/com/plaid/client/model/StatementsRefreshRequest.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; /** * StatementsRefreshRequest defines the request schema for &#x60;/statements/refresh&#x60; */ @ApiModel(description = "StatementsRefreshRequest defines the request schema for `/statements/refresh`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class StatementsRefreshRequest { public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) private String accessToken; 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 LocalDate startDate; public static final String SERIALIZED_NAME_END_DATE = "end_date"; @SerializedName(SERIALIZED_NAME_END_DATE) private LocalDate endDate; public StatementsRefreshRequest 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 StatementsRefreshRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; 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 StatementsRefreshRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; 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 StatementsRefreshRequest startDate(LocalDate startDate) { this.startDate = startDate; return this; } /** * The start date for statements, in \&quot;YYYY-MM-DD\&quot; format, e.g. \&quot;2023-08-30\&quot;. To determine whether a statement falls within the specified date range, Plaid will use the statement posted date. The statement posted date is typically either the last day of the statement period, or the following day. * @return startDate **/ @ApiModelProperty(required = true, value = "The start date for statements, in \"YYYY-MM-DD\" format, e.g. \"2023-08-30\". To determine whether a statement falls within the specified date range, Plaid will use the statement posted date. The statement posted date is typically either the last day of the statement period, or the following day.") public LocalDate getStartDate() { return startDate; } public void setStartDate(LocalDate startDate) { this.startDate = startDate; } public StatementsRefreshRequest endDate(LocalDate endDate) { this.endDate = endDate; return this; } /** * The end date for statements, in \&quot;YYYY-MM-DD\&quot; format, e.g. \&quot;2023-10-30\&quot;. You can request up to two years of data. To determine whether a statement falls within the specified date range, Plaid will use the statement posted date. The statement posted date is typically either the last day of the statement period, or the following day. * @return endDate **/ @ApiModelProperty(required = true, value = "The end date for statements, in \"YYYY-MM-DD\" format, e.g. \"2023-10-30\". You can request up to two years of data. To determine whether a statement falls within the specified date range, Plaid will use the statement posted date. The statement posted date is typically either the last day of the statement period, or the following day.") public LocalDate getEndDate() { return endDate; } public void setEndDate(LocalDate endDate) { this.endDate = endDate; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } StatementsRefreshRequest statementsRefreshRequest = (StatementsRefreshRequest) o; return Objects.equals(this.accessToken, statementsRefreshRequest.accessToken) && Objects.equals(this.clientId, statementsRefreshRequest.clientId) && Objects.equals(this.secret, statementsRefreshRequest.secret) && Objects.equals(this.startDate, statementsRefreshRequest.startDate) && Objects.equals(this.endDate, statementsRefreshRequest.endDate); } @Override public int hashCode() { return Objects.hash(accessToken, clientId, secret, startDate, endDate); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class StatementsRefreshRequest {\n"); sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\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("}"); 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/CraLoanPaymentSchedule.java
src/main/java/com/plaid/client/model/CraLoanPaymentSchedule.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 frequency of a loan&#39;s payment schedule. &#x60;BIWEEKLY&#x60; represents one payment every two weeks. */ @JsonAdapter(CraLoanPaymentSchedule.Adapter.class) public enum CraLoanPaymentSchedule { DAILY("DAILY"), WEEKLY("WEEKLY"), BIWEEKLY("BIWEEKLY"), MONTHLY("MONTHLY"), QUARTERLY("QUARTERLY"), ANNUALLY("ANNUALLY"), OTHER("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; CraLoanPaymentSchedule(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static CraLoanPaymentSchedule fromValue(String value) { for (CraLoanPaymentSchedule b : CraLoanPaymentSchedule.values()) { if (b.value.equals(value)) { return b; } } return CraLoanPaymentSchedule.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<CraLoanPaymentSchedule> { @Override public void write(final JsonWriter jsonWriter, final CraLoanPaymentSchedule enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public CraLoanPaymentSchedule read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return CraLoanPaymentSchedule.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/W2Box12Override.java
src/main/java/com/plaid/client/model/W2Box12Override.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; /** * Data on the W2 Box 12 */ @ApiModel(description = "Data on the W2 Box 12") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class W2Box12Override { public static final String SERIALIZED_NAME_CODE = "code"; @SerializedName(SERIALIZED_NAME_CODE) private String code; public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private String amount; public W2Box12Override code(String code) { this.code = code; return this; } /** * W2 Box 12 code. * @return code **/ @javax.annotation.Nullable @ApiModelProperty(value = "W2 Box 12 code.") public String getCode() { return code; } public void setCode(String code) { this.code = code; } public W2Box12Override amount(String amount) { this.amount = amount; return this; } /** * W2 Box 12 amount. * @return amount **/ @javax.annotation.Nullable @ApiModelProperty(value = "W2 Box 12 amount.") public String getAmount() { return amount; } public void setAmount(String amount) { this.amount = amount; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } W2Box12Override w2Box12Override = (W2Box12Override) o; return Objects.equals(this.code, w2Box12Override.code) && Objects.equals(this.amount, w2Box12Override.amount); } @Override public int hashCode() { return Objects.hash(code, amount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class W2Box12Override {\n"); sb.append(" code: ").append(toIndentedString(code)).append("\n"); sb.append(" amount: ").append(toIndentedString(amount)).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/AssetReportFilterRequest.java
src/main/java/com/plaid/client/model/AssetReportFilterRequest.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; /** * AssetReportFilterRequest defines the request schema for &#x60;/asset_report/filter&#x60; */ @ApiModel(description = "AssetReportFilterRequest defines the request schema for `/asset_report/filter`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AssetReportFilterRequest { 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_ASSET_REPORT_TOKEN = "asset_report_token"; @SerializedName(SERIALIZED_NAME_ASSET_REPORT_TOKEN) private String assetReportToken; public static final String SERIALIZED_NAME_ACCOUNT_IDS_TO_EXCLUDE = "account_ids_to_exclude"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS_TO_EXCLUDE) private List<String> accountIdsToExclude = new ArrayList<>(); public AssetReportFilterRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; 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 AssetReportFilterRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; 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 AssetReportFilterRequest assetReportToken(String assetReportToken) { this.assetReportToken = assetReportToken; return this; } /** * A token that can be provided to endpoints such as &#x60;/asset_report/get&#x60; or &#x60;/asset_report/pdf/get&#x60; to fetch or update an Asset Report. * @return assetReportToken **/ @ApiModelProperty(required = true, value = "A token that can be provided to endpoints such as `/asset_report/get` or `/asset_report/pdf/get` to fetch or update an Asset Report.") public String getAssetReportToken() { return assetReportToken; } public void setAssetReportToken(String assetReportToken) { this.assetReportToken = assetReportToken; } public AssetReportFilterRequest accountIdsToExclude(List<String> accountIdsToExclude) { this.accountIdsToExclude = accountIdsToExclude; return this; } public AssetReportFilterRequest addAccountIdsToExcludeItem(String accountIdsToExcludeItem) { this.accountIdsToExclude.add(accountIdsToExcludeItem); return this; } /** * The accounts to exclude from the Asset Report, identified by &#x60;account_id&#x60;. * @return accountIdsToExclude **/ @ApiModelProperty(required = true, value = "The accounts to exclude from the Asset Report, identified by `account_id`.") public List<String> getAccountIdsToExclude() { return accountIdsToExclude; } public void setAccountIdsToExclude(List<String> accountIdsToExclude) { this.accountIdsToExclude = accountIdsToExclude; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AssetReportFilterRequest assetReportFilterRequest = (AssetReportFilterRequest) o; return Objects.equals(this.clientId, assetReportFilterRequest.clientId) && Objects.equals(this.secret, assetReportFilterRequest.secret) && Objects.equals(this.assetReportToken, assetReportFilterRequest.assetReportToken) && Objects.equals(this.accountIdsToExclude, assetReportFilterRequest.accountIdsToExclude); } @Override public int hashCode() { return Objects.hash(clientId, secret, assetReportToken, accountIdsToExclude); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetReportFilterRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" assetReportToken: ").append(toIndentedString(assetReportToken)).append("\n"); sb.append(" accountIdsToExclude: ").append(toIndentedString(accountIdsToExclude)).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/WatchlistScreeningEntityListResponse.java
src/main/java/com/plaid/client/model/WatchlistScreeningEntityListResponse.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.EntityWatchlistScreening; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Paginated list of entity watchlist screenings */ @ApiModel(description = "Paginated list of entity watchlist screenings") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WatchlistScreeningEntityListResponse { public static final String SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENINGS = "entity_watchlist_screenings"; @SerializedName(SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENINGS) private List<EntityWatchlistScreening> entityWatchlistScreenings = 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_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public WatchlistScreeningEntityListResponse entityWatchlistScreenings(List<EntityWatchlistScreening> entityWatchlistScreenings) { this.entityWatchlistScreenings = entityWatchlistScreenings; return this; } public WatchlistScreeningEntityListResponse addEntityWatchlistScreeningsItem(EntityWatchlistScreening entityWatchlistScreeningsItem) { this.entityWatchlistScreenings.add(entityWatchlistScreeningsItem); return this; } /** * List of entity watchlist screening * @return entityWatchlistScreenings **/ @ApiModelProperty(required = true, value = "List of entity watchlist screening") public List<EntityWatchlistScreening> getEntityWatchlistScreenings() { return entityWatchlistScreenings; } public void setEntityWatchlistScreenings(List<EntityWatchlistScreening> entityWatchlistScreenings) { this.entityWatchlistScreenings = entityWatchlistScreenings; } public WatchlistScreeningEntityListResponse nextCursor(String nextCursor) { this.nextCursor = nextCursor; return this; } /** * An identifier that determines which page of results you receive. * @return nextCursor **/ @javax.annotation.Nullable @ApiModelProperty(example = "eyJkaXJlY3Rpb24iOiJuZXh0Iiwib2Zmc2V0IjoiMTU5NDM", required = true, value = "An identifier that determines which page of results you receive.") public String getNextCursor() { return nextCursor; } public void setNextCursor(String nextCursor) { this.nextCursor = nextCursor; } public WatchlistScreeningEntityListResponse 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; } WatchlistScreeningEntityListResponse watchlistScreeningEntityListResponse = (WatchlistScreeningEntityListResponse) o; return Objects.equals(this.entityWatchlistScreenings, watchlistScreeningEntityListResponse.entityWatchlistScreenings) && Objects.equals(this.nextCursor, watchlistScreeningEntityListResponse.nextCursor) && Objects.equals(this.requestId, watchlistScreeningEntityListResponse.requestId); } @Override public int hashCode() { return Objects.hash(entityWatchlistScreenings, nextCursor, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WatchlistScreeningEntityListResponse {\n"); sb.append(" entityWatchlistScreenings: ").append(toIndentedString(entityWatchlistScreenings)).append("\n"); sb.append(" nextCursor: ").append(toIndentedString(nextCursor)).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/ConsentEventsGetRequest.java
src/main/java/com/plaid/client/model/ConsentEventsGetRequest.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 a historical log of item consent events. */ @ApiModel(description = "Request to list a historical log of item consent events.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ConsentEventsGetRequest { 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 ConsentEventsGetRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; 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 ConsentEventsGetRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; 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 ConsentEventsGetRequest 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; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ConsentEventsGetRequest consentEventsGetRequest = (ConsentEventsGetRequest) o; return Objects.equals(this.clientId, consentEventsGetRequest.clientId) && Objects.equals(this.secret, consentEventsGetRequest.secret) && Objects.equals(this.accessToken, consentEventsGetRequest.accessToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, accessToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ConsentEventsGetRequest {\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/LinkTokenGetSessionsResponse.java
src/main/java/com/plaid/client/model/LinkTokenGetSessionsResponse.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.LinkEvent; import com.plaid.client.model.LinkSessionExit; import com.plaid.client.model.LinkSessionExitDeprecated; import com.plaid.client.model.LinkSessionResults; import com.plaid.client.model.LinkSessionSuccess; 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; /** * An object containing information about a link session. Session data will be provided for up to six hours after the session has ended. */ @ApiModel(description = "An object containing information about a link session. Session data will be provided for up to six hours after the session has ended.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkTokenGetSessionsResponse { 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_STARTED_AT = "started_at"; @SerializedName(SERIALIZED_NAME_STARTED_AT) private OffsetDateTime startedAt; public static final String SERIALIZED_NAME_FINISHED_AT = "finished_at"; @SerializedName(SERIALIZED_NAME_FINISHED_AT) private OffsetDateTime finishedAt; public static final String SERIALIZED_NAME_ON_SUCCESS = "on_success"; @SerializedName(SERIALIZED_NAME_ON_SUCCESS) private LinkSessionSuccess onSuccess; public static final String SERIALIZED_NAME_ON_EXIT = "on_exit"; @SerializedName(SERIALIZED_NAME_ON_EXIT) private LinkSessionExitDeprecated onExit; public static final String SERIALIZED_NAME_EXIT = "exit"; @SerializedName(SERIALIZED_NAME_EXIT) private LinkSessionExit exit; public static final String SERIALIZED_NAME_EVENTS = "events"; @SerializedName(SERIALIZED_NAME_EVENTS) private List<LinkEvent> events = null; public static final String SERIALIZED_NAME_RESULTS = "results"; @SerializedName(SERIALIZED_NAME_RESULTS) private LinkSessionResults results; public LinkTokenGetSessionsResponse linkSessionId(String linkSessionId) { this.linkSessionId = linkSessionId; return this; } /** * The unique ID for the link session. * @return linkSessionId **/ @ApiModelProperty(required = true, value = "The unique ID for the link session.") public String getLinkSessionId() { return linkSessionId; } public void setLinkSessionId(String linkSessionId) { this.linkSessionId = linkSessionId; } public LinkTokenGetSessionsResponse startedAt(OffsetDateTime startedAt) { this.startedAt = startedAt; return this; } /** * The timestamp at which the link session was first started, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format. * @return startedAt **/ @javax.annotation.Nullable @ApiModelProperty(value = "The timestamp at which the link session was first started, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format.") public OffsetDateTime getStartedAt() { return startedAt; } public void setStartedAt(OffsetDateTime startedAt) { this.startedAt = startedAt; } public LinkTokenGetSessionsResponse finishedAt(OffsetDateTime finishedAt) { this.finishedAt = finishedAt; return this; } /** * The timestamp at which the link session was finished, if available, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format. * @return finishedAt **/ @javax.annotation.Nullable @ApiModelProperty(value = "The timestamp at which the link session was finished, if available, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format.") public OffsetDateTime getFinishedAt() { return finishedAt; } public void setFinishedAt(OffsetDateTime finishedAt) { this.finishedAt = finishedAt; } public LinkTokenGetSessionsResponse onSuccess(LinkSessionSuccess onSuccess) { this.onSuccess = onSuccess; return this; } /** * Get onSuccess * @return onSuccess **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public LinkSessionSuccess getOnSuccess() { return onSuccess; } public void setOnSuccess(LinkSessionSuccess onSuccess) { this.onSuccess = onSuccess; } public LinkTokenGetSessionsResponse onExit(LinkSessionExitDeprecated onExit) { this.onExit = onExit; return this; } /** * Get onExit * @return onExit **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public LinkSessionExitDeprecated getOnExit() { return onExit; } public void setOnExit(LinkSessionExitDeprecated onExit) { this.onExit = onExit; } public LinkTokenGetSessionsResponse exit(LinkSessionExit exit) { this.exit = exit; return this; } /** * Get exit * @return exit **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public LinkSessionExit getExit() { return exit; } public void setExit(LinkSessionExit exit) { this.exit = exit; } public LinkTokenGetSessionsResponse events(List<LinkEvent> events) { this.events = events; return this; } public LinkTokenGetSessionsResponse addEventsItem(LinkEvent eventsItem) { if (this.events == null) { this.events = new ArrayList<>(); } this.events.add(eventsItem); return this; } /** * List of customer-related Link events * @return events **/ @javax.annotation.Nullable @ApiModelProperty(value = "List of customer-related Link events") public List<LinkEvent> getEvents() { return events; } public void setEvents(List<LinkEvent> events) { this.events = events; } public LinkTokenGetSessionsResponse results(LinkSessionResults results) { this.results = results; return this; } /** * Get results * @return results **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public LinkSessionResults getResults() { return results; } public void setResults(LinkSessionResults results) { this.results = results; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkTokenGetSessionsResponse linkTokenGetSessionsResponse = (LinkTokenGetSessionsResponse) o; return Objects.equals(this.linkSessionId, linkTokenGetSessionsResponse.linkSessionId) && Objects.equals(this.startedAt, linkTokenGetSessionsResponse.startedAt) && Objects.equals(this.finishedAt, linkTokenGetSessionsResponse.finishedAt) && Objects.equals(this.onSuccess, linkTokenGetSessionsResponse.onSuccess) && Objects.equals(this.onExit, linkTokenGetSessionsResponse.onExit) && Objects.equals(this.exit, linkTokenGetSessionsResponse.exit) && Objects.equals(this.events, linkTokenGetSessionsResponse.events) && Objects.equals(this.results, linkTokenGetSessionsResponse.results); } @Override public int hashCode() { return Objects.hash(linkSessionId, startedAt, finishedAt, onSuccess, onExit, exit, events, results); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkTokenGetSessionsResponse {\n"); sb.append(" linkSessionId: ").append(toIndentedString(linkSessionId)).append("\n"); sb.append(" startedAt: ").append(toIndentedString(startedAt)).append("\n"); sb.append(" finishedAt: ").append(toIndentedString(finishedAt)).append("\n"); sb.append(" onSuccess: ").append(toIndentedString(onSuccess)).append("\n"); sb.append(" onExit: ").append(toIndentedString(onExit)).append("\n"); sb.append(" exit: ").append(toIndentedString(exit)).append("\n"); sb.append(" events: ").append(toIndentedString(events)).append("\n"); sb.append(" results: ").append(toIndentedString(results)).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/EmailAddressMatchScore.java
src/main/java/com/plaid/client/model/EmailAddressMatchScore.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; /** * Score found by matching email provided by the API with the email on the account at the financial institution. 100 is a perfect match and 0 is a no match. If the account contains multiple owners, the maximum match score is filled. */ @ApiModel(description = "Score found by matching email provided by the API with the email on the account at the financial institution. 100 is a perfect match and 0 is a no match. If the account contains multiple owners, the maximum match score is filled.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class EmailAddressMatchScore { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) private Integer score; public EmailAddressMatchScore score(Integer score) { this.score = score; return this; } /** * Match score for normalized email. 100 is a perfect match, 99-70 is a partial match (matching the same email with different &#39;+&#39; extensions), anything below 70 is considered a mismatch. Typically, the match threshold should be set to a score of 70 or higher. If the email is missing from either the API or financial institution, this is null. * @return score **/ @javax.annotation.Nullable @ApiModelProperty(value = "Match score for normalized email. 100 is a perfect match, 99-70 is a partial match (matching the same email with different '+' extensions), anything below 70 is considered a mismatch. Typically, the match threshold should be set to a score of 70 or higher. If the email is missing from either the API or financial institution, this is null.") 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; } EmailAddressMatchScore emailAddressMatchScore = (EmailAddressMatchScore) o; return Objects.equals(this.score, emailAddressMatchScore.score); } @Override public int hashCode() { return Objects.hash(score); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class EmailAddressMatchScore {\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/InflowModel.java
src/main/java/com/plaid/client/model/InflowModel.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 &#x60;inflow_model&#x60; allows you to model a test account that receives regular income or make regular payments on a loan. Any transactions generated by the &#x60;inflow_model&#x60; will appear in addition to randomly generated test data or transactions specified by &#x60;override_accounts&#x60;. */ @ApiModel(description = "The `inflow_model` allows you to model a test account that receives regular income or make regular payments on a loan. Any transactions generated by the `inflow_model` will appear in addition to randomly generated test data or transactions specified by `override_accounts`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InflowModel { public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private String type; public static final String SERIALIZED_NAME_INCOME_AMOUNT = "income_amount"; @SerializedName(SERIALIZED_NAME_INCOME_AMOUNT) private Double incomeAmount; public static final String SERIALIZED_NAME_PAYMENT_DAY_OF_MONTH = "payment_day_of_month"; @SerializedName(SERIALIZED_NAME_PAYMENT_DAY_OF_MONTH) private Double paymentDayOfMonth; public static final String SERIALIZED_NAME_TRANSACTION_NAME = "transaction_name"; @SerializedName(SERIALIZED_NAME_TRANSACTION_NAME) private String transactionName; public static final String SERIALIZED_NAME_STATEMENT_DAY_OF_MONTH = "statement_day_of_month"; @SerializedName(SERIALIZED_NAME_STATEMENT_DAY_OF_MONTH) private String statementDayOfMonth; public InflowModel type(String type) { this.type = type; return this; } /** * Inflow model. One of the following: &#x60;none&#x60;: No income &#x60;monthly-income&#x60;: Income occurs once per month &#x60;monthly-balance-payment&#x60;: Pays off the balance on a liability account at the given statement day of month. &#x60;monthly-interest-only-payment&#x60;: Makes an interest-only payment on a liability account at the given statement day of month. Note that account types supported by Liabilities will accrue interest in the Sandbox. The types impacted are account type &#x60;credit&#x60; with subtype &#x60;credit&#x60; or &#x60;paypal&#x60;, and account type &#x60;loan&#x60; with subtype &#x60;student&#x60; or &#x60;mortgage&#x60;. * @return type **/ @ApiModelProperty(required = true, value = "Inflow model. One of the following: `none`: No income `monthly-income`: Income occurs once per month `monthly-balance-payment`: Pays off the balance on a liability account at the given statement day of month. `monthly-interest-only-payment`: Makes an interest-only payment on a liability account at the given statement day of month. Note that account types supported by Liabilities will accrue interest in the Sandbox. The types impacted are account type `credit` with subtype `credit` or `paypal`, and account type `loan` with subtype `student` or `mortgage`.") public String getType() { return type; } public void setType(String type) { this.type = type; } public InflowModel incomeAmount(Double incomeAmount) { this.incomeAmount = incomeAmount; return this; } /** * Amount of income per month. This value is required if &#x60;type&#x60; is &#x60;monthly-income&#x60;. * @return incomeAmount **/ @ApiModelProperty(required = true, value = "Amount of income per month. This value is required if `type` is `monthly-income`.") public Double getIncomeAmount() { return incomeAmount; } public void setIncomeAmount(Double incomeAmount) { this.incomeAmount = incomeAmount; } public InflowModel paymentDayOfMonth(Double paymentDayOfMonth) { this.paymentDayOfMonth = paymentDayOfMonth; return this; } /** * Number between 1 and 28, or &#x60;last&#x60; meaning the last day of the month. The day of the month on which the income transaction will appear. The name of the income transaction. This field is required if &#x60;type&#x60; is &#x60;monthly-income&#x60;, &#x60;monthly-balance-payment&#x60; or &#x60;monthly-interest-only-payment&#x60;. * @return paymentDayOfMonth **/ @ApiModelProperty(required = true, value = "Number between 1 and 28, or `last` meaning the last day of the month. The day of the month on which the income transaction will appear. The name of the income transaction. This field is required if `type` is `monthly-income`, `monthly-balance-payment` or `monthly-interest-only-payment`.") public Double getPaymentDayOfMonth() { return paymentDayOfMonth; } public void setPaymentDayOfMonth(Double paymentDayOfMonth) { this.paymentDayOfMonth = paymentDayOfMonth; } public InflowModel transactionName(String transactionName) { this.transactionName = transactionName; return this; } /** * The name of the income transaction. This field is required if &#x60;type&#x60; is &#x60;monthly-income&#x60;, &#x60;monthly-balance-payment&#x60; or &#x60;monthly-interest-only-payment&#x60;. * @return transactionName **/ @ApiModelProperty(required = true, value = "The name of the income transaction. This field is required if `type` is `monthly-income`, `monthly-balance-payment` or `monthly-interest-only-payment`.") public String getTransactionName() { return transactionName; } public void setTransactionName(String transactionName) { this.transactionName = transactionName; } public InflowModel statementDayOfMonth(String statementDayOfMonth) { this.statementDayOfMonth = statementDayOfMonth; return this; } /** * Number between 1 and 28, or &#x60;last&#x60; meaning the last day of the month. The day of the month on which the balance is calculated for the next payment. The name of the income transaction. This field is required if &#x60;type&#x60; is &#x60;monthly-balance-payment&#x60; or &#x60;monthly-interest-only-payment&#x60;. * @return statementDayOfMonth **/ @ApiModelProperty(required = true, value = "Number between 1 and 28, or `last` meaning the last day of the month. The day of the month on which the balance is calculated for the next payment. The name of the income transaction. This field is required if `type` is `monthly-balance-payment` or `monthly-interest-only-payment`.") public String getStatementDayOfMonth() { return statementDayOfMonth; } public void setStatementDayOfMonth(String statementDayOfMonth) { this.statementDayOfMonth = statementDayOfMonth; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } InflowModel inflowModel = (InflowModel) o; return Objects.equals(this.type, inflowModel.type) && Objects.equals(this.incomeAmount, inflowModel.incomeAmount) && Objects.equals(this.paymentDayOfMonth, inflowModel.paymentDayOfMonth) && Objects.equals(this.transactionName, inflowModel.transactionName) && Objects.equals(this.statementDayOfMonth, inflowModel.statementDayOfMonth); } @Override public int hashCode() { return Objects.hash(type, incomeAmount, paymentDayOfMonth, transactionName, statementDayOfMonth); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InflowModel {\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" incomeAmount: ").append(toIndentedString(incomeAmount)).append("\n"); sb.append(" paymentDayOfMonth: ").append(toIndentedString(paymentDayOfMonth)).append("\n"); sb.append(" transactionName: ").append(toIndentedString(transactionName)).append("\n"); sb.append(" statementDayOfMonth: ").append(toIndentedString(statementDayOfMonth)).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/TransferRefundFailure.java
src/main/java/com/plaid/client/model/TransferRefundFailure.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 failure reason if the event type for a refund is &#x60;\&quot;failed\&quot;&#x60; or &#x60;\&quot;returned\&quot;&#x60;. Null value otherwise. */ @ApiModel(description = "The failure reason if the event type for a refund is `\"failed\"` or `\"returned\"`. Null value otherwise.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferRefundFailure { public static final String SERIALIZED_NAME_FAILURE_CODE = "failure_code"; @SerializedName(SERIALIZED_NAME_FAILURE_CODE) private String failureCode; public static final String SERIALIZED_NAME_ACH_RETURN_CODE = "ach_return_code"; @SerializedName(SERIALIZED_NAME_ACH_RETURN_CODE) private String achReturnCode; public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) private String description; public TransferRefundFailure failureCode(String failureCode) { this.failureCode = failureCode; return this; } /** * The failure code, e.g. &#x60;R01&#x60;. A failure code will be provided if and only if the refund status is &#x60;returned&#x60;. See [ACH return codes](https://plaid.com/docs/errors/transfer/#ach-return-codes) for a full listing of ACH return codes and [RTP/RfP error codes](https://plaid.com/docs/errors/transfer/#rtprfp-error-codes) for RTP error codes. * @return failureCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The failure code, e.g. `R01`. A failure code will be provided if and only if the refund status is `returned`. See [ACH return codes](https://plaid.com/docs/errors/transfer/#ach-return-codes) for a full listing of ACH return codes and [RTP/RfP error codes](https://plaid.com/docs/errors/transfer/#rtprfp-error-codes) for RTP error codes.") public String getFailureCode() { return failureCode; } public void setFailureCode(String failureCode) { this.failureCode = failureCode; } public TransferRefundFailure achReturnCode(String achReturnCode) { this.achReturnCode = achReturnCode; return this; } /** * The ACH return code, e.g. &#x60;R01&#x60;. A return code will be provided if and only if the refund status is &#x60;returned&#x60;. For a full listing of ACH return codes, see [Transfer errors](https://plaid.com/docs/errors/transfer/#ach-return-codes). This field is deprecated in favor of the more versatile &#x60;failure_code&#x60;, which encompasses non-ACH failure codes as well. * @return achReturnCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ACH return code, e.g. `R01`. A return code will be provided if and only if the refund status is `returned`. For a full listing of ACH return codes, see [Transfer errors](https://plaid.com/docs/errors/transfer/#ach-return-codes). This field is deprecated in favor of the more versatile `failure_code`, which encompasses non-ACH failure codes as well.") public String getAchReturnCode() { return achReturnCode; } public void setAchReturnCode(String achReturnCode) { this.achReturnCode = achReturnCode; } public TransferRefundFailure description(String description) { this.description = description; return this; } /** * A human-readable description of the reason for the failure or reversal. * @return description **/ @javax.annotation.Nullable @ApiModelProperty(value = "A human-readable description of the reason for the failure or reversal.") 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; } TransferRefundFailure transferRefundFailure = (TransferRefundFailure) o; return Objects.equals(this.failureCode, transferRefundFailure.failureCode) && Objects.equals(this.achReturnCode, transferRefundFailure.achReturnCode) && Objects.equals(this.description, transferRefundFailure.description); } @Override public int hashCode() { return Objects.hash(failureCode, achReturnCode, description); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferRefundFailure {\n"); sb.append(" failureCode: ").append(toIndentedString(failureCode)).append("\n"); sb.append(" achReturnCode: ").append(toIndentedString(achReturnCode)).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/CashflowReportInsightsGetResponse.java
src/main/java/com/plaid/client/model/CashflowReportInsightsGetResponse.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.CashflowReportAccountInsights; import com.plaid.client.model.Item; 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; /** * CashflowReportInsightsGetResponse defines the response schema for &#x60;/cashflow_report/insights/get&#x60; */ @ApiModel(description = "CashflowReportInsightsGetResponse defines the response schema for `/cashflow_report/insights/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CashflowReportInsightsGetResponse { public static final String SERIALIZED_NAME_ITEM = "item"; @SerializedName(SERIALIZED_NAME_ITEM) private Item item; public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) private List<BusinessAccount> accounts = new ArrayList<>(); public static final String SERIALIZED_NAME_ACCOUNT_INSIGHTS = "account_insights"; @SerializedName(SERIALIZED_NAME_ACCOUNT_INSIGHTS) private CashflowReportAccountInsights accountInsights; public static final String SERIALIZED_NAME_LAST_GENERATED_TIME = "last_generated_time"; @SerializedName(SERIALIZED_NAME_LAST_GENERATED_TIME) private OffsetDateTime lastGeneratedTime; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public CashflowReportInsightsGetResponse 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 CashflowReportInsightsGetResponse accounts(List<BusinessAccount> accounts) { this.accounts = accounts; return this; } public CashflowReportInsightsGetResponse addAccountsItem(BusinessAccount accountsItem) { this.accounts.add(accountsItem); return this; } /** * An array containing the &#x60;accounts&#x60; associated with the Item for which transactions are being returned. Each transaction can be mapped to its corresponding account via the &#x60;account_id&#x60; 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 CashflowReportInsightsGetResponse accountInsights(CashflowReportAccountInsights accountInsights) { this.accountInsights = accountInsights; return this; } /** * Get accountInsights * @return accountInsights **/ @ApiModelProperty(required = true, value = "") public CashflowReportAccountInsights getAccountInsights() { return accountInsights; } public void setAccountInsights(CashflowReportAccountInsights accountInsights) { this.accountInsights = accountInsights; } public CashflowReportInsightsGetResponse lastGeneratedTime(OffsetDateTime lastGeneratedTime) { this.lastGeneratedTime = lastGeneratedTime; return this; } /** * Datetime of last cashflow report generation in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format ( &#x60;YYYY-MM-DDTHH:mm:ssZ&#x60; ) * @return lastGeneratedTime **/ @ApiModelProperty(required = true, value = "Datetime of last cashflow report generation in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format ( `YYYY-MM-DDTHH:mm:ssZ` )") public OffsetDateTime getLastGeneratedTime() { return lastGeneratedTime; } public void setLastGeneratedTime(OffsetDateTime lastGeneratedTime) { this.lastGeneratedTime = lastGeneratedTime; } public CashflowReportInsightsGetResponse 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; } CashflowReportInsightsGetResponse cashflowReportInsightsGetResponse = (CashflowReportInsightsGetResponse) o; return Objects.equals(this.item, cashflowReportInsightsGetResponse.item) && Objects.equals(this.accounts, cashflowReportInsightsGetResponse.accounts) && Objects.equals(this.accountInsights, cashflowReportInsightsGetResponse.accountInsights) && Objects.equals(this.lastGeneratedTime, cashflowReportInsightsGetResponse.lastGeneratedTime) && Objects.equals(this.requestId, cashflowReportInsightsGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(item, accounts, accountInsights, lastGeneratedTime, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CashflowReportInsightsGetResponse {\n"); sb.append(" item: ").append(toIndentedString(item)).append("\n"); sb.append(" accounts: ").append(toIndentedString(accounts)).append("\n"); sb.append(" accountInsights: ").append(toIndentedString(accountInsights)).append("\n"); sb.append(" lastGeneratedTime: ").append(toIndentedString(lastGeneratedTime)).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/BeaconUserGetRequest.java
src/main/java/com/plaid/client/model/BeaconUserGetRequest.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 input for fetching a Beacon User */ @ApiModel(description = "Request input for fetching a Beacon User") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconUserGetRequest { 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_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 BeaconUserGetRequest 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 BeaconUserGetRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; 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 BeaconUserGetRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; 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; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BeaconUserGetRequest beaconUserGetRequest = (BeaconUserGetRequest) o; return Objects.equals(this.beaconUserId, beaconUserGetRequest.beaconUserId) && Objects.equals(this.clientId, beaconUserGetRequest.clientId) && Objects.equals(this.secret, beaconUserGetRequest.secret); } @Override public int hashCode() { return Objects.hash(beaconUserId, clientId, secret); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconUserGetRequest {\n"); sb.append(" beaconUserId: ").append(toIndentedString(beaconUserId)).append("\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).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/CashflowReportMonthlySummary.java
src/main/java/com/plaid/client/model/CashflowReportMonthlySummary.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.CashflowReportMonthlySummaryAverageDailyEndingBalance; import com.plaid.client.model.CashflowReportMonthlySummaryAverageDailyInflowAmount; import com.plaid.client.model.CashflowReportMonthlySummaryAverageDailyNetCashflowAmount; import com.plaid.client.model.CashflowReportMonthlySummaryAverageDailyOutflowAmount; import com.plaid.client.model.CashflowReportMonthlySummaryEndingBalance; import com.plaid.client.model.CashflowReportMonthlySummaryStartingBalance; import com.plaid.client.model.CashflowReportMonthlySummaryTotalLoanPayment; import com.plaid.client.model.CashflowReportMonthlySummaryTotalPayroll; import com.plaid.client.model.CashflowReportMonthlySummaryTotalRevenue; import com.plaid.client.model.CashflowReportMonthlySummaryTotalVariableExpense; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.math.BigDecimal; import java.time.LocalDate; /** * Monthly summary statistics derived from transaction-level data. */ @ApiModel(description = "Monthly summary statistics derived from transaction-level data.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CashflowReportMonthlySummary { 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_STARTING_BALANCE = "starting_balance"; @SerializedName(SERIALIZED_NAME_STARTING_BALANCE) private CashflowReportMonthlySummaryStartingBalance startingBalance; public static final String SERIALIZED_NAME_ENDING_BALANCE = "ending_balance"; @SerializedName(SERIALIZED_NAME_ENDING_BALANCE) private CashflowReportMonthlySummaryEndingBalance endingBalance; public static final String SERIALIZED_NAME_AVERAGE_DAILY_ENDING_BALANCE = "average_daily_ending_balance"; @SerializedName(SERIALIZED_NAME_AVERAGE_DAILY_ENDING_BALANCE) private CashflowReportMonthlySummaryAverageDailyEndingBalance averageDailyEndingBalance; public static final String SERIALIZED_NAME_AVERAGE_DAILY_INFLOW_AMOUNT = "average_daily_inflow_amount"; @SerializedName(SERIALIZED_NAME_AVERAGE_DAILY_INFLOW_AMOUNT) private CashflowReportMonthlySummaryAverageDailyInflowAmount averageDailyInflowAmount; public static final String SERIALIZED_NAME_AVERAGE_DAILY_OUTFLOW_AMOUNT = "average_daily_outflow_amount"; @SerializedName(SERIALIZED_NAME_AVERAGE_DAILY_OUTFLOW_AMOUNT) private CashflowReportMonthlySummaryAverageDailyOutflowAmount averageDailyOutflowAmount; public static final String SERIALIZED_NAME_AVERAGE_DAILY_NET_CASHFLOW_AMOUNT = "average_daily_net_cashflow_amount"; @SerializedName(SERIALIZED_NAME_AVERAGE_DAILY_NET_CASHFLOW_AMOUNT) private CashflowReportMonthlySummaryAverageDailyNetCashflowAmount averageDailyNetCashflowAmount; public static final String SERIALIZED_NAME_AVERAGE_DAILY_INFLOW_TRANSACTION_COUNT = "average_daily_inflow_transaction_count"; @SerializedName(SERIALIZED_NAME_AVERAGE_DAILY_INFLOW_TRANSACTION_COUNT) private Double averageDailyInflowTransactionCount; public static final String SERIALIZED_NAME_AVERAGE_DAILY_OUTFLOW_TRANSACTION_COUNT = "average_daily_outflow_transaction_count"; @SerializedName(SERIALIZED_NAME_AVERAGE_DAILY_OUTFLOW_TRANSACTION_COUNT) private Double averageDailyOutflowTransactionCount; public static final String SERIALIZED_NAME_TOTAL_REVENUE = "total_revenue"; @SerializedName(SERIALIZED_NAME_TOTAL_REVENUE) private CashflowReportMonthlySummaryTotalRevenue totalRevenue; public static final String SERIALIZED_NAME_TOTAL_LOAN_PAYMENT = "total_loan_payment"; @SerializedName(SERIALIZED_NAME_TOTAL_LOAN_PAYMENT) private CashflowReportMonthlySummaryTotalLoanPayment totalLoanPayment; public static final String SERIALIZED_NAME_TOTAL_VARIABLE_EXPENSE = "total_variable_expense"; @SerializedName(SERIALIZED_NAME_TOTAL_VARIABLE_EXPENSE) private CashflowReportMonthlySummaryTotalVariableExpense totalVariableExpense; public static final String SERIALIZED_NAME_TOTAL_PAYROLL = "total_payroll"; @SerializedName(SERIALIZED_NAME_TOTAL_PAYROLL) private CashflowReportMonthlySummaryTotalPayroll totalPayroll; public static final String SERIALIZED_NAME_NSF_TRANSACTION_COUNT = "nsf_transaction_count"; @SerializedName(SERIALIZED_NAME_NSF_TRANSACTION_COUNT) private Integer nsfTransactionCount; public static final String SERIALIZED_NAME_OVERDRAFT_TRANSACTION_COUNT = "overdraft_transaction_count"; @SerializedName(SERIALIZED_NAME_OVERDRAFT_TRANSACTION_COUNT) private Integer overdraftTransactionCount; public static final String SERIALIZED_NAME_NEGATIVE_ENDING_BALANCE_DAY_COUNT = "negative_ending_balance_day_count"; @SerializedName(SERIALIZED_NAME_NEGATIVE_ENDING_BALANCE_DAY_COUNT) private Integer negativeEndingBalanceDayCount; public CashflowReportMonthlySummary startDate(LocalDate startDate) { this.startDate = startDate; return this; } /** * The start date of the period covered in this monthly summary. This date will be the first day of the month, unless the month being covered is a partial month because it is the first month included in the summary and the date range being requested does not begin with the first day of the month. The date will be returned in an ISO 8601 format (YYYY-MM-DD). * @return startDate **/ @ApiModelProperty(required = true, value = "The start date of the period covered in this monthly summary. This date will be the first day of the month, unless the month being covered is a partial month because it is the first month included in the summary and the date range being requested does not begin with the first day of the month. The date will be returned in an ISO 8601 format (YYYY-MM-DD).") public LocalDate getStartDate() { return startDate; } public void setStartDate(LocalDate startDate) { this.startDate = startDate; } public CashflowReportMonthlySummary endDate(LocalDate endDate) { this.endDate = endDate; return this; } /** * The end date of the period included in this monthly summary. This date will be the last day of the month, unless the month being covered is a partial month because it is the last month included in the summary and the date range being requested does not end with the last day of the month. The date will be returned in an ISO 8601 format (YYYY-MM-DD). * @return endDate **/ @ApiModelProperty(required = true, value = "The end date of the period included in this monthly summary. This date will be the last day of the month, unless the month being covered is a partial month because it is the last month included in the summary and the date range being requested does not end with the last day of the month. The date will be returned in an ISO 8601 format (YYYY-MM-DD).") public LocalDate getEndDate() { return endDate; } public void setEndDate(LocalDate endDate) { this.endDate = endDate; } public CashflowReportMonthlySummary startingBalance(CashflowReportMonthlySummaryStartingBalance startingBalance) { this.startingBalance = startingBalance; return this; } /** * Get startingBalance * @return startingBalance **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public CashflowReportMonthlySummaryStartingBalance getStartingBalance() { return startingBalance; } public void setStartingBalance(CashflowReportMonthlySummaryStartingBalance startingBalance) { this.startingBalance = startingBalance; } public CashflowReportMonthlySummary endingBalance(CashflowReportMonthlySummaryEndingBalance endingBalance) { this.endingBalance = endingBalance; return this; } /** * Get endingBalance * @return endingBalance **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public CashflowReportMonthlySummaryEndingBalance getEndingBalance() { return endingBalance; } public void setEndingBalance(CashflowReportMonthlySummaryEndingBalance endingBalance) { this.endingBalance = endingBalance; } public CashflowReportMonthlySummary averageDailyEndingBalance(CashflowReportMonthlySummaryAverageDailyEndingBalance averageDailyEndingBalance) { this.averageDailyEndingBalance = averageDailyEndingBalance; return this; } /** * Get averageDailyEndingBalance * @return averageDailyEndingBalance **/ @ApiModelProperty(required = true, value = "") public CashflowReportMonthlySummaryAverageDailyEndingBalance getAverageDailyEndingBalance() { return averageDailyEndingBalance; } public void setAverageDailyEndingBalance(CashflowReportMonthlySummaryAverageDailyEndingBalance averageDailyEndingBalance) { this.averageDailyEndingBalance = averageDailyEndingBalance; } public CashflowReportMonthlySummary averageDailyInflowAmount(CashflowReportMonthlySummaryAverageDailyInflowAmount averageDailyInflowAmount) { this.averageDailyInflowAmount = averageDailyInflowAmount; return this; } /** * Get averageDailyInflowAmount * @return averageDailyInflowAmount **/ @ApiModelProperty(required = true, value = "") public CashflowReportMonthlySummaryAverageDailyInflowAmount getAverageDailyInflowAmount() { return averageDailyInflowAmount; } public void setAverageDailyInflowAmount(CashflowReportMonthlySummaryAverageDailyInflowAmount averageDailyInflowAmount) { this.averageDailyInflowAmount = averageDailyInflowAmount; } public CashflowReportMonthlySummary averageDailyOutflowAmount(CashflowReportMonthlySummaryAverageDailyOutflowAmount averageDailyOutflowAmount) { this.averageDailyOutflowAmount = averageDailyOutflowAmount; return this; } /** * Get averageDailyOutflowAmount * @return averageDailyOutflowAmount **/ @ApiModelProperty(required = true, value = "") public CashflowReportMonthlySummaryAverageDailyOutflowAmount getAverageDailyOutflowAmount() { return averageDailyOutflowAmount; } public void setAverageDailyOutflowAmount(CashflowReportMonthlySummaryAverageDailyOutflowAmount averageDailyOutflowAmount) { this.averageDailyOutflowAmount = averageDailyOutflowAmount; } public CashflowReportMonthlySummary averageDailyNetCashflowAmount(CashflowReportMonthlySummaryAverageDailyNetCashflowAmount averageDailyNetCashflowAmount) { this.averageDailyNetCashflowAmount = averageDailyNetCashflowAmount; return this; } /** * Get averageDailyNetCashflowAmount * @return averageDailyNetCashflowAmount **/ @ApiModelProperty(required = true, value = "") public CashflowReportMonthlySummaryAverageDailyNetCashflowAmount getAverageDailyNetCashflowAmount() { return averageDailyNetCashflowAmount; } public void setAverageDailyNetCashflowAmount(CashflowReportMonthlySummaryAverageDailyNetCashflowAmount averageDailyNetCashflowAmount) { this.averageDailyNetCashflowAmount = averageDailyNetCashflowAmount; } public CashflowReportMonthlySummary averageDailyInflowTransactionCount(Double averageDailyInflowTransactionCount) { this.averageDailyInflowTransactionCount = averageDailyInflowTransactionCount; return this; } /** * The average count of the number of daily inflow transactions. Rounded to 2 decimal places. * @return averageDailyInflowTransactionCount **/ @ApiModelProperty(required = true, value = "The average count of the number of daily inflow transactions. Rounded to 2 decimal places.") public Double getAverageDailyInflowTransactionCount() { return averageDailyInflowTransactionCount; } public void setAverageDailyInflowTransactionCount(Double averageDailyInflowTransactionCount) { this.averageDailyInflowTransactionCount = averageDailyInflowTransactionCount; } public CashflowReportMonthlySummary averageDailyOutflowTransactionCount(Double averageDailyOutflowTransactionCount) { this.averageDailyOutflowTransactionCount = averageDailyOutflowTransactionCount; return this; } /** * The average count of the number of daily outflow transactions. Rounded to 2 decimal places. * @return averageDailyOutflowTransactionCount **/ @ApiModelProperty(required = true, value = "The average count of the number of daily outflow transactions. Rounded to 2 decimal places.") public Double getAverageDailyOutflowTransactionCount() { return averageDailyOutflowTransactionCount; } public void setAverageDailyOutflowTransactionCount(Double averageDailyOutflowTransactionCount) { this.averageDailyOutflowTransactionCount = averageDailyOutflowTransactionCount; } public CashflowReportMonthlySummary totalRevenue(CashflowReportMonthlySummaryTotalRevenue totalRevenue) { this.totalRevenue = totalRevenue; return this; } /** * Get totalRevenue * @return totalRevenue **/ @ApiModelProperty(required = true, value = "") public CashflowReportMonthlySummaryTotalRevenue getTotalRevenue() { return totalRevenue; } public void setTotalRevenue(CashflowReportMonthlySummaryTotalRevenue totalRevenue) { this.totalRevenue = totalRevenue; } public CashflowReportMonthlySummary totalLoanPayment(CashflowReportMonthlySummaryTotalLoanPayment totalLoanPayment) { this.totalLoanPayment = totalLoanPayment; return this; } /** * Get totalLoanPayment * @return totalLoanPayment **/ @ApiModelProperty(required = true, value = "") public CashflowReportMonthlySummaryTotalLoanPayment getTotalLoanPayment() { return totalLoanPayment; } public void setTotalLoanPayment(CashflowReportMonthlySummaryTotalLoanPayment totalLoanPayment) { this.totalLoanPayment = totalLoanPayment; } public CashflowReportMonthlySummary totalVariableExpense(CashflowReportMonthlySummaryTotalVariableExpense totalVariableExpense) { this.totalVariableExpense = totalVariableExpense; return this; } /** * Get totalVariableExpense * @return totalVariableExpense **/ @ApiModelProperty(required = true, value = "") public CashflowReportMonthlySummaryTotalVariableExpense getTotalVariableExpense() { return totalVariableExpense; } public void setTotalVariableExpense(CashflowReportMonthlySummaryTotalVariableExpense totalVariableExpense) { this.totalVariableExpense = totalVariableExpense; } public CashflowReportMonthlySummary totalPayroll(CashflowReportMonthlySummaryTotalPayroll totalPayroll) { this.totalPayroll = totalPayroll; return this; } /** * Get totalPayroll * @return totalPayroll **/ @ApiModelProperty(required = true, value = "") public CashflowReportMonthlySummaryTotalPayroll getTotalPayroll() { return totalPayroll; } public void setTotalPayroll(CashflowReportMonthlySummaryTotalPayroll totalPayroll) { this.totalPayroll = totalPayroll; } public CashflowReportMonthlySummary nsfTransactionCount(Integer nsfTransactionCount) { this.nsfTransactionCount = nsfTransactionCount; return this; } /** * The total number of all NSF transactions during this month. * @return nsfTransactionCount **/ @ApiModelProperty(required = true, value = "The total number of all NSF transactions during this month.") public Integer getNsfTransactionCount() { return nsfTransactionCount; } public void setNsfTransactionCount(Integer nsfTransactionCount) { this.nsfTransactionCount = nsfTransactionCount; } public CashflowReportMonthlySummary overdraftTransactionCount(Integer overdraftTransactionCount) { this.overdraftTransactionCount = overdraftTransactionCount; return this; } /** * The total number of all overdraft transactions during this month. * @return overdraftTransactionCount **/ @ApiModelProperty(required = true, value = "The total number of all overdraft transactions during this month.") public Integer getOverdraftTransactionCount() { return overdraftTransactionCount; } public void setOverdraftTransactionCount(Integer overdraftTransactionCount) { this.overdraftTransactionCount = overdraftTransactionCount; } public CashflowReportMonthlySummary negativeEndingBalanceDayCount(Integer negativeEndingBalanceDayCount) { this.negativeEndingBalanceDayCount = negativeEndingBalanceDayCount; return this; } /** * The number of days with a negative daily average ending balance. The daily average is calculated across all valid accounts. Values will be in the range [0, 31]. * @return negativeEndingBalanceDayCount **/ @ApiModelProperty(required = true, value = "The number of days with a negative daily average ending balance. The daily average is calculated across all valid accounts. Values will be in the range [0, 31].") public Integer getNegativeEndingBalanceDayCount() { return negativeEndingBalanceDayCount; } public void setNegativeEndingBalanceDayCount(Integer negativeEndingBalanceDayCount) { this.negativeEndingBalanceDayCount = negativeEndingBalanceDayCount; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CashflowReportMonthlySummary cashflowReportMonthlySummary = (CashflowReportMonthlySummary) o; return Objects.equals(this.startDate, cashflowReportMonthlySummary.startDate) && Objects.equals(this.endDate, cashflowReportMonthlySummary.endDate) && Objects.equals(this.startingBalance, cashflowReportMonthlySummary.startingBalance) && Objects.equals(this.endingBalance, cashflowReportMonthlySummary.endingBalance) && Objects.equals(this.averageDailyEndingBalance, cashflowReportMonthlySummary.averageDailyEndingBalance) && Objects.equals(this.averageDailyInflowAmount, cashflowReportMonthlySummary.averageDailyInflowAmount) && Objects.equals(this.averageDailyOutflowAmount, cashflowReportMonthlySummary.averageDailyOutflowAmount) && Objects.equals(this.averageDailyNetCashflowAmount, cashflowReportMonthlySummary.averageDailyNetCashflowAmount) && Objects.equals(this.averageDailyInflowTransactionCount, cashflowReportMonthlySummary.averageDailyInflowTransactionCount) && Objects.equals(this.averageDailyOutflowTransactionCount, cashflowReportMonthlySummary.averageDailyOutflowTransactionCount) && Objects.equals(this.totalRevenue, cashflowReportMonthlySummary.totalRevenue) && Objects.equals(this.totalLoanPayment, cashflowReportMonthlySummary.totalLoanPayment) && Objects.equals(this.totalVariableExpense, cashflowReportMonthlySummary.totalVariableExpense) && Objects.equals(this.totalPayroll, cashflowReportMonthlySummary.totalPayroll) && Objects.equals(this.nsfTransactionCount, cashflowReportMonthlySummary.nsfTransactionCount) && Objects.equals(this.overdraftTransactionCount, cashflowReportMonthlySummary.overdraftTransactionCount) && Objects.equals(this.negativeEndingBalanceDayCount, cashflowReportMonthlySummary.negativeEndingBalanceDayCount); } @Override public int hashCode() { return Objects.hash(startDate, endDate, startingBalance, endingBalance, averageDailyEndingBalance, averageDailyInflowAmount, averageDailyOutflowAmount, averageDailyNetCashflowAmount, averageDailyInflowTransactionCount, averageDailyOutflowTransactionCount, totalRevenue, totalLoanPayment, totalVariableExpense, totalPayroll, nsfTransactionCount, overdraftTransactionCount, negativeEndingBalanceDayCount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CashflowReportMonthlySummary {\n"); sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n"); sb.append(" endDate: ").append(toIndentedString(endDate)).append("\n"); sb.append(" startingBalance: ").append(toIndentedString(startingBalance)).append("\n"); sb.append(" endingBalance: ").append(toIndentedString(endingBalance)).append("\n"); sb.append(" averageDailyEndingBalance: ").append(toIndentedString(averageDailyEndingBalance)).append("\n"); sb.append(" averageDailyInflowAmount: ").append(toIndentedString(averageDailyInflowAmount)).append("\n"); sb.append(" averageDailyOutflowAmount: ").append(toIndentedString(averageDailyOutflowAmount)).append("\n"); sb.append(" averageDailyNetCashflowAmount: ").append(toIndentedString(averageDailyNetCashflowAmount)).append("\n"); sb.append(" averageDailyInflowTransactionCount: ").append(toIndentedString(averageDailyInflowTransactionCount)).append("\n"); sb.append(" averageDailyOutflowTransactionCount: ").append(toIndentedString(averageDailyOutflowTransactionCount)).append("\n"); sb.append(" totalRevenue: ").append(toIndentedString(totalRevenue)).append("\n"); sb.append(" totalLoanPayment: ").append(toIndentedString(totalLoanPayment)).append("\n"); sb.append(" totalVariableExpense: ").append(toIndentedString(totalVariableExpense)).append("\n"); sb.append(" totalPayroll: ").append(toIndentedString(totalPayroll)).append("\n"); sb.append(" nsfTransactionCount: ").append(toIndentedString(nsfTransactionCount)).append("\n"); sb.append(" overdraftTransactionCount: ").append(toIndentedString(overdraftTransactionCount)).append("\n"); sb.append(" negativeEndingBalanceDayCount: ").append(toIndentedString(negativeEndingBalanceDayCount)).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/PaymentInitiationPayment.java
src/main/java/com/plaid/client/model/PaymentInitiationPayment.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.ExternalPaymentRefundDetails; import com.plaid.client.model.ExternalPaymentScheduleGet; import com.plaid.client.model.PaymentAmount; import com.plaid.client.model.PaymentAmountRefunded; import com.plaid.client.model.PaymentInitiationPaymentStatus; import com.plaid.client.model.PaymentScheme; import com.plaid.client.model.PlaidError; import com.plaid.client.model.SenderBACSNullable; 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; /** * PaymentInitiationPayment defines a payment initiation payment */ @ApiModel(description = "PaymentInitiationPayment defines a payment initiation payment") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentInitiationPayment { public static final String SERIALIZED_NAME_PAYMENT_ID = "payment_id"; @SerializedName(SERIALIZED_NAME_PAYMENT_ID) private String paymentId; public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private PaymentAmount amount; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private PaymentInitiationPaymentStatus status; public static final String SERIALIZED_NAME_RECIPIENT_ID = "recipient_id"; @SerializedName(SERIALIZED_NAME_RECIPIENT_ID) private String recipientId; public static final String SERIALIZED_NAME_REFERENCE = "reference"; @SerializedName(SERIALIZED_NAME_REFERENCE) private String reference; public static final String SERIALIZED_NAME_ADJUSTED_REFERENCE = "adjusted_reference"; @SerializedName(SERIALIZED_NAME_ADJUSTED_REFERENCE) private String adjustedReference; public static final String SERIALIZED_NAME_LAST_STATUS_UPDATE = "last_status_update"; @SerializedName(SERIALIZED_NAME_LAST_STATUS_UPDATE) private OffsetDateTime lastStatusUpdate; public static final String SERIALIZED_NAME_SCHEDULE = "schedule"; @SerializedName(SERIALIZED_NAME_SCHEDULE) private ExternalPaymentScheduleGet schedule; public static final String SERIALIZED_NAME_REFUND_DETAILS = "refund_details"; @SerializedName(SERIALIZED_NAME_REFUND_DETAILS) private ExternalPaymentRefundDetails refundDetails; public static final String SERIALIZED_NAME_BACS = "bacs"; @SerializedName(SERIALIZED_NAME_BACS) private SenderBACSNullable bacs; public static final String SERIALIZED_NAME_IBAN = "iban"; @SerializedName(SERIALIZED_NAME_IBAN) private String iban; public static final String SERIALIZED_NAME_REFUND_IDS = "refund_ids"; @SerializedName(SERIALIZED_NAME_REFUND_IDS) private List<String> refundIds = null; public static final String SERIALIZED_NAME_AMOUNT_REFUNDED = "amount_refunded"; @SerializedName(SERIALIZED_NAME_AMOUNT_REFUNDED) private PaymentAmountRefunded amountRefunded; public static final String SERIALIZED_NAME_WALLET_ID = "wallet_id"; @SerializedName(SERIALIZED_NAME_WALLET_ID) private String walletId; public static final String SERIALIZED_NAME_SCHEME = "scheme"; @SerializedName(SERIALIZED_NAME_SCHEME) private PaymentScheme scheme; public static final String SERIALIZED_NAME_ADJUSTED_SCHEME = "adjusted_scheme"; @SerializedName(SERIALIZED_NAME_ADJUSTED_SCHEME) private PaymentScheme adjustedScheme; public static final String SERIALIZED_NAME_CONSENT_ID = "consent_id"; @SerializedName(SERIALIZED_NAME_CONSENT_ID) private String consentId; public static final String SERIALIZED_NAME_TRANSACTION_ID = "transaction_id"; @SerializedName(SERIALIZED_NAME_TRANSACTION_ID) private String transactionId; public static final String SERIALIZED_NAME_END_TO_END_ID = "end_to_end_id"; @SerializedName(SERIALIZED_NAME_END_TO_END_ID) private String endToEndId; public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private PlaidError error; public PaymentInitiationPayment paymentId(String paymentId) { this.paymentId = paymentId; return this; } /** * The ID of the payment. Like all Plaid identifiers, the &#x60;payment_id&#x60; is case sensitive. * @return paymentId **/ @ApiModelProperty(required = true, value = "The ID of the payment. Like all Plaid identifiers, the `payment_id` is case sensitive.") public String getPaymentId() { return paymentId; } public void setPaymentId(String paymentId) { this.paymentId = paymentId; } public PaymentInitiationPayment amount(PaymentAmount amount) { this.amount = amount; return this; } /** * Get amount * @return amount **/ @ApiModelProperty(required = true, value = "") public PaymentAmount getAmount() { return amount; } public void setAmount(PaymentAmount amount) { this.amount = amount; } public PaymentInitiationPayment status(PaymentInitiationPaymentStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public PaymentInitiationPaymentStatus getStatus() { return status; } public void setStatus(PaymentInitiationPaymentStatus status) { this.status = status; } public PaymentInitiationPayment recipientId(String recipientId) { this.recipientId = recipientId; return this; } /** * The ID of the recipient * @return recipientId **/ @ApiModelProperty(required = true, value = "The ID of the recipient") public String getRecipientId() { return recipientId; } public void setRecipientId(String recipientId) { this.recipientId = recipientId; } public PaymentInitiationPayment reference(String reference) { this.reference = reference; return this; } /** * A reference for the payment. * @return reference **/ @ApiModelProperty(required = true, value = "A reference for the payment.") public String getReference() { return reference; } public void setReference(String reference) { this.reference = reference; } public PaymentInitiationPayment adjustedReference(String adjustedReference) { this.adjustedReference = adjustedReference; return this; } /** * The value of the reference sent to the bank after adjustment to pass bank validation rules. * @return adjustedReference **/ @javax.annotation.Nullable @ApiModelProperty(value = "The value of the reference sent to the bank after adjustment to pass bank validation rules.") public String getAdjustedReference() { return adjustedReference; } public void setAdjustedReference(String adjustedReference) { this.adjustedReference = adjustedReference; } public PaymentInitiationPayment lastStatusUpdate(OffsetDateTime lastStatusUpdate) { this.lastStatusUpdate = lastStatusUpdate; return this; } /** * The date and time of the last time the &#x60;status&#x60; was updated, in IS0 8601 format * @return lastStatusUpdate **/ @ApiModelProperty(required = true, value = "The date and time of the last time the `status` was updated, in IS0 8601 format") public OffsetDateTime getLastStatusUpdate() { return lastStatusUpdate; } public void setLastStatusUpdate(OffsetDateTime lastStatusUpdate) { this.lastStatusUpdate = lastStatusUpdate; } public PaymentInitiationPayment schedule(ExternalPaymentScheduleGet schedule) { this.schedule = schedule; return this; } /** * Get schedule * @return schedule **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ExternalPaymentScheduleGet getSchedule() { return schedule; } public void setSchedule(ExternalPaymentScheduleGet schedule) { this.schedule = schedule; } public PaymentInitiationPayment refundDetails(ExternalPaymentRefundDetails refundDetails) { this.refundDetails = refundDetails; return this; } /** * Get refundDetails * @return refundDetails **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ExternalPaymentRefundDetails getRefundDetails() { return refundDetails; } public void setRefundDetails(ExternalPaymentRefundDetails refundDetails) { this.refundDetails = refundDetails; } public PaymentInitiationPayment bacs(SenderBACSNullable bacs) { this.bacs = bacs; return this; } /** * Get bacs * @return bacs **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public SenderBACSNullable getBacs() { return bacs; } public void setBacs(SenderBACSNullable bacs) { this.bacs = bacs; } public PaymentInitiationPayment iban(String iban) { this.iban = iban; return this; } /** * The International Bank Account Number (IBAN) for the sender, if specified in the &#x60;/payment_initiation/payment/create&#x60; call. * @return iban **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The International Bank Account Number (IBAN) for the sender, if specified in the `/payment_initiation/payment/create` call.") public String getIban() { return iban; } public void setIban(String iban) { this.iban = iban; } public PaymentInitiationPayment refundIds(List<String> refundIds) { this.refundIds = refundIds; return this; } public PaymentInitiationPayment addRefundIdsItem(String refundIdsItem) { if (this.refundIds == null) { this.refundIds = new ArrayList<>(); } this.refundIds.add(refundIdsItem); return this; } /** * Refund IDs associated with the payment. * @return refundIds **/ @javax.annotation.Nullable @ApiModelProperty(value = "Refund IDs associated with the payment.") public List<String> getRefundIds() { return refundIds; } public void setRefundIds(List<String> refundIds) { this.refundIds = refundIds; } public PaymentInitiationPayment amountRefunded(PaymentAmountRefunded amountRefunded) { this.amountRefunded = amountRefunded; return this; } /** * Get amountRefunded * @return amountRefunded **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaymentAmountRefunded getAmountRefunded() { return amountRefunded; } public void setAmountRefunded(PaymentAmountRefunded amountRefunded) { this.amountRefunded = amountRefunded; } public PaymentInitiationPayment walletId(String walletId) { this.walletId = walletId; return this; } /** * The EMI (E-Money Institution) wallet that this payment is associated with, if any. This wallet is used as an intermediary account to enable Plaid to reconcile the settlement of funds for Payment Initiation requests. * @return walletId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The EMI (E-Money Institution) wallet that this payment is associated with, if any. This wallet is used as an intermediary account to enable Plaid to reconcile the settlement of funds for Payment Initiation requests.") public String getWalletId() { return walletId; } public void setWalletId(String walletId) { this.walletId = walletId; } public PaymentInitiationPayment scheme(PaymentScheme scheme) { this.scheme = scheme; return this; } /** * Get scheme * @return scheme **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaymentScheme getScheme() { return scheme; } public void setScheme(PaymentScheme scheme) { this.scheme = scheme; } public PaymentInitiationPayment adjustedScheme(PaymentScheme adjustedScheme) { this.adjustedScheme = adjustedScheme; return this; } /** * Get adjustedScheme * @return adjustedScheme **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaymentScheme getAdjustedScheme() { return adjustedScheme; } public void setAdjustedScheme(PaymentScheme adjustedScheme) { this.adjustedScheme = adjustedScheme; } public PaymentInitiationPayment consentId(String consentId) { this.consentId = consentId; return this; } /** * The payment consent ID that this payment was initiated with. Is present only when payment was initiated using the payment consent. * @return consentId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The payment consent ID that this payment was initiated with. Is present only when payment was initiated using the payment consent.") public String getConsentId() { return consentId; } public void setConsentId(String consentId) { this.consentId = consentId; } public PaymentInitiationPayment transactionId(String transactionId) { this.transactionId = transactionId; return this; } /** * The transaction ID that this payment is associated with, if any. This is present only when a payment was initiated using virtual accounts. * @return transactionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The transaction ID that this payment is associated with, if any. This is present only when a payment was initiated using virtual accounts.") public String getTransactionId() { return transactionId; } public void setTransactionId(String transactionId) { this.transactionId = transactionId; } public PaymentInitiationPayment endToEndId(String endToEndId) { this.endToEndId = endToEndId; return this; } /** * A unique identifier assigned by Plaid to each payment for tracking and reconciliation purposes. Note: Not all banks handle &#x60;end_to_end_id&#x60; consistently. To ensure accurate matching, clients should convert both the incoming &#x60;end_to_end_id&#x60; and the one provided by Plaid to the same case (either lower or upper) before comparison. For virtual account payments, Plaid manages this field automatically. * @return endToEndId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique identifier assigned by Plaid to each payment for tracking and reconciliation purposes. Note: Not all banks handle `end_to_end_id` consistently. To ensure accurate matching, clients should convert both the incoming `end_to_end_id` and the one provided by Plaid to the same case (either lower or upper) before comparison. For virtual account payments, Plaid manages this field automatically.") public String getEndToEndId() { return endToEndId; } public void setEndToEndId(String endToEndId) { this.endToEndId = endToEndId; } public PaymentInitiationPayment error(PlaidError error) { this.error = error; return this; } /** * Get error * @return error **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PlaidError getError() { return error; } public void setError(PlaidError error) { this.error = error; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaymentInitiationPayment paymentInitiationPayment = (PaymentInitiationPayment) o; return Objects.equals(this.paymentId, paymentInitiationPayment.paymentId) && Objects.equals(this.amount, paymentInitiationPayment.amount) && Objects.equals(this.status, paymentInitiationPayment.status) && Objects.equals(this.recipientId, paymentInitiationPayment.recipientId) && Objects.equals(this.reference, paymentInitiationPayment.reference) && Objects.equals(this.adjustedReference, paymentInitiationPayment.adjustedReference) && Objects.equals(this.lastStatusUpdate, paymentInitiationPayment.lastStatusUpdate) && Objects.equals(this.schedule, paymentInitiationPayment.schedule) && Objects.equals(this.refundDetails, paymentInitiationPayment.refundDetails) && Objects.equals(this.bacs, paymentInitiationPayment.bacs) && Objects.equals(this.iban, paymentInitiationPayment.iban) && Objects.equals(this.refundIds, paymentInitiationPayment.refundIds) && Objects.equals(this.amountRefunded, paymentInitiationPayment.amountRefunded) && Objects.equals(this.walletId, paymentInitiationPayment.walletId) && Objects.equals(this.scheme, paymentInitiationPayment.scheme) && Objects.equals(this.adjustedScheme, paymentInitiationPayment.adjustedScheme) && Objects.equals(this.consentId, paymentInitiationPayment.consentId) && Objects.equals(this.transactionId, paymentInitiationPayment.transactionId) && Objects.equals(this.endToEndId, paymentInitiationPayment.endToEndId) && Objects.equals(this.error, paymentInitiationPayment.error); } @Override public int hashCode() { return Objects.hash(paymentId, amount, status, recipientId, reference, adjustedReference, lastStatusUpdate, schedule, refundDetails, bacs, iban, refundIds, amountRefunded, walletId, scheme, adjustedScheme, consentId, transactionId, endToEndId, error); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentInitiationPayment {\n"); sb.append(" paymentId: ").append(toIndentedString(paymentId)).append("\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" recipientId: ").append(toIndentedString(recipientId)).append("\n"); sb.append(" reference: ").append(toIndentedString(reference)).append("\n"); sb.append(" adjustedReference: ").append(toIndentedString(adjustedReference)).append("\n"); sb.append(" lastStatusUpdate: ").append(toIndentedString(lastStatusUpdate)).append("\n"); sb.append(" schedule: ").append(toIndentedString(schedule)).append("\n"); sb.append(" refundDetails: ").append(toIndentedString(refundDetails)).append("\n"); sb.append(" bacs: ").append(toIndentedString(bacs)).append("\n"); sb.append(" iban: ").append(toIndentedString(iban)).append("\n"); sb.append(" refundIds: ").append(toIndentedString(refundIds)).append("\n"); sb.append(" amountRefunded: ").append(toIndentedString(amountRefunded)).append("\n"); sb.append(" walletId: ").append(toIndentedString(walletId)).append("\n"); sb.append(" scheme: ").append(toIndentedString(scheme)).append("\n"); sb.append(" adjustedScheme: ").append(toIndentedString(adjustedScheme)).append("\n"); sb.append(" consentId: ").append(toIndentedString(consentId)).append("\n"); sb.append(" transactionId: ").append(toIndentedString(transactionId)).append("\n"); sb.append(" endToEndId: ").append(toIndentedString(endToEndId)).append("\n"); sb.append(" error: ").append(toIndentedString(error)).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/UserStatedIncomeSourceFrequency.java
src/main/java/com/plaid/client/model/UserStatedIncomeSourceFrequency.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 pay frequency of a specified income source */ @JsonAdapter(UserStatedIncomeSourceFrequency.Adapter.class) public enum UserStatedIncomeSourceFrequency { UNKNOWN("UNKNOWN"), WEEKLY("WEEKLY"), BIWEEKLY("BIWEEKLY"), SEMI_MONTHLY("SEMI_MONTHLY"), MONTHLY("MONTHLY"), // 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; UserStatedIncomeSourceFrequency(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static UserStatedIncomeSourceFrequency fromValue(String value) { for (UserStatedIncomeSourceFrequency b : UserStatedIncomeSourceFrequency.values()) { if (b.value.equals(value)) { return b; } } return UserStatedIncomeSourceFrequency.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<UserStatedIncomeSourceFrequency> { @Override public void write(final JsonWriter jsonWriter, final UserStatedIncomeSourceFrequency enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public UserStatedIncomeSourceFrequency read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return UserStatedIncomeSourceFrequency.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/EntityWatchlistSearchTerms.java
src/main/java/com/plaid/client/model/EntityWatchlistSearchTerms.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.net.URI; /** * Search inputs for creating an entity watchlist screening */ @ApiModel(description = "Search inputs for creating an entity watchlist screening") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class EntityWatchlistSearchTerms { public static final String SERIALIZED_NAME_ENTITY_WATCHLIST_PROGRAM_ID = "entity_watchlist_program_id"; @SerializedName(SERIALIZED_NAME_ENTITY_WATCHLIST_PROGRAM_ID) private String entityWatchlistProgramId; public static final String SERIALIZED_NAME_LEGAL_NAME = "legal_name"; @SerializedName(SERIALIZED_NAME_LEGAL_NAME) private String legalName; public static final String SERIALIZED_NAME_DOCUMENT_NUMBER = "document_number"; @SerializedName(SERIALIZED_NAME_DOCUMENT_NUMBER) private String documentNumber; public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) private String emailAddress; public static final String SERIALIZED_NAME_COUNTRY = "country"; @SerializedName(SERIALIZED_NAME_COUNTRY) private String country; public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBER) private String phoneNumber; public static final String SERIALIZED_NAME_URL = "url"; @SerializedName(SERIALIZED_NAME_URL) private URI url; public EntityWatchlistSearchTerms entityWatchlistProgramId(String entityWatchlistProgramId) { this.entityWatchlistProgramId = entityWatchlistProgramId; return this; } /** * ID of the associated entity program. * @return entityWatchlistProgramId **/ @ApiModelProperty(example = "entprg_2eRPsDnL66rZ7H", required = true, value = "ID of the associated entity program.") public String getEntityWatchlistProgramId() { return entityWatchlistProgramId; } public void setEntityWatchlistProgramId(String entityWatchlistProgramId) { this.entityWatchlistProgramId = entityWatchlistProgramId; } public EntityWatchlistSearchTerms legalName(String legalName) { this.legalName = legalName; return this; } /** * The name of the organization being screened. Must have at least one alphabetical character, have a maximum length of 100 characters, and not include leading or trailing spaces. * @return legalName **/ @ApiModelProperty(example = "Al-Qaida", required = true, value = "The name of the organization being screened. Must have at least one alphabetical character, have a maximum length of 100 characters, and not include leading or trailing spaces.") public String getLegalName() { return legalName; } public void setLegalName(String legalName) { this.legalName = legalName; } public EntityWatchlistSearchTerms documentNumber(String documentNumber) { this.documentNumber = documentNumber; return this; } /** * The numeric or alphanumeric identifier associated with this document. Must be between 4 and 32 characters long, and cannot have leading or trailing spaces. * @return documentNumber **/ @javax.annotation.Nullable @ApiModelProperty(example = "C31195855", value = "The numeric or alphanumeric identifier associated with this document. Must be between 4 and 32 characters long, and cannot have leading or trailing spaces.") public String getDocumentNumber() { return documentNumber; } public void setDocumentNumber(String documentNumber) { this.documentNumber = documentNumber; } public EntityWatchlistSearchTerms 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 EntityWatchlistSearchTerms country(String country) { this.country = country; return this; } /** * Valid, capitalized, two-letter ISO code representing the country of this object. Must be in ISO 3166-1 alpha-2 form. * @return country **/ @javax.annotation.Nullable @ApiModelProperty(example = "US", value = "Valid, capitalized, two-letter ISO code representing the country of this object. Must be in ISO 3166-1 alpha-2 form.") public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public EntityWatchlistSearchTerms phoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; return this; } /** * A phone number in E.164 format. * @return phoneNumber **/ @javax.annotation.Nullable @ApiModelProperty(example = "+14025671234", value = "A phone number in E.164 format.") public String getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } public EntityWatchlistSearchTerms url(URI url) { this.url = url; return this; } /** * An &#39;http&#39; or &#39;https&#39; URL (must begin with either of those). * @return url **/ @javax.annotation.Nullable @ApiModelProperty(example = "https://example.com", value = "An 'http' or 'https' URL (must begin with either of those).") public URI getUrl() { return url; } public void setUrl(URI url) { this.url = url; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } EntityWatchlistSearchTerms entityWatchlistSearchTerms = (EntityWatchlistSearchTerms) o; return Objects.equals(this.entityWatchlistProgramId, entityWatchlistSearchTerms.entityWatchlistProgramId) && Objects.equals(this.legalName, entityWatchlistSearchTerms.legalName) && Objects.equals(this.documentNumber, entityWatchlistSearchTerms.documentNumber) && Objects.equals(this.emailAddress, entityWatchlistSearchTerms.emailAddress) && Objects.equals(this.country, entityWatchlistSearchTerms.country) && Objects.equals(this.phoneNumber, entityWatchlistSearchTerms.phoneNumber) && Objects.equals(this.url, entityWatchlistSearchTerms.url); } @Override public int hashCode() { return Objects.hash(entityWatchlistProgramId, legalName, documentNumber, emailAddress, country, phoneNumber, url); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class EntityWatchlistSearchTerms {\n"); sb.append(" entityWatchlistProgramId: ").append(toIndentedString(entityWatchlistProgramId)).append("\n"); sb.append(" legalName: ").append(toIndentedString(legalName)).append("\n"); sb.append(" documentNumber: ").append(toIndentedString(documentNumber)).append("\n"); sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n"); sb.append(" country: ").append(toIndentedString(country)).append("\n"); sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n"); sb.append(" url: ").append(toIndentedString(url)).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/PayPeriodDetails.java
src/main/java/com/plaid/client/model/PayPeriodDetails.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.DistributionBreakdown; import com.plaid.client.model.PayPeriodDetailsPayFrequency; 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; /** * Details about the pay period. */ @ApiModel(description = "Details about the pay period.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PayPeriodDetails { public static final String SERIALIZED_NAME_CHECK_AMOUNT = "check_amount"; @SerializedName(SERIALIZED_NAME_CHECK_AMOUNT) private Double checkAmount; public static final String SERIALIZED_NAME_DISTRIBUTION_BREAKDOWN = "distribution_breakdown"; @SerializedName(SERIALIZED_NAME_DISTRIBUTION_BREAKDOWN) private List<DistributionBreakdown> distributionBreakdown = null; public static final String SERIALIZED_NAME_END_DATE = "end_date"; @SerializedName(SERIALIZED_NAME_END_DATE) private LocalDate endDate; public static final String SERIALIZED_NAME_GROSS_EARNINGS = "gross_earnings"; @SerializedName(SERIALIZED_NAME_GROSS_EARNINGS) private Double grossEarnings; public static final String SERIALIZED_NAME_PAY_DATE = "pay_date"; @SerializedName(SERIALIZED_NAME_PAY_DATE) private LocalDate payDate; public static final String SERIALIZED_NAME_PAY_FREQUENCY = "pay_frequency"; @SerializedName(SERIALIZED_NAME_PAY_FREQUENCY) private PayPeriodDetailsPayFrequency payFrequency; public static final String SERIALIZED_NAME_PAY_DAY = "pay_day"; @SerializedName(SERIALIZED_NAME_PAY_DAY) private LocalDate payDay; public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) private LocalDate startDate; public PayPeriodDetails checkAmount(Double checkAmount) { this.checkAmount = checkAmount; return this; } /** * The amount of the paycheck. * @return checkAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The amount of the paycheck.") public Double getCheckAmount() { return checkAmount; } public void setCheckAmount(Double checkAmount) { this.checkAmount = checkAmount; } public PayPeriodDetails distributionBreakdown(List<DistributionBreakdown> distributionBreakdown) { this.distributionBreakdown = distributionBreakdown; return this; } public PayPeriodDetails addDistributionBreakdownItem(DistributionBreakdown distributionBreakdownItem) { if (this.distributionBreakdown == null) { this.distributionBreakdown = new ArrayList<>(); } this.distributionBreakdown.add(distributionBreakdownItem); return this; } /** * Get distributionBreakdown * @return distributionBreakdown **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public List<DistributionBreakdown> getDistributionBreakdown() { return distributionBreakdown; } public void setDistributionBreakdown(List<DistributionBreakdown> distributionBreakdown) { this.distributionBreakdown = distributionBreakdown; } public PayPeriodDetails endDate(LocalDate endDate) { this.endDate = endDate; return this; } /** * The pay period end date, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format: \&quot;yyyy-mm-dd\&quot;. * @return endDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The pay period end date, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format: \"yyyy-mm-dd\".") public LocalDate getEndDate() { return endDate; } public void setEndDate(LocalDate endDate) { this.endDate = endDate; } public PayPeriodDetails grossEarnings(Double grossEarnings) { this.grossEarnings = grossEarnings; return this; } /** * Total earnings before tax/deductions. * @return grossEarnings **/ @javax.annotation.Nullable @ApiModelProperty(value = "Total earnings before tax/deductions.") public Double getGrossEarnings() { return grossEarnings; } public void setGrossEarnings(Double grossEarnings) { this.grossEarnings = grossEarnings; } public PayPeriodDetails payDate(LocalDate payDate) { this.payDate = payDate; return this; } /** * The date on which the paystub was issued, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (\&quot;yyyy-mm-dd\&quot;). * @return payDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date on which the paystub was issued, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (\"yyyy-mm-dd\").") public LocalDate getPayDate() { return payDate; } public void setPayDate(LocalDate payDate) { this.payDate = payDate; } public PayPeriodDetails payFrequency(PayPeriodDetailsPayFrequency payFrequency) { this.payFrequency = payFrequency; return this; } /** * Get payFrequency * @return payFrequency **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PayPeriodDetailsPayFrequency getPayFrequency() { return payFrequency; } public void setPayFrequency(PayPeriodDetailsPayFrequency payFrequency) { this.payFrequency = payFrequency; } public PayPeriodDetails payDay(LocalDate payDay) { this.payDay = payDay; return this; } /** * The date on which the paystub was issued, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (\&quot;yyyy-mm-dd\&quot;). * @return payDay **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date on which the paystub was issued, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (\"yyyy-mm-dd\").") public LocalDate getPayDay() { return payDay; } public void setPayDay(LocalDate payDay) { this.payDay = payDay; } public PayPeriodDetails startDate(LocalDate startDate) { this.startDate = startDate; return this; } /** * The pay period start date, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format: \&quot;yyyy-mm-dd\&quot;. * @return startDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The pay period start date, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format: \"yyyy-mm-dd\".") public LocalDate getStartDate() { return startDate; } public void setStartDate(LocalDate startDate) { this.startDate = startDate; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PayPeriodDetails payPeriodDetails = (PayPeriodDetails) o; return Objects.equals(this.checkAmount, payPeriodDetails.checkAmount) && Objects.equals(this.distributionBreakdown, payPeriodDetails.distributionBreakdown) && Objects.equals(this.endDate, payPeriodDetails.endDate) && Objects.equals(this.grossEarnings, payPeriodDetails.grossEarnings) && Objects.equals(this.payDate, payPeriodDetails.payDate) && Objects.equals(this.payFrequency, payPeriodDetails.payFrequency) && Objects.equals(this.payDay, payPeriodDetails.payDay) && Objects.equals(this.startDate, payPeriodDetails.startDate); } @Override public int hashCode() { return Objects.hash(checkAmount, distributionBreakdown, endDate, grossEarnings, payDate, payFrequency, payDay, startDate); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PayPeriodDetails {\n"); sb.append(" checkAmount: ").append(toIndentedString(checkAmount)).append("\n"); sb.append(" distributionBreakdown: ").append(toIndentedString(distributionBreakdown)).append("\n"); sb.append(" endDate: ").append(toIndentedString(endDate)).append("\n"); sb.append(" grossEarnings: ").append(toIndentedString(grossEarnings)).append("\n"); sb.append(" payDate: ").append(toIndentedString(payDate)).append("\n"); sb.append(" payFrequency: ").append(toIndentedString(payFrequency)).append("\n"); sb.append(" payDay: ").append(toIndentedString(payDay)).append("\n"); sb.append(" startDate: ").append(toIndentedString(startDate)).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/WalletTransactionListRequestOptions.java
src/main/java/com/plaid/client/model/WalletTransactionListRequestOptions.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; /** * Additional wallet transaction options */ @ApiModel(description = "Additional wallet transaction options") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WalletTransactionListRequestOptions { public static final String SERIALIZED_NAME_START_TIME = "start_time"; @SerializedName(SERIALIZED_NAME_START_TIME) private OffsetDateTime startTime; public static final String SERIALIZED_NAME_END_TIME = "end_time"; @SerializedName(SERIALIZED_NAME_END_TIME) private OffsetDateTime endTime; public WalletTransactionListRequestOptions startTime(OffsetDateTime startTime) { this.startTime = startTime; return this; } /** * Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DDThh:mm:ssZ) for filtering transactions, inclusive of the provided date. * @return startTime **/ @javax.annotation.Nullable @ApiModelProperty(value = "Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DDThh:mm:ssZ) for filtering transactions, inclusive of the provided date.") public OffsetDateTime getStartTime() { return startTime; } public void setStartTime(OffsetDateTime startTime) { this.startTime = startTime; } public WalletTransactionListRequestOptions endTime(OffsetDateTime endTime) { this.endTime = endTime; return this; } /** * Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DDThh:mm:ssZ) for filtering transactions, inclusive of the provided date. * @return endTime **/ @javax.annotation.Nullable @ApiModelProperty(value = "Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DDThh:mm:ssZ) for filtering transactions, inclusive of the provided date.") public OffsetDateTime getEndTime() { return endTime; } public void setEndTime(OffsetDateTime endTime) { this.endTime = endTime; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } WalletTransactionListRequestOptions walletTransactionListRequestOptions = (WalletTransactionListRequestOptions) o; return Objects.equals(this.startTime, walletTransactionListRequestOptions.startTime) && Objects.equals(this.endTime, walletTransactionListRequestOptions.endTime); } @Override public int hashCode() { return Objects.hash(startTime, endTime); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WalletTransactionListRequestOptions {\n"); sb.append(" startTime: ").append(toIndentedString(startTime)).append("\n"); sb.append(" endTime: ").append(toIndentedString(endTime)).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/SandboxTransferTestClockCreateRequest.java
src/main/java/com/plaid/client/model/SandboxTransferTestClockCreateRequest.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 &#x60;/sandbox/transfer/test_clock/create&#x60; */ @ApiModel(description = "Defines the request schema for `/sandbox/transfer/test_clock/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SandboxTransferTestClockCreateRequest { 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_VIRTUAL_TIME = "virtual_time"; @SerializedName(SERIALIZED_NAME_VIRTUAL_TIME) private OffsetDateTime virtualTime; public SandboxTransferTestClockCreateRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; 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 SandboxTransferTestClockCreateRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; 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 SandboxTransferTestClockCreateRequest virtualTime(OffsetDateTime virtualTime) { this.virtualTime = virtualTime; return this; } /** * The virtual timestamp on the test clock. If not provided, the current timestamp will be used. This will be of the form &#x60;2006-01-02T15:04:05Z&#x60;. * @return virtualTime **/ @javax.annotation.Nullable @ApiModelProperty(value = "The virtual timestamp on the test clock. If not provided, the current timestamp will be used. This will be of the form `2006-01-02T15:04:05Z`.") public OffsetDateTime getVirtualTime() { return virtualTime; } public void setVirtualTime(OffsetDateTime virtualTime) { this.virtualTime = virtualTime; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SandboxTransferTestClockCreateRequest sandboxTransferTestClockCreateRequest = (SandboxTransferTestClockCreateRequest) o; return Objects.equals(this.clientId, sandboxTransferTestClockCreateRequest.clientId) && Objects.equals(this.secret, sandboxTransferTestClockCreateRequest.secret) && Objects.equals(this.virtualTime, sandboxTransferTestClockCreateRequest.virtualTime); } @Override public int hashCode() { return Objects.hash(clientId, secret, virtualTime); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SandboxTransferTestClockCreateRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" virtualTime: ").append(toIndentedString(virtualTime)).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/AAMVAMatchResult.java
src/main/java/com/plaid/client/model/AAMVAMatchResult.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 outcome of checking the particular field against state databases. &#x60;match&#x60; - The field is an exact match with the state database. &#x60;no_match&#x60; - The field is not an exact match with the state database. &#x60;no_data&#x60; - The field was unable to be checked against state databases. */ @JsonAdapter(AAMVAMatchResult.Adapter.class) public enum AAMVAMatchResult { MATCH("match"), NO_MATCH("no_match"), NO_DATA("no_data"), // 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; AAMVAMatchResult(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static AAMVAMatchResult fromValue(String value) { for (AAMVAMatchResult b : AAMVAMatchResult.values()) { if (b.value.equals(value)) { return b; } } return AAMVAMatchResult.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<AAMVAMatchResult> { @Override public void write(final JsonWriter jsonWriter, final AAMVAMatchResult enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public AAMVAMatchResult read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return AAMVAMatchResult.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/CreditFreddieMacLoanIdentifiers.java
src/main/java/com/plaid/client/model/CreditFreddieMacLoanIdentifiers.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.LoanIdentifier; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Collection of current and previous identifiers for this loan. */ @ApiModel(description = "Collection of current and previous identifiers for this loan.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditFreddieMacLoanIdentifiers { public static final String SERIALIZED_NAME_L_O_A_N_I_D_E_N_T_I_F_I_E_R = "LOAN_IDENTIFIER"; @SerializedName(SERIALIZED_NAME_L_O_A_N_I_D_E_N_T_I_F_I_E_R) private List<LoanIdentifier> LOAN_IDENTIFIER = new ArrayList<>(); public CreditFreddieMacLoanIdentifiers LOAN_IDENTIFIER(List<LoanIdentifier> LOAN_IDENTIFIER) { this.LOAN_IDENTIFIER = LOAN_IDENTIFIER; return this; } public CreditFreddieMacLoanIdentifiers addLOANIDENTIFIERItem(LoanIdentifier LOAN_IDENTIFIERItem) { this.LOAN_IDENTIFIER.add(LOAN_IDENTIFIERItem); return this; } /** * Get LOAN_IDENTIFIER * @return LOAN_IDENTIFIER **/ @ApiModelProperty(required = true, value = "") public List<LoanIdentifier> getLOANIDENTIFIER() { return LOAN_IDENTIFIER; } public void setLOANIDENTIFIER(List<LoanIdentifier> LOAN_IDENTIFIER) { this.LOAN_IDENTIFIER = LOAN_IDENTIFIER; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditFreddieMacLoanIdentifiers creditFreddieMacLoanIdentifiers = (CreditFreddieMacLoanIdentifiers) o; return Objects.equals(this.LOAN_IDENTIFIER, creditFreddieMacLoanIdentifiers.LOAN_IDENTIFIER); } @Override public int hashCode() { return Objects.hash(LOAN_IDENTIFIER); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditFreddieMacLoanIdentifiers {\n"); sb.append(" LOAN_IDENTIFIER: ").append(toIndentedString(LOAN_IDENTIFIER)).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/TransactionsRecurringMergeInput.java
src/main/java/com/plaid/client/model/TransactionsRecurringMergeInput.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; /** * TransactionsRecurringMergeInput defines a single input to the &#x60;/transactions/recurring/streams/merge&#x60; endpoint. */ @ApiModel(description = "TransactionsRecurringMergeInput defines a single input to the `/transactions/recurring/streams/merge` endpoint.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionsRecurringMergeInput { public static final String SERIALIZED_NAME_STREAM_IDS = "stream_ids"; @SerializedName(SERIALIZED_NAME_STREAM_IDS) private List<String> streamIds = new ArrayList<>(); public TransactionsRecurringMergeInput streamIds(List<String> streamIds) { this.streamIds = streamIds; return this; } public TransactionsRecurringMergeInput addStreamIdsItem(String streamIdsItem) { this.streamIds.add(streamIdsItem); return this; } /** * IDs of all the streams that will be merged into the first stream. This operation will retain the &#x60;stream_id&#x60; of the first stream. * @return streamIds **/ @ApiModelProperty(required = true, value = "IDs of all the streams that will be merged into the first stream. This operation will retain the `stream_id` of the first stream.") public List<String> getStreamIds() { return streamIds; } public void setStreamIds(List<String> streamIds) { this.streamIds = streamIds; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransactionsRecurringMergeInput transactionsRecurringMergeInput = (TransactionsRecurringMergeInput) o; return Objects.equals(this.streamIds, transactionsRecurringMergeInput.streamIds); } @Override public int hashCode() { return Objects.hash(streamIds); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsRecurringMergeInput {\n"); sb.append(" streamIds: ").append(toIndentedString(streamIds)).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/ItemRemoveResponse.java
src/main/java/com/plaid/client/model/ItemRemoveResponse.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; /** * ItemRemoveResponse defines the response schema for &#x60;/item/remove&#x60; */ @ApiModel(description = "ItemRemoveResponse defines the response schema for `/item/remove`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ItemRemoveResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public ItemRemoveResponse 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; } ItemRemoveResponse itemRemoveResponse = (ItemRemoveResponse) o; return Objects.equals(this.requestId, itemRemoveResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ItemRemoveResponse {\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/BaseReportUserAttributes.java
src/main/java/com/plaid/client/model/BaseReportUserAttributes.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.TotalReportInflowAmount; import com.plaid.client.model.TotalReportInflowAmount30d; import com.plaid.client.model.TotalReportInflowAmount60d; import com.plaid.client.model.TotalReportInflowAmount90d; import com.plaid.client.model.TotalReportOutflowAmount; import com.plaid.client.model.TotalReportOutflowAmount30d; import com.plaid.client.model.TotalReportOutflowAmount60d; import com.plaid.client.model.TotalReportOutflowAmount90d; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Calculated attributes derived from transaction-level data, aggregated across accounts. */ @ApiModel(description = "Calculated attributes derived from transaction-level data, aggregated across accounts.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BaseReportUserAttributes { public static final String SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT = "nsf_overdraft_transactions_count"; @SerializedName(SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT) private Integer nsfOverdraftTransactionsCount; public static final String SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT30D = "nsf_overdraft_transactions_count_30d"; @SerializedName(SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT30D) private Integer nsfOverdraftTransactionsCount30d; public static final String SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT60D = "nsf_overdraft_transactions_count_60d"; @SerializedName(SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT60D) private Integer nsfOverdraftTransactionsCount60d; public static final String SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT90D = "nsf_overdraft_transactions_count_90d"; @SerializedName(SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT90D) private Integer nsfOverdraftTransactionsCount90d; public static final String SERIALIZED_NAME_TOTAL_INFLOW_AMOUNT = "total_inflow_amount"; @SerializedName(SERIALIZED_NAME_TOTAL_INFLOW_AMOUNT) private TotalReportInflowAmount totalInflowAmount; public static final String SERIALIZED_NAME_TOTAL_INFLOW_AMOUNT30D = "total_inflow_amount_30d"; @SerializedName(SERIALIZED_NAME_TOTAL_INFLOW_AMOUNT30D) private TotalReportInflowAmount30d totalInflowAmount30d; public static final String SERIALIZED_NAME_TOTAL_INFLOW_AMOUNT60D = "total_inflow_amount_60d"; @SerializedName(SERIALIZED_NAME_TOTAL_INFLOW_AMOUNT60D) private TotalReportInflowAmount60d totalInflowAmount60d; public static final String SERIALIZED_NAME_TOTAL_INFLOW_AMOUNT90D = "total_inflow_amount_90d"; @SerializedName(SERIALIZED_NAME_TOTAL_INFLOW_AMOUNT90D) private TotalReportInflowAmount90d totalInflowAmount90d; public static final String SERIALIZED_NAME_TOTAL_OUTFLOW_AMOUNT = "total_outflow_amount"; @SerializedName(SERIALIZED_NAME_TOTAL_OUTFLOW_AMOUNT) private TotalReportOutflowAmount totalOutflowAmount; public static final String SERIALIZED_NAME_TOTAL_OUTFLOW_AMOUNT30D = "total_outflow_amount_30d"; @SerializedName(SERIALIZED_NAME_TOTAL_OUTFLOW_AMOUNT30D) private TotalReportOutflowAmount30d totalOutflowAmount30d; public static final String SERIALIZED_NAME_TOTAL_OUTFLOW_AMOUNT60D = "total_outflow_amount_60d"; @SerializedName(SERIALIZED_NAME_TOTAL_OUTFLOW_AMOUNT60D) private TotalReportOutflowAmount60d totalOutflowAmount60d; public static final String SERIALIZED_NAME_TOTAL_OUTFLOW_AMOUNT90D = "total_outflow_amount_90d"; @SerializedName(SERIALIZED_NAME_TOTAL_OUTFLOW_AMOUNT90D) private TotalReportOutflowAmount90d totalOutflowAmount90d; public BaseReportUserAttributes nsfOverdraftTransactionsCount(Integer nsfOverdraftTransactionsCount) { this.nsfOverdraftTransactionsCount = nsfOverdraftTransactionsCount; return this; } /** * The number of net NSF fee transactions in the time range for the report (not counting any fees that were reversed within that time range). * @return nsfOverdraftTransactionsCount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of net NSF fee transactions in the time range for the report (not counting any fees that were reversed within that time range).") public Integer getNsfOverdraftTransactionsCount() { return nsfOverdraftTransactionsCount; } public void setNsfOverdraftTransactionsCount(Integer nsfOverdraftTransactionsCount) { this.nsfOverdraftTransactionsCount = nsfOverdraftTransactionsCount; } public BaseReportUserAttributes nsfOverdraftTransactionsCount30d(Integer nsfOverdraftTransactionsCount30d) { this.nsfOverdraftTransactionsCount30d = nsfOverdraftTransactionsCount30d; return this; } /** * The number of net NSF fee transactions in the last 30 days in the report (not counting any fees that were reversed within that time range). * @return nsfOverdraftTransactionsCount30d **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of net NSF fee transactions in the last 30 days in the report (not counting any fees that were reversed within that time range).") public Integer getNsfOverdraftTransactionsCount30d() { return nsfOverdraftTransactionsCount30d; } public void setNsfOverdraftTransactionsCount30d(Integer nsfOverdraftTransactionsCount30d) { this.nsfOverdraftTransactionsCount30d = nsfOverdraftTransactionsCount30d; } public BaseReportUserAttributes nsfOverdraftTransactionsCount60d(Integer nsfOverdraftTransactionsCount60d) { this.nsfOverdraftTransactionsCount60d = nsfOverdraftTransactionsCount60d; return this; } /** * The number of net NSF fee transactions in the last 60 days in the report (not counting any fees that were reversed within that time range). * @return nsfOverdraftTransactionsCount60d **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of net NSF fee transactions in the last 60 days in the report (not counting any fees that were reversed within that time range).") public Integer getNsfOverdraftTransactionsCount60d() { return nsfOverdraftTransactionsCount60d; } public void setNsfOverdraftTransactionsCount60d(Integer nsfOverdraftTransactionsCount60d) { this.nsfOverdraftTransactionsCount60d = nsfOverdraftTransactionsCount60d; } public BaseReportUserAttributes nsfOverdraftTransactionsCount90d(Integer nsfOverdraftTransactionsCount90d) { this.nsfOverdraftTransactionsCount90d = nsfOverdraftTransactionsCount90d; return this; } /** * The number of net NSF fee transactions in the last 90 days in the report (not counting any fees that were reversed within that time range). * @return nsfOverdraftTransactionsCount90d **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of net NSF fee transactions in the last 90 days in the report (not counting any fees that were reversed within that time range).") public Integer getNsfOverdraftTransactionsCount90d() { return nsfOverdraftTransactionsCount90d; } public void setNsfOverdraftTransactionsCount90d(Integer nsfOverdraftTransactionsCount90d) { this.nsfOverdraftTransactionsCount90d = nsfOverdraftTransactionsCount90d; } public BaseReportUserAttributes totalInflowAmount(TotalReportInflowAmount totalInflowAmount) { this.totalInflowAmount = totalInflowAmount; return this; } /** * Get totalInflowAmount * @return totalInflowAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TotalReportInflowAmount getTotalInflowAmount() { return totalInflowAmount; } public void setTotalInflowAmount(TotalReportInflowAmount totalInflowAmount) { this.totalInflowAmount = totalInflowAmount; } public BaseReportUserAttributes totalInflowAmount30d(TotalReportInflowAmount30d totalInflowAmount30d) { this.totalInflowAmount30d = totalInflowAmount30d; return this; } /** * Get totalInflowAmount30d * @return totalInflowAmount30d **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TotalReportInflowAmount30d getTotalInflowAmount30d() { return totalInflowAmount30d; } public void setTotalInflowAmount30d(TotalReportInflowAmount30d totalInflowAmount30d) { this.totalInflowAmount30d = totalInflowAmount30d; } public BaseReportUserAttributes totalInflowAmount60d(TotalReportInflowAmount60d totalInflowAmount60d) { this.totalInflowAmount60d = totalInflowAmount60d; return this; } /** * Get totalInflowAmount60d * @return totalInflowAmount60d **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TotalReportInflowAmount60d getTotalInflowAmount60d() { return totalInflowAmount60d; } public void setTotalInflowAmount60d(TotalReportInflowAmount60d totalInflowAmount60d) { this.totalInflowAmount60d = totalInflowAmount60d; } public BaseReportUserAttributes totalInflowAmount90d(TotalReportInflowAmount90d totalInflowAmount90d) { this.totalInflowAmount90d = totalInflowAmount90d; return this; } /** * Get totalInflowAmount90d * @return totalInflowAmount90d **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TotalReportInflowAmount90d getTotalInflowAmount90d() { return totalInflowAmount90d; } public void setTotalInflowAmount90d(TotalReportInflowAmount90d totalInflowAmount90d) { this.totalInflowAmount90d = totalInflowAmount90d; } public BaseReportUserAttributes totalOutflowAmount(TotalReportOutflowAmount totalOutflowAmount) { this.totalOutflowAmount = totalOutflowAmount; return this; } /** * Get totalOutflowAmount * @return totalOutflowAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TotalReportOutflowAmount getTotalOutflowAmount() { return totalOutflowAmount; } public void setTotalOutflowAmount(TotalReportOutflowAmount totalOutflowAmount) { this.totalOutflowAmount = totalOutflowAmount; } public BaseReportUserAttributes totalOutflowAmount30d(TotalReportOutflowAmount30d totalOutflowAmount30d) { this.totalOutflowAmount30d = totalOutflowAmount30d; return this; } /** * Get totalOutflowAmount30d * @return totalOutflowAmount30d **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TotalReportOutflowAmount30d getTotalOutflowAmount30d() { return totalOutflowAmount30d; } public void setTotalOutflowAmount30d(TotalReportOutflowAmount30d totalOutflowAmount30d) { this.totalOutflowAmount30d = totalOutflowAmount30d; } public BaseReportUserAttributes totalOutflowAmount60d(TotalReportOutflowAmount60d totalOutflowAmount60d) { this.totalOutflowAmount60d = totalOutflowAmount60d; return this; } /** * Get totalOutflowAmount60d * @return totalOutflowAmount60d **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TotalReportOutflowAmount60d getTotalOutflowAmount60d() { return totalOutflowAmount60d; } public void setTotalOutflowAmount60d(TotalReportOutflowAmount60d totalOutflowAmount60d) { this.totalOutflowAmount60d = totalOutflowAmount60d; } public BaseReportUserAttributes totalOutflowAmount90d(TotalReportOutflowAmount90d totalOutflowAmount90d) { this.totalOutflowAmount90d = totalOutflowAmount90d; return this; } /** * Get totalOutflowAmount90d * @return totalOutflowAmount90d **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TotalReportOutflowAmount90d getTotalOutflowAmount90d() { return totalOutflowAmount90d; } public void setTotalOutflowAmount90d(TotalReportOutflowAmount90d totalOutflowAmount90d) { this.totalOutflowAmount90d = totalOutflowAmount90d; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BaseReportUserAttributes baseReportUserAttributes = (BaseReportUserAttributes) o; return Objects.equals(this.nsfOverdraftTransactionsCount, baseReportUserAttributes.nsfOverdraftTransactionsCount) && Objects.equals(this.nsfOverdraftTransactionsCount30d, baseReportUserAttributes.nsfOverdraftTransactionsCount30d) && Objects.equals(this.nsfOverdraftTransactionsCount60d, baseReportUserAttributes.nsfOverdraftTransactionsCount60d) && Objects.equals(this.nsfOverdraftTransactionsCount90d, baseReportUserAttributes.nsfOverdraftTransactionsCount90d) && Objects.equals(this.totalInflowAmount, baseReportUserAttributes.totalInflowAmount) && Objects.equals(this.totalInflowAmount30d, baseReportUserAttributes.totalInflowAmount30d) && Objects.equals(this.totalInflowAmount60d, baseReportUserAttributes.totalInflowAmount60d) && Objects.equals(this.totalInflowAmount90d, baseReportUserAttributes.totalInflowAmount90d) && Objects.equals(this.totalOutflowAmount, baseReportUserAttributes.totalOutflowAmount) && Objects.equals(this.totalOutflowAmount30d, baseReportUserAttributes.totalOutflowAmount30d) && Objects.equals(this.totalOutflowAmount60d, baseReportUserAttributes.totalOutflowAmount60d) && Objects.equals(this.totalOutflowAmount90d, baseReportUserAttributes.totalOutflowAmount90d); } @Override public int hashCode() { return Objects.hash(nsfOverdraftTransactionsCount, nsfOverdraftTransactionsCount30d, nsfOverdraftTransactionsCount60d, nsfOverdraftTransactionsCount90d, totalInflowAmount, totalInflowAmount30d, totalInflowAmount60d, totalInflowAmount90d, totalOutflowAmount, totalOutflowAmount30d, totalOutflowAmount60d, totalOutflowAmount90d); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BaseReportUserAttributes {\n"); sb.append(" nsfOverdraftTransactionsCount: ").append(toIndentedString(nsfOverdraftTransactionsCount)).append("\n"); sb.append(" nsfOverdraftTransactionsCount30d: ").append(toIndentedString(nsfOverdraftTransactionsCount30d)).append("\n"); sb.append(" nsfOverdraftTransactionsCount60d: ").append(toIndentedString(nsfOverdraftTransactionsCount60d)).append("\n"); sb.append(" nsfOverdraftTransactionsCount90d: ").append(toIndentedString(nsfOverdraftTransactionsCount90d)).append("\n"); sb.append(" totalInflowAmount: ").append(toIndentedString(totalInflowAmount)).append("\n"); sb.append(" totalInflowAmount30d: ").append(toIndentedString(totalInflowAmount30d)).append("\n"); sb.append(" totalInflowAmount60d: ").append(toIndentedString(totalInflowAmount60d)).append("\n"); sb.append(" totalInflowAmount90d: ").append(toIndentedString(totalInflowAmount90d)).append("\n"); sb.append(" totalOutflowAmount: ").append(toIndentedString(totalOutflowAmount)).append("\n"); sb.append(" totalOutflowAmount30d: ").append(toIndentedString(totalOutflowAmount30d)).append("\n"); sb.append(" totalOutflowAmount60d: ").append(toIndentedString(totalOutflowAmount60d)).append("\n"); sb.append(" totalOutflowAmount90d: ").append(toIndentedString(totalOutflowAmount90d)).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/PaystubOverrideTaxpayerID.java
src/main/java/com/plaid/client/model/PaystubOverrideTaxpayerID.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; /** * Taxpayer ID of the individual receiving the paystub. */ @ApiModel(description = "Taxpayer ID of the individual receiving the paystub.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaystubOverrideTaxpayerID { public static final String SERIALIZED_NAME_ID_TYPE = "id_type"; @SerializedName(SERIALIZED_NAME_ID_TYPE) private String idType; public static final String SERIALIZED_NAME_ID_MASK = "id_mask"; @SerializedName(SERIALIZED_NAME_ID_MASK) private String idMask; public PaystubOverrideTaxpayerID idType(String idType) { this.idType = idType; return this; } /** * Type of ID, e.g. &#39;SSN&#39; * @return idType **/ @javax.annotation.Nullable @ApiModelProperty(value = "Type of ID, e.g. 'SSN'") public String getIdType() { return idType; } public void setIdType(String idType) { this.idType = idType; } public PaystubOverrideTaxpayerID idMask(String idMask) { this.idMask = idMask; return this; } /** * ID mask; i.e. last 4 digits of the taxpayer ID * @return idMask **/ @javax.annotation.Nullable @ApiModelProperty(value = "ID mask; i.e. last 4 digits of the taxpayer ID") public String getIdMask() { return idMask; } public void setIdMask(String idMask) { this.idMask = idMask; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaystubOverrideTaxpayerID paystubOverrideTaxpayerID = (PaystubOverrideTaxpayerID) o; return Objects.equals(this.idType, paystubOverrideTaxpayerID.idType) && Objects.equals(this.idMask, paystubOverrideTaxpayerID.idMask); } @Override public int hashCode() { return Objects.hash(idType, idMask); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaystubOverrideTaxpayerID {\n"); sb.append(" idType: ").append(toIndentedString(idType)).append("\n"); sb.append(" idMask: ").append(toIndentedString(idMask)).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/UserPermissionRevokedWebhook.java
src/main/java/com/plaid/client/model/UserPermissionRevokedWebhook.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.PlaidError; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The &#x60;USER_PERMISSION_REVOKED&#x60; webhook may be fired when an end user has revoked the permission that they previously granted to access an Item. If the end user revoked their permissions through Plaid (such as via the Plaid Portal or by contacting Plaid Support), the webhook will fire. If the end user revoked their permissions directly through the institution, this webhook may not always fire, since some institutions’ consent portals do not trigger this webhook. To attempt to restore the Item, it can be sent through [update mode](https://plaid.com/docs/link/update-mode). Depending on the exact process the end user used to revoke permissions, it may not be possible to launch update mode for the Item. If you encounter an error when attempting to create a Link token for update mode on an Item with revoked permissions, create a fresh Link token for the user. Note that when working with tokenized account numbers with Auth or Transfer, the account number provided by Plaid will no longer work for creating transfers once user permission has been revoked, except for US Bank Items. */ @ApiModel(description = "The `USER_PERMISSION_REVOKED` webhook may be fired when an end user has revoked the permission that they previously granted to access an Item. If the end user revoked their permissions through Plaid (such as via the Plaid Portal or by contacting Plaid Support), the webhook will fire. If the end user revoked their permissions directly through the institution, this webhook may not always fire, since some institutions’ consent portals do not trigger this webhook. To attempt to restore the Item, it can be sent through [update mode](https://plaid.com/docs/link/update-mode). Depending on the exact process the end user used to revoke permissions, it may not be possible to launch update mode for the Item. If you encounter an error when attempting to create a Link token for update mode on an Item with revoked permissions, create a fresh Link token for the user. Note that when working with tokenized account numbers with Auth or Transfer, the account number provided by Plaid will no longer work for creating transfers once user permission has been revoked, except for US Bank Items.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class UserPermissionRevokedWebhook { 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_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private PlaidError error; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public UserPermissionRevokedWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;ITEM&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`ITEM`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public UserPermissionRevokedWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;USER_PERMISSION_REVOKED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`USER_PERMISSION_REVOKED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public UserPermissionRevokedWebhook itemId(String itemId) { this.itemId = itemId; return this; } /** * The &#x60;item_id&#x60; 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 UserPermissionRevokedWebhook error(PlaidError error) { this.error = error; return this; } /** * Get error * @return error **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PlaidError getError() { return error; } public void setError(PlaidError error) { this.error = error; } public UserPermissionRevokedWebhook 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; } UserPermissionRevokedWebhook userPermissionRevokedWebhook = (UserPermissionRevokedWebhook) o; return Objects.equals(this.webhookType, userPermissionRevokedWebhook.webhookType) && Objects.equals(this.webhookCode, userPermissionRevokedWebhook.webhookCode) && Objects.equals(this.itemId, userPermissionRevokedWebhook.itemId) && Objects.equals(this.error, userPermissionRevokedWebhook.error) && Objects.equals(this.environment, userPermissionRevokedWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, itemId, error, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class UserPermissionRevokedWebhook {\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(" error: ").append(toIndentedString(error)).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/EntityScreeningHitUrls.java
src/main/java/com/plaid/client/model/EntityScreeningHitUrls.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.net.URI; /** * URLs associated with the entity screening hit */ @ApiModel(description = "URLs associated with the entity screening hit") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class EntityScreeningHitUrls { public static final String SERIALIZED_NAME_URL = "url"; @SerializedName(SERIALIZED_NAME_URL) private URI url; public EntityScreeningHitUrls url(URI url) { this.url = url; return this; } /** * An &#39;http&#39; or &#39;https&#39; URL (must begin with either of those). * @return url **/ @ApiModelProperty(example = "https://example.com", required = true, value = "An 'http' or 'https' URL (must begin with either of those).") public URI getUrl() { return url; } public void setUrl(URI url) { this.url = url; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } EntityScreeningHitUrls entityScreeningHitUrls = (EntityScreeningHitUrls) o; return Objects.equals(this.url, entityScreeningHitUrls.url); } @Override public int hashCode() { return Objects.hash(url); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class EntityScreeningHitUrls {\n"); sb.append(" url: ").append(toIndentedString(url)).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/CreditBankIncomePDFGetRequest.java
src/main/java/com/plaid/client/model/CreditBankIncomePDFGetRequest.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; /** * CreditBankIncomePDFGetRequest defines the request schema for &#x60;/credit/bank_income/pdf/get&#x60; */ @ApiModel(description = "CreditBankIncomePDFGetRequest defines the request schema for `/credit/bank_income/pdf/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditBankIncomePDFGetRequest { 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_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) private String userToken; public CreditBankIncomePDFGetRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API &#x60;client_id&#x60;. The &#x60;client_id&#x60; is required and may be provided either in the &#x60;PLAID-CLIENT-ID&#x60; 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 CreditBankIncomePDFGetRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API &#x60;secret&#x60;. The &#x60;secret&#x60; is required and may be provided either in the &#x60;PLAID-SECRET&#x60; 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 CreditBankIncomePDFGetRequest 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 &#x60;user_token&#x60; field. All other customers should use the &#x60;user_id&#x60; instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis). * @return userToken **/ @ApiModelProperty(required = true, 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; } CreditBankIncomePDFGetRequest creditBankIncomePDFGetRequest = (CreditBankIncomePDFGetRequest) o; return Objects.equals(this.clientId, creditBankIncomePDFGetRequest.clientId) && Objects.equals(this.secret, creditBankIncomePDFGetRequest.secret) && Objects.equals(this.userToken, creditBankIncomePDFGetRequest.userToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, userToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditBankIncomePDFGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).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/FDXFiAttribute.java
src/main/java/com/plaid/client/model/FDXFiAttribute.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; /** * Financial Institution provider-specific attribute */ @ApiModel(description = "Financial Institution provider-specific attribute") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class FDXFiAttribute { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) private String value; public FDXFiAttribute name(String name) { this.name = name; return this; } /** * Name of attribute * @return name **/ @ApiModelProperty(required = true, value = "Name of attribute") public String getName() { return name; } public void setName(String name) { this.name = name; } public FDXFiAttribute value(String value) { this.value = value; return this; } /** * Value of attribute * @return value **/ @ApiModelProperty(required = true, value = "Value of attribute") public String getValue() { return value; } public void setValue(String value) { this.value = value; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } FDXFiAttribute fdXFiAttribute = (FDXFiAttribute) o; return Objects.equals(this.name, fdXFiAttribute.name) && Objects.equals(this.value, fdXFiAttribute.value); } @Override public int hashCode() { return Objects.hash(name, value); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class FDXFiAttribute {\n"); sb.append(" name: ").append(toIndentedString(name)).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/ProtectEventSendResponse.java
src/main/java/com/plaid/client/model/ProtectEventSendResponse.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; /** * Response object for /protect/event/send */ @ApiModel(description = "Response object for /protect/event/send") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProtectEventSendResponse { public static final String SERIALIZED_NAME_EVENT_ID = "event_id"; @SerializedName(SERIALIZED_NAME_EVENT_ID) private String eventId; 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 static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public ProtectEventSendResponse eventId(String eventId) { this.eventId = eventId; return this; } /** * The id of the recorded event. * @return eventId **/ @ApiModelProperty(required = true, value = "The id of the recorded event.") public String getEventId() { return eventId; } public void setEventId(String eventId) { this.eventId = eventId; } public ProtectEventSendResponse trustIndex(TrustIndex trustIndex) { this.trustIndex = trustIndex; return this; } /** * Get trustIndex * @return trustIndex **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TrustIndex getTrustIndex() { return trustIndex; } public void setTrustIndex(TrustIndex trustIndex) { this.trustIndex = trustIndex; } public ProtectEventSendResponse 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(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; } public ProtectEventSendResponse 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; } ProtectEventSendResponse protectEventSendResponse = (ProtectEventSendResponse) o; return Objects.equals(this.eventId, protectEventSendResponse.eventId) && Objects.equals(this.trustIndex, protectEventSendResponse.trustIndex) && Objects.equals(this.fraudAttributes, protectEventSendResponse.fraudAttributes) && Objects.equals(this.requestId, protectEventSendResponse.requestId); } @Override public int hashCode() { return Objects.hash(eventId, trustIndex, fraudAttributes, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProtectEventSendResponse {\n"); sb.append(" eventId: ").append(toIndentedString(eventId)).append("\n"); sb.append(" trustIndex: ").append(toIndentedString(trustIndex)).append("\n"); sb.append(" fraudAttributes: ").append(toIndentedString(fraudAttributes)).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/CreditSessionPayrollIncomeResult.java
src/main/java/com/plaid/client/model/CreditSessionPayrollIncomeResult.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 details of a digital payroll income verification in Link */ @ApiModel(description = "The details of a digital payroll income verification in Link") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditSessionPayrollIncomeResult { public static final String SERIALIZED_NAME_NUM_PAYSTUBS_RETRIEVED = "num_paystubs_retrieved"; @SerializedName(SERIALIZED_NAME_NUM_PAYSTUBS_RETRIEVED) private Integer numPaystubsRetrieved; public static final String SERIALIZED_NAME_NUM_W2S_RETRIEVED = "num_w2s_retrieved"; @SerializedName(SERIALIZED_NAME_NUM_W2S_RETRIEVED) private Integer numW2sRetrieved; 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 CreditSessionPayrollIncomeResult numPaystubsRetrieved(Integer numPaystubsRetrieved) { this.numPaystubsRetrieved = numPaystubsRetrieved; return this; } /** * The number of paystubs retrieved from a payroll provider. * @return numPaystubsRetrieved **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of paystubs retrieved from a payroll provider.") public Integer getNumPaystubsRetrieved() { return numPaystubsRetrieved; } public void setNumPaystubsRetrieved(Integer numPaystubsRetrieved) { this.numPaystubsRetrieved = numPaystubsRetrieved; } public CreditSessionPayrollIncomeResult numW2sRetrieved(Integer numW2sRetrieved) { this.numW2sRetrieved = numW2sRetrieved; return this; } /** * The number of w2s retrieved from a payroll provider. * @return numW2sRetrieved **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of w2s retrieved from a payroll provider.") public Integer getNumW2sRetrieved() { return numW2sRetrieved; } public void setNumW2sRetrieved(Integer numW2sRetrieved) { this.numW2sRetrieved = numW2sRetrieved; } public CreditSessionPayrollIncomeResult institutionId(String institutionId) { this.institutionId = institutionId; return this; } /** * The Plaid Institution ID associated with the Item. * @return institutionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The Plaid Institution ID associated with the Item.") public String getInstitutionId() { return institutionId; } public void setInstitutionId(String institutionId) { this.institutionId = institutionId; } public CreditSessionPayrollIncomeResult institutionName(String institutionName) { this.institutionName = institutionName; return this; } /** * The Institution Name associated with the Item. * @return institutionName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The Institution Name associated with the Item.") public String getInstitutionName() { return institutionName; } public void setInstitutionName(String institutionName) { this.institutionName = institutionName; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditSessionPayrollIncomeResult creditSessionPayrollIncomeResult = (CreditSessionPayrollIncomeResult) o; return Objects.equals(this.numPaystubsRetrieved, creditSessionPayrollIncomeResult.numPaystubsRetrieved) && Objects.equals(this.numW2sRetrieved, creditSessionPayrollIncomeResult.numW2sRetrieved) && Objects.equals(this.institutionId, creditSessionPayrollIncomeResult.institutionId) && Objects.equals(this.institutionName, creditSessionPayrollIncomeResult.institutionName); } @Override public int hashCode() { return Objects.hash(numPaystubsRetrieved, numW2sRetrieved, institutionId, institutionName); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditSessionPayrollIncomeResult {\n"); sb.append(" numPaystubsRetrieved: ").append(toIndentedString(numPaystubsRetrieved)).append("\n"); sb.append(" numW2sRetrieved: ").append(toIndentedString(numW2sRetrieved)).append("\n"); sb.append(" institutionId: ").append(toIndentedString(institutionId)).append("\n"); sb.append(" institutionName: ").append(toIndentedString(institutionName)).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/IdentityVerificationDocumentNameResponse.java
src/main/java/com/plaid/client/model/IdentityVerificationDocumentNameResponse.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 individual&#39;s name extracted from the document. */ @ApiModel(description = "The individual's name extracted from the document.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityVerificationDocumentNameResponse { public static final String SERIALIZED_NAME_GIVEN_NAME = "given_name"; @SerializedName(SERIALIZED_NAME_GIVEN_NAME) private String givenName; public static final String SERIALIZED_NAME_FAMILY_NAME = "family_name"; @SerializedName(SERIALIZED_NAME_FAMILY_NAME) private String familyName; public IdentityVerificationDocumentNameResponse givenName(String givenName) { this.givenName = givenName; return this; } /** * A string with at least one non-whitespace character, with a max length of 100 characters. * @return givenName **/ @ApiModelProperty(example = "Leslie", required = true, value = "A string with at least one non-whitespace character, with a max length of 100 characters.") public String getGivenName() { return givenName; } public void setGivenName(String givenName) { this.givenName = givenName; } public IdentityVerificationDocumentNameResponse familyName(String familyName) { this.familyName = familyName; return this; } /** * A string with at least one non-whitespace character, with a max length of 100 characters. * @return familyName **/ @ApiModelProperty(example = "Knope", required = true, value = "A string with at least one non-whitespace character, with a max length of 100 characters.") public String getFamilyName() { return familyName; } public void setFamilyName(String familyName) { this.familyName = familyName; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IdentityVerificationDocumentNameResponse identityVerificationDocumentNameResponse = (IdentityVerificationDocumentNameResponse) o; return Objects.equals(this.givenName, identityVerificationDocumentNameResponse.givenName) && Objects.equals(this.familyName, identityVerificationDocumentNameResponse.familyName); } @Override public int hashCode() { return Objects.hash(givenName, familyName); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityVerificationDocumentNameResponse {\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