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/CraPartnerInsights.java
src/main/java/com/plaid/client/model/CraPartnerInsights.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.CraPartnerInsightsItem; import com.plaid.client.model.CraPartnerInsightsPrism; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.List; /** * The Partner Insights report of the bank data for an end user. */ @ApiModel(description = "The Partner Insights report of the bank data for an end user.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraPartnerInsights { public static final String SERIALIZED_NAME_REPORT_ID = "report_id"; @SerializedName(SERIALIZED_NAME_REPORT_ID) private String reportId; public static final String SERIALIZED_NAME_GENERATED_TIME = "generated_time"; @SerializedName(SERIALIZED_NAME_GENERATED_TIME) private OffsetDateTime generatedTime; public static final String SERIALIZED_NAME_CLIENT_REPORT_ID = "client_report_id"; @SerializedName(SERIALIZED_NAME_CLIENT_REPORT_ID) private String clientReportId; public static final String SERIALIZED_NAME_PRISM = "prism"; @SerializedName(SERIALIZED_NAME_PRISM) private CraPartnerInsightsPrism prism; public static final String SERIALIZED_NAME_ITEMS = "items"; @SerializedName(SERIALIZED_NAME_ITEMS) private List<CraPartnerInsightsItem> items = null; public CraPartnerInsights reportId(String reportId) { this.reportId = reportId; return this; } /** * A unique identifier associated with the Partner Insights object. * @return reportId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique identifier associated with the Partner Insights object.") public String getReportId() { return reportId; } public void setReportId(String reportId) { this.reportId = reportId; } public CraPartnerInsights generatedTime(OffsetDateTime generatedTime) { this.generatedTime = generatedTime; return this; } /** * The time when the Partner Insights report was generated. * @return generatedTime **/ @javax.annotation.Nullable @ApiModelProperty(value = "The time when the Partner Insights report was generated.") public OffsetDateTime getGeneratedTime() { return generatedTime; } public void setGeneratedTime(OffsetDateTime generatedTime) { this.generatedTime = generatedTime; } public CraPartnerInsights 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 CraPartnerInsights prism(CraPartnerInsightsPrism prism) { this.prism = prism; return this; } /** * Get prism * @return prism **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CraPartnerInsightsPrism getPrism() { return prism; } public void setPrism(CraPartnerInsightsPrism prism) { this.prism = prism; } public CraPartnerInsights items(List<CraPartnerInsightsItem> items) { this.items = items; return this; } public CraPartnerInsights addItemsItem(CraPartnerInsightsItem itemsItem) { if (this.items == null) { this.items = new ArrayList<>(); } this.items.add(itemsItem); return this; } /** * The list of Items used in the report along with the associated metadata about the Item. * @return items **/ @javax.annotation.Nullable @ApiModelProperty(value = "The list of Items used in the report along with the associated metadata about the Item.") public List<CraPartnerInsightsItem> getItems() { return items; } public void setItems(List<CraPartnerInsightsItem> items) { this.items = items; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraPartnerInsights craPartnerInsights = (CraPartnerInsights) o; return Objects.equals(this.reportId, craPartnerInsights.reportId) && Objects.equals(this.generatedTime, craPartnerInsights.generatedTime) && Objects.equals(this.clientReportId, craPartnerInsights.clientReportId) && Objects.equals(this.prism, craPartnerInsights.prism) && Objects.equals(this.items, craPartnerInsights.items); } @Override public int hashCode() { return Objects.hash(reportId, generatedTime, clientReportId, prism, items); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraPartnerInsights {\n"); sb.append(" reportId: ").append(toIndentedString(reportId)).append("\n"); sb.append(" generatedTime: ").append(toIndentedString(generatedTime)).append("\n"); sb.append(" clientReportId: ").append(toIndentedString(clientReportId)).append("\n"); sb.append(" prism: ").append(toIndentedString(prism)).append("\n"); sb.append(" items: ").append(toIndentedString(items)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PayrollItemStatus.java
src/main/java/com/plaid/client/model/PayrollItemStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Details about the status of the payroll item. */ @ApiModel(description = "Details about the status of the payroll item.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PayrollItemStatus { public static final String SERIALIZED_NAME_PROCESSING_STATUS = "processing_status"; @SerializedName(SERIALIZED_NAME_PROCESSING_STATUS) private String processingStatus; public PayrollItemStatus processingStatus(String processingStatus) { this.processingStatus = processingStatus; return this; } /** * Denotes the processing status for the verification. &#x60;UNKNOWN&#x60;: The processing status could not be determined. &#x60;PROCESSING_COMPLETE&#x60;: The processing has completed and the user has approved for sharing. The data is available to be retrieved. &#x60;PROCESSING&#x60;: The verification is still processing. The data is not available yet. &#x60;FAILED&#x60;: The processing failed to complete successfully. &#x60;APPROVAL_STATUS_PENDING&#x60;: The processing has completed but the user has not yet approved the sharing of the data. * @return processingStatus **/ @javax.annotation.Nullable @ApiModelProperty(value = "Denotes the processing status for the verification. `UNKNOWN`: The processing status could not be determined. `PROCESSING_COMPLETE`: The processing has completed and the user has approved for sharing. The data is available to be retrieved. `PROCESSING`: The verification is still processing. The data is not available yet. `FAILED`: The processing failed to complete successfully. `APPROVAL_STATUS_PENDING`: The processing has completed but the user has not yet approved the sharing of the data.") public String getProcessingStatus() { return processingStatus; } public void setProcessingStatus(String processingStatus) { this.processingStatus = processingStatus; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PayrollItemStatus payrollItemStatus = (PayrollItemStatus) o; return Objects.equals(this.processingStatus, payrollItemStatus.processingStatus); } @Override public int hashCode() { return Objects.hash(processingStatus); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PayrollItemStatus {\n"); sb.append(" processingStatus: ").append(toIndentedString(processingStatus)).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/PaystubEmployer.java
src/main/java/com/plaid/client/model/PaystubEmployer.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.PaystubAddress; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Information about the employer on the paystub */ @ApiModel(description = "Information about the employer on the paystub") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaystubEmployer { public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private PaystubAddress address; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public PaystubEmployer address(PaystubAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaystubAddress getAddress() { return address; } public void setAddress(PaystubAddress address) { this.address = address; } public PaystubEmployer name(String name) { this.name = name; return this; } /** * The name of the employer on the paystub. * @return name **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The name of the employer on the paystub.") public String getName() { return name; } public void setName(String name) { this.name = name; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaystubEmployer paystubEmployer = (PaystubEmployer) o; return Objects.equals(this.address, paystubEmployer.address) && Objects.equals(this.name, paystubEmployer.name); } @Override public int hashCode() { return Objects.hash(address, name); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaystubEmployer {\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).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/WatchlistScreeningIndividualCreateRequest.java
src/main/java/com/plaid/client/model/WatchlistScreeningIndividualCreateRequest.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.WatchlistScreeningRequestSearchTerms; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Request input for creating an individual watchlist screening */ @ApiModel(description = "Request input 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 WatchlistScreeningIndividualCreateRequest { public static final String SERIALIZED_NAME_SEARCH_TERMS = "search_terms"; @SerializedName(SERIALIZED_NAME_SEARCH_TERMS) private WatchlistScreeningRequestSearchTerms searchTerms; public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id"; @SerializedName(SERIALIZED_NAME_CLIENT_USER_ID) private String clientUserId; public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public WatchlistScreeningIndividualCreateRequest searchTerms(WatchlistScreeningRequestSearchTerms searchTerms) { this.searchTerms = searchTerms; return this; } /** * Get searchTerms * @return searchTerms **/ @ApiModelProperty(required = true, value = "") public WatchlistScreeningRequestSearchTerms getSearchTerms() { return searchTerms; } public void setSearchTerms(WatchlistScreeningRequestSearchTerms searchTerms) { this.searchTerms = searchTerms; } public WatchlistScreeningIndividualCreateRequest clientUserId(String clientUserId) { this.clientUserId = clientUserId; return this; } /** * A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the &#x60;/link/token/create&#x60; &#x60;client_user_id&#x60; to be consistent. 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(example = "your-db-id-3b24110", value = "A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the `/link/token/create` `client_user_id` to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the `client_user_id`.") public String getClientUserId() { return clientUserId; } public void setClientUserId(String clientUserId) { this.clientUserId = clientUserId; } public WatchlistScreeningIndividualCreateRequest 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 WatchlistScreeningIndividualCreateRequest 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; } WatchlistScreeningIndividualCreateRequest watchlistScreeningIndividualCreateRequest = (WatchlistScreeningIndividualCreateRequest) o; return Objects.equals(this.searchTerms, watchlistScreeningIndividualCreateRequest.searchTerms) && Objects.equals(this.clientUserId, watchlistScreeningIndividualCreateRequest.clientUserId) && Objects.equals(this.clientId, watchlistScreeningIndividualCreateRequest.clientId) && Objects.equals(this.secret, watchlistScreeningIndividualCreateRequest.secret); } @Override public int hashCode() { return Objects.hash(searchTerms, clientUserId, clientId, secret); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WatchlistScreeningIndividualCreateRequest {\n"); sb.append(" searchTerms: ").append(toIndentedString(searchTerms)).append("\n"); sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append("}"); 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/CraVoaReportAccount.java
src/main/java/com/plaid/client/model/CraVoaReportAccount.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.AccountSubtype; import com.plaid.client.model.AccountType; import com.plaid.client.model.BaseReportInvestments; import com.plaid.client.model.ConsumerDispute; import com.plaid.client.model.CraVoaReportAccountBalances; import com.plaid.client.model.CraVoaReportTransactionsInsights; import com.plaid.client.model.Owner; import com.plaid.client.model.OwnershipType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.math.BigDecimal; import java.util.ArrayList; import java.util.List; /** * VOA Report information about an account. */ @ApiModel(description = "VOA Report information about an account.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraVoaReportAccount { 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 CraVoaReportAccountBalances balances; public static final String SERIALIZED_NAME_CONSUMER_DISPUTES = "consumer_disputes"; @SerializedName(SERIALIZED_NAME_CONSUMER_DISPUTES) private List<ConsumerDispute> consumerDisputes = new ArrayList<>(); 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; public static final String SERIALIZED_NAME_DAYS_AVAILABLE = "days_available"; @SerializedName(SERIALIZED_NAME_DAYS_AVAILABLE) private Double daysAvailable; public static final String SERIALIZED_NAME_TRANSACTIONS_INSIGHTS = "transactions_insights"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS_INSIGHTS) private CraVoaReportTransactionsInsights transactionsInsights; public static final String SERIALIZED_NAME_OWNERS = "owners"; @SerializedName(SERIALIZED_NAME_OWNERS) private List<Owner> owners = new ArrayList<>(); public static final String SERIALIZED_NAME_OWNERSHIP_TYPE = "ownership_type"; @SerializedName(SERIALIZED_NAME_OWNERSHIP_TYPE) private OwnershipType ownershipType; public static final String SERIALIZED_NAME_INVESTMENTS = "investments"; @SerializedName(SERIALIZED_NAME_INVESTMENTS) private BaseReportInvestments investments; public CraVoaReportAccount 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. 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. 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. 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. Like all Plaid identifiers, the `account_id` is case sensitive.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public CraVoaReportAccount balances(CraVoaReportAccountBalances balances) { this.balances = balances; return this; } /** * Get balances * @return balances **/ @ApiModelProperty(required = true, value = "") public CraVoaReportAccountBalances getBalances() { return balances; } public void setBalances(CraVoaReportAccountBalances balances) { this.balances = balances; } public CraVoaReportAccount consumerDisputes(List<ConsumerDispute> consumerDisputes) { this.consumerDisputes = consumerDisputes; return this; } public CraVoaReportAccount addConsumerDisputesItem(ConsumerDispute consumerDisputesItem) { this.consumerDisputes.add(consumerDisputesItem); return this; } /** * The information about previously submitted valid dispute statements by the consumer * @return consumerDisputes **/ @ApiModelProperty(required = true, value = "The information about previously submitted valid dispute statements by the consumer") public List<ConsumerDispute> getConsumerDisputes() { return consumerDisputes; } public void setConsumerDisputes(List<ConsumerDispute> consumerDisputes) { this.consumerDisputes = consumerDisputes; } public CraVoaReportAccount mask(String mask) { this.mask = mask; return this; } /** * The last 2-4 alphanumeric characters of an account&#39;s official account number. Note that the mask may be non-unique between an Item&#39;s accounts, and it may also not match the mask that the bank displays to the user. * @return mask **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The last 2-4 alphanumeric characters of an account's official account number. Note that the mask may be non-unique between an Item's accounts, and it may also not match the mask that the bank displays to the user.") public String getMask() { return mask; } public void setMask(String mask) { this.mask = mask; } public CraVoaReportAccount 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 CraVoaReportAccount 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 CraVoaReportAccount 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 CraVoaReportAccount 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 CraVoaReportAccount daysAvailable(Double daysAvailable) { this.daysAvailable = daysAvailable; return this; } /** * The duration of transaction history available within this report for this Item, typically defined as the time since the date of the earliest transaction in that account. * @return daysAvailable **/ @ApiModelProperty(required = true, value = "The duration of transaction history available within this report for this Item, typically defined as the time since the date of the earliest transaction in that account.") public Double getDaysAvailable() { return daysAvailable; } public void setDaysAvailable(Double daysAvailable) { this.daysAvailable = daysAvailable; } public CraVoaReportAccount transactionsInsights(CraVoaReportTransactionsInsights transactionsInsights) { this.transactionsInsights = transactionsInsights; return this; } /** * Get transactionsInsights * @return transactionsInsights **/ @ApiModelProperty(required = true, value = "") public CraVoaReportTransactionsInsights getTransactionsInsights() { return transactionsInsights; } public void setTransactionsInsights(CraVoaReportTransactionsInsights transactionsInsights) { this.transactionsInsights = transactionsInsights; } public CraVoaReportAccount owners(List<Owner> owners) { this.owners = owners; return this; } public CraVoaReportAccount addOwnersItem(Owner ownersItem) { this.owners.add(ownersItem); return this; } /** * Data returned by the financial institution about the account owner or owners. * @return owners **/ @ApiModelProperty(required = true, value = "Data returned by the financial institution about the account owner or owners.") public List<Owner> getOwners() { return owners; } public void setOwners(List<Owner> owners) { this.owners = owners; } public CraVoaReportAccount ownershipType(OwnershipType ownershipType) { this.ownershipType = ownershipType; return this; } /** * Get ownershipType * @return ownershipType **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public OwnershipType getOwnershipType() { return ownershipType; } public void setOwnershipType(OwnershipType ownershipType) { this.ownershipType = ownershipType; } public CraVoaReportAccount investments(BaseReportInvestments investments) { this.investments = investments; return this; } /** * Get investments * @return investments **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public BaseReportInvestments getInvestments() { return investments; } public void setInvestments(BaseReportInvestments investments) { this.investments = investments; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraVoaReportAccount craVoaReportAccount = (CraVoaReportAccount) o; return Objects.equals(this.accountId, craVoaReportAccount.accountId) && Objects.equals(this.balances, craVoaReportAccount.balances) && Objects.equals(this.consumerDisputes, craVoaReportAccount.consumerDisputes) && Objects.equals(this.mask, craVoaReportAccount.mask) && Objects.equals(this.name, craVoaReportAccount.name) && Objects.equals(this.officialName, craVoaReportAccount.officialName) && Objects.equals(this.type, craVoaReportAccount.type) && Objects.equals(this.subtype, craVoaReportAccount.subtype) && Objects.equals(this.daysAvailable, craVoaReportAccount.daysAvailable) && Objects.equals(this.transactionsInsights, craVoaReportAccount.transactionsInsights) && Objects.equals(this.owners, craVoaReportAccount.owners) && Objects.equals(this.ownershipType, craVoaReportAccount.ownershipType) && Objects.equals(this.investments, craVoaReportAccount.investments); } @Override public int hashCode() { return Objects.hash(accountId, balances, consumerDisputes, mask, name, officialName, type, subtype, daysAvailable, transactionsInsights, owners, ownershipType, investments); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraVoaReportAccount {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" balances: ").append(toIndentedString(balances)).append("\n"); sb.append(" consumerDisputes: ").append(toIndentedString(consumerDisputes)).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(" daysAvailable: ").append(toIndentedString(daysAvailable)).append("\n"); sb.append(" transactionsInsights: ").append(toIndentedString(transactionsInsights)).append("\n"); sb.append(" owners: ").append(toIndentedString(owners)).append("\n"); sb.append(" ownershipType: ").append(toIndentedString(ownershipType)).append("\n"); sb.append(" investments: ").append(toIndentedString(investments)).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/InvestmentsTransactionsGetRequestOptions.java
src/main/java/com/plaid/client/model/InvestmentsTransactionsGetRequestOptions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * An optional object to filter &#x60;/investments/transactions/get&#x60; results. If provided, must be non-&#x60;null&#x60;. */ @ApiModel(description = "An optional object to filter `/investments/transactions/get` results. If provided, must be non-`null`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InvestmentsTransactionsGetRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) private List<String> accountIds = null; public static final String SERIALIZED_NAME_COUNT = "count"; @SerializedName(SERIALIZED_NAME_COUNT) private Integer count = 100; public static final String SERIALIZED_NAME_OFFSET = "offset"; @SerializedName(SERIALIZED_NAME_OFFSET) private Integer offset = 0; public static final String SERIALIZED_NAME_ASYNC_UPDATE = "async_update"; @SerializedName(SERIALIZED_NAME_ASYNC_UPDATE) private Boolean asyncUpdate = false; public InvestmentsTransactionsGetRequestOptions accountIds(List<String> accountIds) { this.accountIds = accountIds; return this; } public InvestmentsTransactionsGetRequestOptions addAccountIdsItem(String accountIdsItem) { if (this.accountIds == null) { this.accountIds = new ArrayList<>(); } this.accountIds.add(accountIdsItem); return this; } /** * An array of &#x60;account_ids&#x60; to retrieve for the Item. * @return accountIds **/ @javax.annotation.Nullable @ApiModelProperty(value = "An array of `account_ids` to retrieve for the Item.") public List<String> getAccountIds() { return accountIds; } public void setAccountIds(List<String> accountIds) { this.accountIds = accountIds; } public InvestmentsTransactionsGetRequestOptions count(Integer count) { this.count = count; return this; } /** * The number of transactions to fetch. * minimum: 1 * maximum: 500 * @return count **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of transactions to fetch. ") public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } public InvestmentsTransactionsGetRequestOptions offset(Integer offset) { this.offset = offset; return this; } /** * The number of transactions to skip when fetching transaction history * minimum: 0 * @return offset **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of transactions to skip when fetching transaction history") public Integer getOffset() { return offset; } public void setOffset(Integer offset) { this.offset = offset; } public InvestmentsTransactionsGetRequestOptions asyncUpdate(Boolean asyncUpdate) { this.asyncUpdate = asyncUpdate; return this; } /** * If the Item was not initialized with the investments product via the &#x60;products&#x60;, &#x60;required_if_supported_products&#x60;, or &#x60;optional_products&#x60; array when calling &#x60;/link/token/create&#x60;, and &#x60;async_update&#x60; is set to true, the initial Investments extraction will happen asynchronously. Plaid will subsequently fire a &#x60;HISTORICAL_UPDATE&#x60; webhook when the extraction completes. When &#x60;false&#x60;, Plaid will wait to return a response until extraction completion and no &#x60;HISTORICAL_UPDATE&#x60; webhook will fire. Note that while the extraction is happening asynchronously, calls to &#x60;/investments/transactions/get&#x60; and &#x60;/investments/refresh&#x60; will return &#x60;PRODUCT_NOT_READY&#x60; errors until the extraction completes. * @return asyncUpdate **/ @javax.annotation.Nullable @ApiModelProperty(value = "If the Item was not initialized with the investments product via the `products`, `required_if_supported_products`, or `optional_products` array when calling `/link/token/create`, and `async_update` is set to true, the initial Investments extraction will happen asynchronously. Plaid will subsequently fire a `HISTORICAL_UPDATE` webhook when the extraction completes. When `false`, Plaid will wait to return a response until extraction completion and no `HISTORICAL_UPDATE` webhook will fire. Note that while the extraction is happening asynchronously, calls to `/investments/transactions/get` and `/investments/refresh` will return `PRODUCT_NOT_READY` errors until the extraction completes.") public Boolean getAsyncUpdate() { return asyncUpdate; } public void setAsyncUpdate(Boolean asyncUpdate) { this.asyncUpdate = asyncUpdate; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } InvestmentsTransactionsGetRequestOptions investmentsTransactionsGetRequestOptions = (InvestmentsTransactionsGetRequestOptions) o; return Objects.equals(this.accountIds, investmentsTransactionsGetRequestOptions.accountIds) && Objects.equals(this.count, investmentsTransactionsGetRequestOptions.count) && Objects.equals(this.offset, investmentsTransactionsGetRequestOptions.offset) && Objects.equals(this.asyncUpdate, investmentsTransactionsGetRequestOptions.asyncUpdate); } @Override public int hashCode() { return Objects.hash(accountIds, count, offset, asyncUpdate); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InvestmentsTransactionsGetRequestOptions {\n"); sb.append(" accountIds: ").append(toIndentedString(accountIds)).append("\n"); sb.append(" count: ").append(toIndentedString(count)).append("\n"); sb.append(" offset: ").append(toIndentedString(offset)).append("\n"); sb.append(" asyncUpdate: ").append(toIndentedString(asyncUpdate)).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/CraCheckReportNetworkInsightsGetResponse.java
src/main/java/com/plaid/client/model/CraCheckReportNetworkInsightsGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CheckReportWarning; import com.plaid.client.model.CraNetworkInsightsReport; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * CraCheckReportNetworkInsightsGetResponse defines the response schema for &#x60;/cra/check_report/network_attributes/get&#x60;. */ @ApiModel(description = "CraCheckReportNetworkInsightsGetResponse defines the response schema for `/cra/check_report/network_attributes/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCheckReportNetworkInsightsGetResponse { public static final String SERIALIZED_NAME_REPORT = "report"; @SerializedName(SERIALIZED_NAME_REPORT) private CraNetworkInsightsReport report; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public static final String SERIALIZED_NAME_WARNINGS = "warnings"; @SerializedName(SERIALIZED_NAME_WARNINGS) private List<CheckReportWarning> warnings = null; public CraCheckReportNetworkInsightsGetResponse report(CraNetworkInsightsReport report) { this.report = report; return this; } /** * Get report * @return report **/ @ApiModelProperty(required = true, value = "") public CraNetworkInsightsReport getReport() { return report; } public void setReport(CraNetworkInsightsReport report) { this.report = report; } public CraCheckReportNetworkInsightsGetResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public CraCheckReportNetworkInsightsGetResponse warnings(List<CheckReportWarning> warnings) { this.warnings = warnings; return this; } public CraCheckReportNetworkInsightsGetResponse addWarningsItem(CheckReportWarning warningsItem) { if (this.warnings == null) { this.warnings = new ArrayList<>(); } this.warnings.add(warningsItem); return this; } /** * If the Network Insights generation was successful but a subset of data could not be retrieved, this array will contain information about the errors causing information to be missing * @return warnings **/ @javax.annotation.Nullable @ApiModelProperty(value = "If the Network Insights generation was successful but a subset of data could not be retrieved, this array will contain information about the errors causing information to be missing") public List<CheckReportWarning> getWarnings() { return warnings; } public void setWarnings(List<CheckReportWarning> warnings) { this.warnings = warnings; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraCheckReportNetworkInsightsGetResponse craCheckReportNetworkInsightsGetResponse = (CraCheckReportNetworkInsightsGetResponse) o; return Objects.equals(this.report, craCheckReportNetworkInsightsGetResponse.report) && Objects.equals(this.requestId, craCheckReportNetworkInsightsGetResponse.requestId) && Objects.equals(this.warnings, craCheckReportNetworkInsightsGetResponse.warnings); } @Override public int hashCode() { return Objects.hash(report, requestId, warnings); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportNetworkInsightsGetResponse {\n"); sb.append(" report: ").append(toIndentedString(report)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append(" warnings: ").append(toIndentedString(warnings)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/InstitutionsSearchPaymentInitiationOptions.java
src/main/java/com/plaid/client/model/InstitutionsSearchPaymentInitiationOptions.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; /** * Additional options that will be used to filter institutions by various Payment Initiation configurations. */ @ApiModel(description = "Additional options that will be used to filter institutions by various Payment Initiation configurations.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InstitutionsSearchPaymentInitiationOptions { public static final String SERIALIZED_NAME_PAYMENT_ID = "payment_id"; @SerializedName(SERIALIZED_NAME_PAYMENT_ID) private String paymentId; public static final String SERIALIZED_NAME_CONSENT_ID = "consent_id"; @SerializedName(SERIALIZED_NAME_CONSENT_ID) private String consentId; public InstitutionsSearchPaymentInitiationOptions paymentId(String paymentId) { this.paymentId = paymentId; return this; } /** * A unique ID identifying the payment * @return paymentId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique ID identifying the payment") public String getPaymentId() { return paymentId; } public void setPaymentId(String paymentId) { this.paymentId = paymentId; } public InstitutionsSearchPaymentInitiationOptions consentId(String consentId) { this.consentId = consentId; return this; } /** * A unique ID identifying the payment consent * @return consentId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique ID identifying the payment consent") 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; } InstitutionsSearchPaymentInitiationOptions institutionsSearchPaymentInitiationOptions = (InstitutionsSearchPaymentInitiationOptions) o; return Objects.equals(this.paymentId, institutionsSearchPaymentInitiationOptions.paymentId) && Objects.equals(this.consentId, institutionsSearchPaymentInitiationOptions.consentId); } @Override public int hashCode() { return Objects.hash(paymentId, consentId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InstitutionsSearchPaymentInitiationOptions {\n"); sb.append(" paymentId: ").append(toIndentedString(paymentId)).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/CreditBankIncomeAccount.java
src/main/java/com/plaid/client/model/CreditBankIncomeAccount.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.CreditBankIncomeAccountType; import com.plaid.client.model.DepositoryAccountSubtype; import com.plaid.client.model.Owner; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * The Item&#39;s bank accounts that have the selected data. */ @ApiModel(description = "The Item's bank accounts that have the selected data.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditBankIncomeAccount { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; 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_SUBTYPE = "subtype"; @SerializedName(SERIALIZED_NAME_SUBTYPE) private DepositoryAccountSubtype subtype; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private CreditBankIncomeAccountType type; public static final String SERIALIZED_NAME_OWNERS = "owners"; @SerializedName(SERIALIZED_NAME_OWNERS) private List<Owner> owners = new ArrayList<>(); public CreditBankIncomeAccount accountId(String accountId) { this.accountId = accountId; return this; } /** * Plaid&#39;s unique identifier for the account. * @return accountId **/ @ApiModelProperty(required = true, value = "Plaid's unique identifier for the account.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public CreditBankIncomeAccount mask(String mask) { this.mask = mask; return this; } /** * The last 2-4 alphanumeric characters of an account&#39;s official account number. Note that the mask may be non-unique between an Item&#39;s accounts, and it may also not match the mask that the bank displays to the user. * @return mask **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The last 2-4 alphanumeric characters of an account's official account number. Note that the mask may be non-unique between an Item's accounts, and it may also not match the mask that the bank displays to the user.") public String getMask() { return mask; } public void setMask(String mask) { this.mask = mask; } public CreditBankIncomeAccount name(String name) { this.name = name; return this; } /** * The name of the bank account. * @return name **/ @ApiModelProperty(required = true, value = "The name of the bank account.") public String getName() { return name; } public void setName(String name) { this.name = name; } public CreditBankIncomeAccount officialName(String officialName) { this.officialName = officialName; return this; } /** * The official name of the bank account. * @return officialName **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The official name of the bank account.") public String getOfficialName() { return officialName; } public void setOfficialName(String officialName) { this.officialName = officialName; } public CreditBankIncomeAccount subtype(DepositoryAccountSubtype subtype) { this.subtype = subtype; return this; } /** * Get subtype * @return subtype **/ @ApiModelProperty(required = true, value = "") public DepositoryAccountSubtype getSubtype() { return subtype; } public void setSubtype(DepositoryAccountSubtype subtype) { this.subtype = subtype; } public CreditBankIncomeAccount type(CreditBankIncomeAccountType type) { this.type = type; return this; } /** * Get type * @return type **/ @ApiModelProperty(required = true, value = "") public CreditBankIncomeAccountType getType() { return type; } public void setType(CreditBankIncomeAccountType type) { this.type = type; } public CreditBankIncomeAccount owners(List<Owner> owners) { this.owners = owners; return this; } public CreditBankIncomeAccount addOwnersItem(Owner ownersItem) { this.owners.add(ownersItem); return this; } /** * Data returned by the financial institution about the account owner or owners. Identity information is optional, so field may return an empty array. * @return owners **/ @ApiModelProperty(required = true, value = "Data returned by the financial institution about the account owner or owners. Identity information is optional, so field may return an empty array.") public List<Owner> getOwners() { return owners; } public void setOwners(List<Owner> owners) { this.owners = owners; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditBankIncomeAccount creditBankIncomeAccount = (CreditBankIncomeAccount) o; return Objects.equals(this.accountId, creditBankIncomeAccount.accountId) && Objects.equals(this.mask, creditBankIncomeAccount.mask) && Objects.equals(this.name, creditBankIncomeAccount.name) && Objects.equals(this.officialName, creditBankIncomeAccount.officialName) && Objects.equals(this.subtype, creditBankIncomeAccount.subtype) && Objects.equals(this.type, creditBankIncomeAccount.type) && Objects.equals(this.owners, creditBankIncomeAccount.owners); } @Override public int hashCode() { return Objects.hash(accountId, mask, name, officialName, subtype, type, owners); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditBankIncomeAccount {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).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(" subtype: ").append(toIndentedString(subtype)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" owners: ").append(toIndentedString(owners)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkDeliveryCommunicationMethod.java
src/main/java/com/plaid/client/model/LinkDeliveryCommunicationMethod.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.LinkDeliveryDeliveryMethod; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The communication method containing both the type and address to send the URL. */ @ApiModel(description = "The communication method containing both the type and address to send the URL.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkDeliveryCommunicationMethod { public static final String SERIALIZED_NAME_METHOD = "method"; @SerializedName(SERIALIZED_NAME_METHOD) private LinkDeliveryDeliveryMethod method; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private String address; public LinkDeliveryCommunicationMethod method(LinkDeliveryDeliveryMethod method) { this.method = method; return this; } /** * Get method * @return method **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public LinkDeliveryDeliveryMethod getMethod() { return method; } public void setMethod(LinkDeliveryDeliveryMethod method) { this.method = method; } public LinkDeliveryCommunicationMethod address(String address) { this.address = address; return this; } /** * The phone number / email address that Hosted Link sessions are delivered to. Phone numbers must be in E.164 format. * @return address **/ @javax.annotation.Nullable @ApiModelProperty(value = "The phone number / email address that Hosted Link sessions are delivered to. Phone numbers must be in E.164 format.") public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkDeliveryCommunicationMethod linkDeliveryCommunicationMethod = (LinkDeliveryCommunicationMethod) o; return Objects.equals(this.method, linkDeliveryCommunicationMethod.method) && Objects.equals(this.address, linkDeliveryCommunicationMethod.address); } @Override public int hashCode() { return Objects.hash(method, address); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkDeliveryCommunicationMethod {\n"); sb.append(" method: ").append(toIndentedString(method)).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/CounterpartyType.java
src/main/java/com/plaid/client/model/CounterpartyType.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 counterparty type. &#x60;merchant&#x60;: a provider of goods or services for purchase &#x60;financial_institution&#x60;: a financial entity (bank, credit union, BNPL, fintech) &#x60;payment_app&#x60;: a transfer or P2P app (e.g. Zelle) &#x60;marketplace&#x60;: a marketplace (e.g DoorDash, Google Play Store) &#x60;payment_terminal&#x60;: a point-of-sale payment terminal (e.g Square, Toast) &#x60;income_source&#x60;: the payer in an income transaction (e.g., an employer, client, or government agency) */ @JsonAdapter(CounterpartyType.Adapter.class) public enum CounterpartyType { MERCHANT("merchant"), FINANCIAL_INSTITUTION("financial_institution"), PAYMENT_APP("payment_app"), MARKETPLACE("marketplace"), PAYMENT_TERMINAL("payment_terminal"), INCOME_SOURCE("income_source"), // 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; CounterpartyType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static CounterpartyType fromValue(String value) { for (CounterpartyType b : CounterpartyType.values()) { if (b.value.equals(value)) { return b; } } return CounterpartyType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<CounterpartyType> { @Override public void write(final JsonWriter jsonWriter, final CounterpartyType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public CounterpartyType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return CounterpartyType.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/CashflowReportMonthlySummaryAverageDailyEndingBalance.java
src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryAverageDailyEndingBalance.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; /** * Calendar-day average of the ending balance. */ @ApiModel(description = "Calendar-day average of the ending balance.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CashflowReportMonthlySummaryAverageDailyEndingBalance { 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 CashflowReportMonthlySummaryAverageDailyEndingBalance 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 CashflowReportMonthlySummaryAverageDailyEndingBalance 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 CashflowReportMonthlySummaryAverageDailyEndingBalance 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; } CashflowReportMonthlySummaryAverageDailyEndingBalance cashflowReportMonthlySummaryAverageDailyEndingBalance = (CashflowReportMonthlySummaryAverageDailyEndingBalance) o; return Objects.equals(this.amount, cashflowReportMonthlySummaryAverageDailyEndingBalance.amount) && Objects.equals(this.isoCurrencyCode, cashflowReportMonthlySummaryAverageDailyEndingBalance.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, cashflowReportMonthlySummaryAverageDailyEndingBalance.unofficialCurrencyCode); } @Override public int hashCode() { return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CashflowReportMonthlySummaryAverageDailyEndingBalance {\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/Institution.java
src/main/java/com/plaid/client/model/Institution.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.AuthMetadata; import com.plaid.client.model.CountryCode; import com.plaid.client.model.InstitutionStatus; import com.plaid.client.model.PaymentInitiationMetadata; 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; /** * Details relating to a specific financial institution */ @ApiModel(description = "Details relating to a specific financial institution") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Institution { public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_ID) private String institutionId; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_PRODUCTS = "products"; @SerializedName(SERIALIZED_NAME_PRODUCTS) private List<Products> products = new ArrayList<>(); public static final String SERIALIZED_NAME_COUNTRY_CODES = "country_codes"; @SerializedName(SERIALIZED_NAME_COUNTRY_CODES) private List<CountryCode> countryCodes = new ArrayList<>(); public static final String SERIALIZED_NAME_URL = "url"; @SerializedName(SERIALIZED_NAME_URL) private String url; public static final String SERIALIZED_NAME_PRIMARY_COLOR = "primary_color"; @SerializedName(SERIALIZED_NAME_PRIMARY_COLOR) private String primaryColor; public static final String SERIALIZED_NAME_LOGO = "logo"; @SerializedName(SERIALIZED_NAME_LOGO) private String logo; public static final String SERIALIZED_NAME_ROUTING_NUMBERS = "routing_numbers"; @SerializedName(SERIALIZED_NAME_ROUTING_NUMBERS) private List<String> routingNumbers = new ArrayList<>(); public static final String SERIALIZED_NAME_DTC_NUMBERS = "dtc_numbers"; @SerializedName(SERIALIZED_NAME_DTC_NUMBERS) private List<String> dtcNumbers = null; public static final String SERIALIZED_NAME_OAUTH = "oauth"; @SerializedName(SERIALIZED_NAME_OAUTH) private Boolean oauth; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private InstitutionStatus status; public static final String SERIALIZED_NAME_PAYMENT_INITIATION_METADATA = "payment_initiation_metadata"; @SerializedName(SERIALIZED_NAME_PAYMENT_INITIATION_METADATA) private PaymentInitiationMetadata paymentInitiationMetadata; public static final String SERIALIZED_NAME_AUTH_METADATA = "auth_metadata"; @SerializedName(SERIALIZED_NAME_AUTH_METADATA) private AuthMetadata authMetadata; public Institution institutionId(String institutionId) { this.institutionId = institutionId; return this; } /** * Unique identifier for the institution. Note that the same institution may have multiple records, each with different institution IDs; for example, if the institution has migrated to OAuth, there may be separate &#x60;institution_id&#x60;s for the OAuth and non-OAuth versions of the institution. Institutions that operate in different countries or with multiple login portals may also have separate &#x60;institution_id&#x60;s for each country or portal. * @return institutionId **/ @ApiModelProperty(required = true, value = "Unique identifier for the institution. Note that the same institution may have multiple records, each with different institution IDs; for example, if the institution has migrated to OAuth, there may be separate `institution_id`s for the OAuth and non-OAuth versions of the institution. Institutions that operate in different countries or with multiple login portals may also have separate `institution_id`s for each country or portal.") public String getInstitutionId() { return institutionId; } public void setInstitutionId(String institutionId) { this.institutionId = institutionId; } public Institution name(String name) { this.name = name; return this; } /** * The official name of the institution. * @return name **/ @ApiModelProperty(required = true, value = "The official name of the institution.") public String getName() { return name; } public void setName(String name) { this.name = name; } public Institution products(List<Products> products) { this.products = products; return this; } public Institution addProductsItem(Products productsItem) { this.products.add(productsItem); return this; } /** * A list of the Plaid products supported by the institution. Note that only institutions that support Instant Auth will return &#x60;auth&#x60; in the product array; institutions that do not list &#x60;auth&#x60; may still support other Auth methods such as Instant Match or Automated Micro-deposit Verification. To identify institutions that support those methods, use the &#x60;auth_metadata&#x60; object. For more details, see [Full Auth coverage](https://plaid.com/docs/auth/coverage/). The &#x60;income_verification&#x60; product here indicates support for Bank Income. Note: For Signal Transaction Scores and Transfer, listed institutions may be incomplete or incorrect. Instead, use the following: &#x60;balance&#x60; support also indicates coverage of Signal Transaction Scores; &#x60;auth&#x60; support also indicates coverage of Transfer. * @return products **/ @ApiModelProperty(required = true, value = "A list of the Plaid products supported by the institution. Note that only institutions that support Instant Auth will return `auth` in the product array; institutions that do not list `auth` may still support other Auth methods such as Instant Match or Automated Micro-deposit Verification. To identify institutions that support those methods, use the `auth_metadata` object. For more details, see [Full Auth coverage](https://plaid.com/docs/auth/coverage/). The `income_verification` product here indicates support for Bank Income. Note: For Signal Transaction Scores and Transfer, listed institutions may be incomplete or incorrect. Instead, use the following: `balance` support also indicates coverage of Signal Transaction Scores; `auth` support also indicates coverage of Transfer.") public List<Products> getProducts() { return products; } public void setProducts(List<Products> products) { this.products = products; } public Institution countryCodes(List<CountryCode> countryCodes) { this.countryCodes = countryCodes; return this; } public Institution addCountryCodesItem(CountryCode countryCodesItem) { this.countryCodes.add(countryCodesItem); return this; } /** * A list of the country codes supported by the institution. * @return countryCodes **/ @ApiModelProperty(required = true, value = "A list of the country codes supported by the institution.") public List<CountryCode> getCountryCodes() { return countryCodes; } public void setCountryCodes(List<CountryCode> countryCodes) { this.countryCodes = countryCodes; } public Institution url(String url) { this.url = url; return this; } /** * The URL for the institution&#39;s website * @return url **/ @javax.annotation.Nullable @ApiModelProperty(value = "The URL for the institution's website") public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public Institution primaryColor(String primaryColor) { this.primaryColor = primaryColor; return this; } /** * Hexadecimal representation of the primary color used by the institution * @return primaryColor **/ @javax.annotation.Nullable @ApiModelProperty(value = "Hexadecimal representation of the primary color used by the institution") public String getPrimaryColor() { return primaryColor; } public void setPrimaryColor(String primaryColor) { this.primaryColor = primaryColor; } public Institution logo(String logo) { this.logo = logo; return this; } /** * Base64 encoded representation of the institution&#39;s logo, returned as a base64 encoded 152x152 PNG. Not all institutions&#39; logos are available. * @return logo **/ @javax.annotation.Nullable @ApiModelProperty(value = "Base64 encoded representation of the institution's logo, returned as a base64 encoded 152x152 PNG. Not all institutions' logos are available.") public String getLogo() { return logo; } public void setLogo(String logo) { this.logo = logo; } public Institution routingNumbers(List<String> routingNumbers) { this.routingNumbers = routingNumbers; return this; } public Institution addRoutingNumbersItem(String routingNumbersItem) { this.routingNumbers.add(routingNumbersItem); return this; } /** * A list of routing numbers known to be associated with the institution. This list is provided for the purpose of looking up institutions by routing number. It is generally comprehensive but is not guaranteed to be a complete list of routing numbers for an institution. * @return routingNumbers **/ @ApiModelProperty(required = true, value = "A list of routing numbers known to be associated with the institution. This list is provided for the purpose of looking up institutions by routing number. It is generally comprehensive but is not guaranteed to be a complete list of routing numbers for an institution.") public List<String> getRoutingNumbers() { return routingNumbers; } public void setRoutingNumbers(List<String> routingNumbers) { this.routingNumbers = routingNumbers; } public Institution dtcNumbers(List<String> dtcNumbers) { this.dtcNumbers = dtcNumbers; return this; } public Institution addDtcNumbersItem(String dtcNumbersItem) { if (this.dtcNumbers == null) { this.dtcNumbers = new ArrayList<>(); } this.dtcNumbers.add(dtcNumbersItem); return this; } /** * A partial list of DTC numbers associated with the institution. * @return dtcNumbers **/ @javax.annotation.Nullable @ApiModelProperty(value = "A partial list of DTC numbers associated with the institution.") public List<String> getDtcNumbers() { return dtcNumbers; } public void setDtcNumbers(List<String> dtcNumbers) { this.dtcNumbers = dtcNumbers; } public Institution oauth(Boolean oauth) { this.oauth = oauth; return this; } /** * Indicates that the institution has an OAuth login flow. This will be &#x60;true&#x60; if OAuth is supported for any Items associated with the institution, even if the institution also supports non-OAuth connections. * @return oauth **/ @ApiModelProperty(required = true, value = "Indicates that the institution has an OAuth login flow. This will be `true` if OAuth is supported for any Items associated with the institution, even if the institution also supports non-OAuth connections.") public Boolean getOauth() { return oauth; } public void setOauth(Boolean oauth) { this.oauth = oauth; } public Institution status(InstitutionStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public InstitutionStatus getStatus() { return status; } public void setStatus(InstitutionStatus status) { this.status = status; } public Institution paymentInitiationMetadata(PaymentInitiationMetadata paymentInitiationMetadata) { this.paymentInitiationMetadata = paymentInitiationMetadata; return this; } /** * Get paymentInitiationMetadata * @return paymentInitiationMetadata **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaymentInitiationMetadata getPaymentInitiationMetadata() { return paymentInitiationMetadata; } public void setPaymentInitiationMetadata(PaymentInitiationMetadata paymentInitiationMetadata) { this.paymentInitiationMetadata = paymentInitiationMetadata; } public Institution authMetadata(AuthMetadata authMetadata) { this.authMetadata = authMetadata; return this; } /** * Get authMetadata * @return authMetadata **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AuthMetadata getAuthMetadata() { return authMetadata; } public void setAuthMetadata(AuthMetadata authMetadata) { this.authMetadata = authMetadata; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Institution institution = (Institution) o; return Objects.equals(this.institutionId, institution.institutionId) && Objects.equals(this.name, institution.name) && Objects.equals(this.products, institution.products) && Objects.equals(this.countryCodes, institution.countryCodes) && Objects.equals(this.url, institution.url) && Objects.equals(this.primaryColor, institution.primaryColor) && Objects.equals(this.logo, institution.logo) && Objects.equals(this.routingNumbers, institution.routingNumbers) && Objects.equals(this.dtcNumbers, institution.dtcNumbers) && Objects.equals(this.oauth, institution.oauth) && Objects.equals(this.status, institution.status) && Objects.equals(this.paymentInitiationMetadata, institution.paymentInitiationMetadata) && Objects.equals(this.authMetadata, institution.authMetadata); } @Override public int hashCode() { return Objects.hash(institutionId, name, products, countryCodes, url, primaryColor, logo, routingNumbers, dtcNumbers, oauth, status, paymentInitiationMetadata, authMetadata); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Institution {\n"); sb.append(" institutionId: ").append(toIndentedString(institutionId)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" products: ").append(toIndentedString(products)).append("\n"); sb.append(" countryCodes: ").append(toIndentedString(countryCodes)).append("\n"); sb.append(" url: ").append(toIndentedString(url)).append("\n"); sb.append(" primaryColor: ").append(toIndentedString(primaryColor)).append("\n"); sb.append(" logo: ").append(toIndentedString(logo)).append("\n"); sb.append(" routingNumbers: ").append(toIndentedString(routingNumbers)).append("\n"); sb.append(" dtcNumbers: ").append(toIndentedString(dtcNumbers)).append("\n"); sb.append(" oauth: ").append(toIndentedString(oauth)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" paymentInitiationMetadata: ").append(toIndentedString(paymentInitiationMetadata)).append("\n"); sb.append(" authMetadata: ").append(toIndentedString(authMetadata)).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/TransferRefundCreateRequest.java
src/main/java/com/plaid/client/model/TransferRefundCreateRequest.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/refund/create&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/refund/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferRefundCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_TRANSFER_ID = "transfer_id"; @SerializedName(SERIALIZED_NAME_TRANSFER_ID) private String transferId; public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private String amount; public static final String SERIALIZED_NAME_IDEMPOTENCY_KEY = "idempotency_key"; @SerializedName(SERIALIZED_NAME_IDEMPOTENCY_KEY) private String idempotencyKey; public TransferRefundCreateRequest 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 TransferRefundCreateRequest 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 TransferRefundCreateRequest transferId(String transferId) { this.transferId = transferId; return this; } /** * The ID of the transfer to refund. * @return transferId **/ @ApiModelProperty(required = true, value = "The ID of the transfer to refund.") public String getTransferId() { return transferId; } public void setTransferId(String transferId) { this.transferId = transferId; } public TransferRefundCreateRequest amount(String amount) { this.amount = amount; return this; } /** * The amount of the refund (decimal string with two digits of precision e.g. \&quot;10.00\&quot;). * @return amount **/ @ApiModelProperty(required = true, value = "The amount of the refund (decimal string with two digits of precision e.g. \"10.00\").") public String getAmount() { return amount; } public void setAmount(String amount) { this.amount = amount; } public TransferRefundCreateRequest idempotencyKey(String idempotencyKey) { this.idempotencyKey = idempotencyKey; return this; } /** * A random key provided by the client, per unique refund. Maximum of 50 characters. The API supports idempotency for safely retrying requests without accidentally performing the same operation twice. For example, if a request to create a refund fails due to a network connection error, you can retry the request with the same idempotency key to guarantee that only a single refund is created. * @return idempotencyKey **/ @ApiModelProperty(required = true, value = "A random key provided by the client, per unique refund. Maximum of 50 characters. The API supports idempotency for safely retrying requests without accidentally performing the same operation twice. For example, if a request to create a refund fails due to a network connection error, you can retry the request with the same idempotency key to guarantee that only a single refund is created.") public String getIdempotencyKey() { return idempotencyKey; } public void setIdempotencyKey(String idempotencyKey) { this.idempotencyKey = idempotencyKey; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferRefundCreateRequest transferRefundCreateRequest = (TransferRefundCreateRequest) o; return Objects.equals(this.clientId, transferRefundCreateRequest.clientId) && Objects.equals(this.secret, transferRefundCreateRequest.secret) && Objects.equals(this.transferId, transferRefundCreateRequest.transferId) && Objects.equals(this.amount, transferRefundCreateRequest.amount) && Objects.equals(this.idempotencyKey, transferRefundCreateRequest.idempotencyKey); } @Override public int hashCode() { return Objects.hash(clientId, secret, transferId, amount, idempotencyKey); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferRefundCreateRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" transferId: ").append(toIndentedString(transferId)).append("\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" idempotencyKey: ").append(toIndentedString(idempotencyKey)).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/SandboxItemSetVerificationStatusRequest.java
src/main/java/com/plaid/client/model/SandboxItemSetVerificationStatusRequest.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; /** * SandboxItemSetVerificationStatusRequest defines the request schema for &#x60;/sandbox/item/set_verification_status&#x60; */ @ApiModel(description = "SandboxItemSetVerificationStatusRequest defines the request schema for `/sandbox/item/set_verification_status`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SandboxItemSetVerificationStatusRequest { 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_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; /** * The verification status to set the account to. */ @JsonAdapter(VerificationStatusEnum.Adapter.class) public enum VerificationStatusEnum { AUTOMATICALLY_VERIFIED("automatically_verified"), VERIFICATION_EXPIRED("verification_expired"); 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 SandboxItemSetVerificationStatusRequest 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 SandboxItemSetVerificationStatusRequest 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 SandboxItemSetVerificationStatusRequest 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 SandboxItemSetVerificationStatusRequest accountId(String accountId) { this.accountId = accountId; return this; } /** * The &#x60;account_id&#x60; of the account whose verification status is to be modified * @return accountId **/ @ApiModelProperty(required = true, value = "The `account_id` of the account whose verification status is to be modified") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public SandboxItemSetVerificationStatusRequest verificationStatus(VerificationStatusEnum verificationStatus) { this.verificationStatus = verificationStatus; return this; } /** * The verification status to set the account to. * @return verificationStatus **/ @ApiModelProperty(required = true, value = "The verification status to set the account to.") public VerificationStatusEnum getVerificationStatus() { return verificationStatus; } public void setVerificationStatus(VerificationStatusEnum verificationStatus) { this.verificationStatus = verificationStatus; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SandboxItemSetVerificationStatusRequest sandboxItemSetVerificationStatusRequest = (SandboxItemSetVerificationStatusRequest) o; return Objects.equals(this.clientId, sandboxItemSetVerificationStatusRequest.clientId) && Objects.equals(this.secret, sandboxItemSetVerificationStatusRequest.secret) && Objects.equals(this.accessToken, sandboxItemSetVerificationStatusRequest.accessToken) && Objects.equals(this.accountId, sandboxItemSetVerificationStatusRequest.accountId) && Objects.equals(this.verificationStatus, sandboxItemSetVerificationStatusRequest.verificationStatus); } @Override public int hashCode() { return Objects.hash(clientId, secret, accessToken, accountId, verificationStatus); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SandboxItemSetVerificationStatusRequest {\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(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" verificationStatus: ").append(toIndentedString(verificationStatus)).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/CreditPayrollIncomeRefreshResponse.java
src/main/java/com/plaid/client/model/CreditPayrollIncomeRefreshResponse.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; /** * CreditPayrollIncomeRefreshResponse defines the response schema for &#x60;/credit/payroll_income/refresh&#x60; */ @ApiModel(description = "CreditPayrollIncomeRefreshResponse defines the response schema for `/credit/payroll_income/refresh`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditPayrollIncomeRefreshResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public static final String SERIALIZED_NAME_VERIFICATION_REFRESH_STATUS = "verification_refresh_status"; @SerializedName(SERIALIZED_NAME_VERIFICATION_REFRESH_STATUS) private String verificationRefreshStatus; public CreditPayrollIncomeRefreshResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public CreditPayrollIncomeRefreshResponse verificationRefreshStatus(String verificationRefreshStatus) { this.verificationRefreshStatus = verificationRefreshStatus; return this; } /** * The verification refresh status. One of the following: &#x60;\&quot;USER_PRESENCE_REQUIRED\&quot;&#x60; User presence is required to refresh an income verification. &#x60;\&quot;SUCCESSFUL\&quot;&#x60; The income verification refresh was successful. &#x60;\&quot;NOT_FOUND\&quot;&#x60; No new data was found after the income verification refresh. * @return verificationRefreshStatus **/ @ApiModelProperty(required = true, value = "The verification refresh status. One of the following: `\"USER_PRESENCE_REQUIRED\"` User presence is required to refresh an income verification. `\"SUCCESSFUL\"` The income verification refresh was successful. `\"NOT_FOUND\"` No new data was found after the income verification refresh.") public String getVerificationRefreshStatus() { return verificationRefreshStatus; } public void setVerificationRefreshStatus(String verificationRefreshStatus) { this.verificationRefreshStatus = verificationRefreshStatus; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditPayrollIncomeRefreshResponse creditPayrollIncomeRefreshResponse = (CreditPayrollIncomeRefreshResponse) o; return Objects.equals(this.requestId, creditPayrollIncomeRefreshResponse.requestId) && Objects.equals(this.verificationRefreshStatus, creditPayrollIncomeRefreshResponse.verificationRefreshStatus); } @Override public int hashCode() { return Objects.hash(requestId, verificationRefreshStatus); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditPayrollIncomeRefreshResponse {\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append(" verificationRefreshStatus: ").append(toIndentedString(verificationRefreshStatus)).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/CreditSessionBankIncomeStatus.java
src/main/java/com/plaid/client/model/CreditSessionBankIncomeStatus.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; /** * Status of the Bank Income Link session. &#x60;APPROVED&#x60;: User has approved and verified their income &#x60;NO_DEPOSITS_FOUND&#x60;: We attempted, but were unable to find any income in the connected account. &#x60;USER_REPORTED_NO_INCOME&#x60;: The user explicitly indicated that they don&#39;t receive income in the connected account. &#x60;STARTED&#x60;: The user began the bank income portion of the link flow. &#x60;INTERNAL_ERROR&#x60;: The user encountered an internal error. */ @JsonAdapter(CreditSessionBankIncomeStatus.Adapter.class) public enum CreditSessionBankIncomeStatus { APPROVED("APPROVED"), NO_DEPOSITS_FOUND("NO_DEPOSITS_FOUND"), USER_REPORTED_NO_INCOME("USER_REPORTED_NO_INCOME"), // 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; CreditSessionBankIncomeStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static CreditSessionBankIncomeStatus fromValue(String value) { for (CreditSessionBankIncomeStatus b : CreditSessionBankIncomeStatus.values()) { if (b.value.equals(value)) { return b; } } return CreditSessionBankIncomeStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<CreditSessionBankIncomeStatus> { @Override public void write(final JsonWriter jsonWriter, final CreditSessionBankIncomeStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public CreditSessionBankIncomeStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return CreditSessionBankIncomeStatus.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/LinkTokenCreateRequestCraOptionsCashflowInsights.java
src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsCashflowInsights.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.CashflowAttributesVersion; import com.plaid.client.model.PlaidCheckScoreVersion; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Specifies options for initializing Link for use with the Cashflow Insights product. */ @ApiModel(description = "Specifies options for initializing Link for use with the Cashflow Insights product.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkTokenCreateRequestCraOptionsCashflowInsights { public static final String SERIALIZED_NAME_PLAID_CHECK_SCORE_VERSION = "plaid_check_score_version"; @SerializedName(SERIALIZED_NAME_PLAID_CHECK_SCORE_VERSION) private PlaidCheckScoreVersion plaidCheckScoreVersion; public static final String SERIALIZED_NAME_ATTRIBUTES_VERSION = "attributes_version"; @SerializedName(SERIALIZED_NAME_ATTRIBUTES_VERSION) private CashflowAttributesVersion attributesVersion; public LinkTokenCreateRequestCraOptionsCashflowInsights plaidCheckScoreVersion(PlaidCheckScoreVersion plaidCheckScoreVersion) { this.plaidCheckScoreVersion = plaidCheckScoreVersion; return this; } /** * Get plaidCheckScoreVersion * @return plaidCheckScoreVersion **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PlaidCheckScoreVersion getPlaidCheckScoreVersion() { return plaidCheckScoreVersion; } public void setPlaidCheckScoreVersion(PlaidCheckScoreVersion plaidCheckScoreVersion) { this.plaidCheckScoreVersion = plaidCheckScoreVersion; } public LinkTokenCreateRequestCraOptionsCashflowInsights attributesVersion(CashflowAttributesVersion attributesVersion) { this.attributesVersion = attributesVersion; return this; } /** * Get attributesVersion * @return attributesVersion **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CashflowAttributesVersion getAttributesVersion() { return attributesVersion; } public void setAttributesVersion(CashflowAttributesVersion attributesVersion) { this.attributesVersion = attributesVersion; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkTokenCreateRequestCraOptionsCashflowInsights linkTokenCreateRequestCraOptionsCashflowInsights = (LinkTokenCreateRequestCraOptionsCashflowInsights) o; return Objects.equals(this.plaidCheckScoreVersion, linkTokenCreateRequestCraOptionsCashflowInsights.plaidCheckScoreVersion) && Objects.equals(this.attributesVersion, linkTokenCreateRequestCraOptionsCashflowInsights.attributesVersion); } @Override public int hashCode() { return Objects.hash(plaidCheckScoreVersion, attributesVersion); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkTokenCreateRequestCraOptionsCashflowInsights {\n"); sb.append(" plaidCheckScoreVersion: ").append(toIndentedString(plaidCheckScoreVersion)).append("\n"); sb.append(" attributesVersion: ").append(toIndentedString(attributesVersion)).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/CraCheckReportReadyWebhook.java
src/main/java/com/plaid/client/model/CraCheckReportReadyWebhook.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 com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Fired when the Check Report are ready to be retrieved. Once this webhook has fired, the report will be available to retrieve for 24 hours. */ @ApiModel(description = "Fired when the Check Report are ready to be retrieved. Once this webhook has fired, the report will be available to retrieve for 24 hours.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCheckReportReadyWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_SUCCESSFUL_PRODUCTS = "successful_products"; @SerializedName(SERIALIZED_NAME_SUCCESSFUL_PRODUCTS) private List<Products> successfulProducts = null; public static final String SERIALIZED_NAME_FAILED_PRODUCTS = "failed_products"; @SerializedName(SERIALIZED_NAME_FAILED_PRODUCTS) private List<Products> failedProducts = null; public static final String SERIALIZED_NAME_ITEM_IDS = "item_ids"; @SerializedName(SERIALIZED_NAME_ITEM_IDS) private List<String> itemIds = null; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public CraCheckReportReadyWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;CHECK_REPORT&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`CHECK_REPORT`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public CraCheckReportReadyWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;CHECK_REPORT_READY&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`CHECK_REPORT_READY`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public CraCheckReportReadyWebhook userId(String userId) { this.userId = userId; return this; } /** * The &#x60;user_id&#x60; corresponding to the user the webhook has fired for. * @return userId **/ @ApiModelProperty(required = true, value = "The `user_id` corresponding to the user the webhook has fired for.") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public CraCheckReportReadyWebhook successfulProducts(List<Products> successfulProducts) { this.successfulProducts = successfulProducts; return this; } public CraCheckReportReadyWebhook addSuccessfulProductsItem(Products successfulProductsItem) { if (this.successfulProducts == null) { this.successfulProducts = new ArrayList<>(); } this.successfulProducts.add(successfulProductsItem); return this; } /** * Specifies a list of products that have successfully been generated for the report. * @return successfulProducts **/ @javax.annotation.Nullable @ApiModelProperty(value = "Specifies a list of products that have successfully been generated for the report.") public List<Products> getSuccessfulProducts() { return successfulProducts; } public void setSuccessfulProducts(List<Products> successfulProducts) { this.successfulProducts = successfulProducts; } public CraCheckReportReadyWebhook failedProducts(List<Products> failedProducts) { this.failedProducts = failedProducts; return this; } public CraCheckReportReadyWebhook addFailedProductsItem(Products failedProductsItem) { if (this.failedProducts == null) { this.failedProducts = new ArrayList<>(); } this.failedProducts.add(failedProductsItem); return this; } /** * Specifies a list of products that have failed to generate for the report. Additional detail on what caused the failure can be found by calling the product /get endpoint. * @return failedProducts **/ @javax.annotation.Nullable @ApiModelProperty(value = "Specifies a list of products that have failed to generate for the report. Additional detail on what caused the failure can be found by calling the product /get endpoint.") public List<Products> getFailedProducts() { return failedProducts; } public void setFailedProducts(List<Products> failedProducts) { this.failedProducts = failedProducts; } public CraCheckReportReadyWebhook itemIds(List<String> itemIds) { this.itemIds = itemIds; return this; } public CraCheckReportReadyWebhook addItemIdsItem(String itemIdsItem) { if (this.itemIds == null) { this.itemIds = new ArrayList<>(); } this.itemIds.add(itemIdsItem); return this; } /** * A list of &#x60;item_ids&#x60; that is included in the Check Report. * @return itemIds **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of `item_ids` that is included in the Check Report.") public List<String> getItemIds() { return itemIds; } public void setItemIds(List<String> itemIds) { this.itemIds = itemIds; } public CraCheckReportReadyWebhook 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; } CraCheckReportReadyWebhook craCheckReportReadyWebhook = (CraCheckReportReadyWebhook) o; return Objects.equals(this.webhookType, craCheckReportReadyWebhook.webhookType) && Objects.equals(this.webhookCode, craCheckReportReadyWebhook.webhookCode) && Objects.equals(this.userId, craCheckReportReadyWebhook.userId) && Objects.equals(this.successfulProducts, craCheckReportReadyWebhook.successfulProducts) && Objects.equals(this.failedProducts, craCheckReportReadyWebhook.failedProducts) && Objects.equals(this.itemIds, craCheckReportReadyWebhook.itemIds) && Objects.equals(this.environment, craCheckReportReadyWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, userId, successfulProducts, failedProducts, itemIds, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportReadyWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" successfulProducts: ").append(toIndentedString(successfulProducts)).append("\n"); sb.append(" failedProducts: ").append(toIndentedString(failedProducts)).append("\n"); sb.append(" itemIds: ").append(toIndentedString(itemIds)).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/TransferPlatformRequirementSubmitRequest.java
src/main/java/com/plaid/client/model/TransferPlatformRequirementSubmitRequest.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.TransferPlatformRequirementSubmission; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Defines the request schema for &#x60;/transfer/platform/requirement/submit&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/platform/requirement/submit`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferPlatformRequirementSubmitRequest { 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_ORIGINATOR_CLIENT_ID = "originator_client_id"; @SerializedName(SERIALIZED_NAME_ORIGINATOR_CLIENT_ID) private String originatorClientId; public static final String SERIALIZED_NAME_REQUIREMENT_SUBMISSIONS = "requirement_submissions"; @SerializedName(SERIALIZED_NAME_REQUIREMENT_SUBMISSIONS) private List<TransferPlatformRequirementSubmission> requirementSubmissions = new ArrayList<>(); public TransferPlatformRequirementSubmitRequest 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 TransferPlatformRequirementSubmitRequest 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 TransferPlatformRequirementSubmitRequest originatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; return this; } /** * The client ID of the originator * @return originatorClientId **/ @ApiModelProperty(required = true, value = "The client ID of the originator") public String getOriginatorClientId() { return originatorClientId; } public void setOriginatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; } public TransferPlatformRequirementSubmitRequest requirementSubmissions(List<TransferPlatformRequirementSubmission> requirementSubmissions) { this.requirementSubmissions = requirementSubmissions; return this; } public TransferPlatformRequirementSubmitRequest addRequirementSubmissionsItem(TransferPlatformRequirementSubmission requirementSubmissionsItem) { this.requirementSubmissions.add(requirementSubmissionsItem); return this; } /** * Use the &#x60;/transfer/platform/requirement/submit&#x60; endpoint to submit a list of requirement submissions that all relate to the originator. Must contain between 1 and 50 requirement submissions. See [Requirement type schema documentation](https://docs.google.com/document/d/1NEQkTD0sVK50iAQi6xHigrexDUxZ4QxXqSEfV_FFTiU/) for a list of requirements and possible values. * @return requirementSubmissions **/ @ApiModelProperty(required = true, value = "Use the `/transfer/platform/requirement/submit` endpoint to submit a list of requirement submissions that all relate to the originator. Must contain between 1 and 50 requirement submissions. See [Requirement type schema documentation](https://docs.google.com/document/d/1NEQkTD0sVK50iAQi6xHigrexDUxZ4QxXqSEfV_FFTiU/) for a list of requirements and possible values.") public List<TransferPlatformRequirementSubmission> getRequirementSubmissions() { return requirementSubmissions; } public void setRequirementSubmissions(List<TransferPlatformRequirementSubmission> requirementSubmissions) { this.requirementSubmissions = requirementSubmissions; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferPlatformRequirementSubmitRequest transferPlatformRequirementSubmitRequest = (TransferPlatformRequirementSubmitRequest) o; return Objects.equals(this.clientId, transferPlatformRequirementSubmitRequest.clientId) && Objects.equals(this.secret, transferPlatformRequirementSubmitRequest.secret) && Objects.equals(this.originatorClientId, transferPlatformRequirementSubmitRequest.originatorClientId) && Objects.equals(this.requirementSubmissions, transferPlatformRequirementSubmitRequest.requirementSubmissions); } @Override public int hashCode() { return Objects.hash(clientId, secret, originatorClientId, requirementSubmissions); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferPlatformRequirementSubmitRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" originatorClientId: ").append(toIndentedString(originatorClientId)).append("\n"); sb.append(" requirementSubmissions: ").append(toIndentedString(requirementSubmissions)).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/WalletISOCurrencyCode.java
src/main/java/com/plaid/client/model/WalletISOCurrencyCode.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; /** * An ISO-4217 currency code, used with e-wallets and transactions. */ @JsonAdapter(WalletISOCurrencyCode.Adapter.class) public enum WalletISOCurrencyCode { GBP("GBP"), EUR("EUR"), // 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; WalletISOCurrencyCode(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static WalletISOCurrencyCode fromValue(String value) { for (WalletISOCurrencyCode b : WalletISOCurrencyCode.values()) { if (b.value.equals(value)) { return b; } } return WalletISOCurrencyCode.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<WalletISOCurrencyCode> { @Override public void write(final JsonWriter jsonWriter, final WalletISOCurrencyCode enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public WalletISOCurrencyCode read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return WalletISOCurrencyCode.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/BankTransferSweepGetRequest.java
src/main/java/com/plaid/client/model/BankTransferSweepGetRequest.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;/bank_transfer/sweep/get&#x60; */ @ApiModel(description = "Defines the request schema for `/bank_transfer/sweep/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BankTransferSweepGetRequest { 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_SWEEP_ID = "sweep_id"; @SerializedName(SERIALIZED_NAME_SWEEP_ID) private String sweepId; public BankTransferSweepGetRequest 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 BankTransferSweepGetRequest 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 BankTransferSweepGetRequest sweepId(String sweepId) { this.sweepId = sweepId; return this; } /** * Identifier of the sweep. * @return sweepId **/ @ApiModelProperty(required = true, value = "Identifier of the sweep.") public String getSweepId() { return sweepId; } public void setSweepId(String sweepId) { this.sweepId = sweepId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BankTransferSweepGetRequest bankTransferSweepGetRequest = (BankTransferSweepGetRequest) o; return Objects.equals(this.clientId, bankTransferSweepGetRequest.clientId) && Objects.equals(this.secret, bankTransferSweepGetRequest.secret) && Objects.equals(this.sweepId, bankTransferSweepGetRequest.sweepId); } @Override public int hashCode() { return Objects.hash(clientId, secret, sweepId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BankTransferSweepGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" sweepId: ").append(toIndentedString(sweepId)).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/LinkSessionExitMetadataInstitution.java
src/main/java/com/plaid/client/model/LinkSessionExitMetadataInstitution.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 institution object. If the Item was created via Same-Day or Instant micro-deposit verification, will be &#x60;null&#x60;. */ @ApiModel(description = "An institution object. If the Item was created via Same-Day or Instant micro-deposit verification, will be `null`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkSessionExitMetadataInstitution { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_ID) private String institutionId; public LinkSessionExitMetadataInstitution name(String name) { this.name = name; return this; } /** * The full institution name, such as &#x60;Wells Fargo&#x60; * @return name **/ @javax.annotation.Nullable @ApiModelProperty(value = "The full institution name, such as `Wells Fargo`") public String getName() { return name; } public void setName(String name) { this.name = name; } public LinkSessionExitMetadataInstitution institutionId(String institutionId) { this.institutionId = institutionId; return this; } /** * The Plaid institution identifier * @return institutionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The Plaid institution identifier") public String getInstitutionId() { return institutionId; } public void setInstitutionId(String institutionId) { this.institutionId = institutionId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkSessionExitMetadataInstitution linkSessionExitMetadataInstitution = (LinkSessionExitMetadataInstitution) o; return Objects.equals(this.name, linkSessionExitMetadataInstitution.name) && Objects.equals(this.institutionId, linkSessionExitMetadataInstitution.institutionId); } @Override public int hashCode() { return Objects.hash(name, institutionId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkSessionExitMetadataInstitution {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" institutionId: ").append(toIndentedString(institutionId)).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/UserAccountRevokedWebhook.java
src/main/java/com/plaid/client/model/UserAccountRevokedWebhook.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; /** * The &#x60;USER_ACCOUNT_REVOKED&#x60; webhook is fired when an end user has revoked access to their account on the Data Provider&#39;s portal. This webhook is currently sent only for PNC Items, but may be sent in the future for other financial institutions that allow account-level permissions revocation through their portals. Upon receiving this webhook, it is recommended to delete any Plaid-derived data you have stored that is associated with the revoked account. If you are using Auth and receive this webhook, this webhook indicates that the TAN associated with the revoked account is no longer valid and cannot be used to create new transfers. You should not create new ACH transfers for the account that was revoked until access has been re-granted. You can request the user to re-grant access to their account by sending them through [update mode](https://plaid.com/docs/link/update-mode). Alternatively, they may re-grant access directly through the Data Provider&#39;s portal. After the user has re-granted access, Auth customers should call the auth endpoint again to obtain the new TAN. */ @ApiModel(description = "The `USER_ACCOUNT_REVOKED` webhook is fired when an end user has revoked access to their account on the Data Provider's portal. This webhook is currently sent only for PNC Items, but may be sent in the future for other financial institutions that allow account-level permissions revocation through their portals. Upon receiving this webhook, it is recommended to delete any Plaid-derived data you have stored that is associated with the revoked account. If you are using Auth and receive this webhook, this webhook indicates that the TAN associated with the revoked account is no longer valid and cannot be used to create new transfers. You should not create new ACH transfers for the account that was revoked until access has been re-granted. You can request the user to re-grant access to their account by sending them through [update mode](https://plaid.com/docs/link/update-mode). Alternatively, they may re-grant access directly through the Data Provider's portal. After the user has re-granted access, Auth customers should call the auth endpoint again to obtain the new TAN.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class UserAccountRevokedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public UserAccountRevokedWebhook 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 UserAccountRevokedWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;USER_ACCOUNT_REVOKED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`USER_ACCOUNT_REVOKED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public UserAccountRevokedWebhook 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 UserAccountRevokedWebhook accountId(String accountId) { this.accountId = accountId; return this; } /** * The external account ID of the affected account * @return accountId **/ @ApiModelProperty(required = true, value = "The external account ID of the affected account") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public UserAccountRevokedWebhook 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; } UserAccountRevokedWebhook userAccountRevokedWebhook = (UserAccountRevokedWebhook) o; return Objects.equals(this.webhookType, userAccountRevokedWebhook.webhookType) && Objects.equals(this.webhookCode, userAccountRevokedWebhook.webhookCode) && Objects.equals(this.itemId, userAccountRevokedWebhook.itemId) && Objects.equals(this.accountId, userAccountRevokedWebhook.accountId) && Objects.equals(this.environment, userAccountRevokedWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, itemId, accountId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class UserAccountRevokedWebhook {\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(" accountId: ").append(toIndentedString(accountId)).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/GenericScreeningHitLocationItems.java
src/main/java/com/plaid/client/model/GenericScreeningHitLocationItems.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.MatchSummary; import com.plaid.client.model.WatchlistScreeningHitLocations; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Analyzed location information for the associated hit */ @ApiModel(description = "Analyzed location information for the associated hit") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class GenericScreeningHitLocationItems { public static final String SERIALIZED_NAME_ANALYSIS = "analysis"; @SerializedName(SERIALIZED_NAME_ANALYSIS) private MatchSummary analysis; public static final String SERIALIZED_NAME_DATA = "data"; @SerializedName(SERIALIZED_NAME_DATA) private WatchlistScreeningHitLocations data; public GenericScreeningHitLocationItems analysis(MatchSummary analysis) { this.analysis = analysis; return this; } /** * Get analysis * @return analysis **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public MatchSummary getAnalysis() { return analysis; } public void setAnalysis(MatchSummary analysis) { this.analysis = analysis; } public GenericScreeningHitLocationItems data(WatchlistScreeningHitLocations data) { this.data = data; return this; } /** * Get data * @return data **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public WatchlistScreeningHitLocations getData() { return data; } public void setData(WatchlistScreeningHitLocations data) { this.data = data; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } GenericScreeningHitLocationItems genericScreeningHitLocationItems = (GenericScreeningHitLocationItems) o; return Objects.equals(this.analysis, genericScreeningHitLocationItems.analysis) && Objects.equals(this.data, genericScreeningHitLocationItems.data); } @Override public int hashCode() { return Objects.hash(analysis, data); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class GenericScreeningHitLocationItems {\n"); sb.append(" analysis: ").append(toIndentedString(analysis)).append("\n"); sb.append(" data: ").append(toIndentedString(data)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ExternalPaymentScheduleGet.java
src/main/java/com/plaid/client/model/ExternalPaymentScheduleGet.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.ExternalPaymentScheduleBase; import com.plaid.client.model.PaymentScheduleInterval; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * The schedule that the payment will be executed on. If a schedule is provided, the payment is automatically set up as a standing order. If no schedule is specified, the payment will be executed only once. */ @ApiModel(description = "The schedule that the payment will be executed on. If a schedule is provided, the payment is automatically set up as a standing order. If no schedule is specified, the payment will be executed only once.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ExternalPaymentScheduleGet { public static final String SERIALIZED_NAME_INTERVAL = "interval"; @SerializedName(SERIALIZED_NAME_INTERVAL) private PaymentScheduleInterval interval; public static final String SERIALIZED_NAME_INTERVAL_EXECUTION_DAY = "interval_execution_day"; @SerializedName(SERIALIZED_NAME_INTERVAL_EXECUTION_DAY) private Integer intervalExecutionDay; public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) private LocalDate startDate; public static final String SERIALIZED_NAME_END_DATE = "end_date"; @SerializedName(SERIALIZED_NAME_END_DATE) private LocalDate endDate; public static final String SERIALIZED_NAME_ADJUSTED_START_DATE = "adjusted_start_date"; @SerializedName(SERIALIZED_NAME_ADJUSTED_START_DATE) private LocalDate adjustedStartDate; public ExternalPaymentScheduleGet interval(PaymentScheduleInterval interval) { this.interval = interval; return this; } /** * Get interval * @return interval **/ @ApiModelProperty(required = true, value = "") public PaymentScheduleInterval getInterval() { return interval; } public void setInterval(PaymentScheduleInterval interval) { this.interval = interval; } public ExternalPaymentScheduleGet intervalExecutionDay(Integer intervalExecutionDay) { this.intervalExecutionDay = intervalExecutionDay; return this; } /** * The day of the interval on which to schedule the payment. If the payment interval is weekly, &#x60;interval_execution_day&#x60; should be an integer from 1 (Monday) to 7 (Sunday). If the payment interval is monthly, &#x60;interval_execution_day&#x60; should be an integer indicating which day of the month to make the payment on. Integers from 1 to 28 can be used to make a payment on that day of the month. Negative integers from -1 to -5 can be used to make a payment relative to the end of the month. To make a payment on the last day of the month, use -1; to make the payment on the second-to-last day, use -2, and so on. * @return intervalExecutionDay **/ @ApiModelProperty(required = true, value = "The day of the interval on which to schedule the payment. If the payment interval is weekly, `interval_execution_day` should be an integer from 1 (Monday) to 7 (Sunday). If the payment interval is monthly, `interval_execution_day` should be an integer indicating which day of the month to make the payment on. Integers from 1 to 28 can be used to make a payment on that day of the month. Negative integers from -1 to -5 can be used to make a payment relative to the end of the month. To make a payment on the last day of the month, use -1; to make the payment on the second-to-last day, use -2, and so on.") public Integer getIntervalExecutionDay() { return intervalExecutionDay; } public void setIntervalExecutionDay(Integer intervalExecutionDay) { this.intervalExecutionDay = intervalExecutionDay; } public ExternalPaymentScheduleGet startDate(LocalDate startDate) { this.startDate = startDate; return this; } /** * A date in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). Standing order payments will begin on the first &#x60;interval_execution_day&#x60; on or after the &#x60;start_date&#x60;. If the first &#x60;interval_execution_day&#x60; on or after the start date is also the same day that &#x60;/payment_initiation/payment/create&#x60; was called, the bank *may* make the first payment on that day, but it is not guaranteed to do so. * @return startDate **/ @ApiModelProperty(required = true, value = "A date in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). Standing order payments will begin on the first `interval_execution_day` on or after the `start_date`. If the first `interval_execution_day` on or after the start date is also the same day that `/payment_initiation/payment/create` was called, the bank *may* make the first payment on that day, but it is not guaranteed to do so.") public LocalDate getStartDate() { return startDate; } public void setStartDate(LocalDate startDate) { this.startDate = startDate; } public ExternalPaymentScheduleGet endDate(LocalDate endDate) { this.endDate = endDate; return this; } /** * A date in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). Standing order payments will end on the last &#x60;interval_execution_day&#x60; on or before the &#x60;end_date&#x60;. If the only &#x60;interval_execution_day&#x60; between the start date and the end date (inclusive) is also the same day that &#x60;/payment_initiation/payment/create&#x60; was called, the bank *may* make a payment on that day, but it is not guaranteed to do so. * @return endDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "A date in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). Standing order payments will end on the last `interval_execution_day` on or before the `end_date`. If the only `interval_execution_day` between the start date and the end date (inclusive) is also the same day that `/payment_initiation/payment/create` was called, the bank *may* make a payment on that day, but it is not guaranteed to do so.") public LocalDate getEndDate() { return endDate; } public void setEndDate(LocalDate endDate) { this.endDate = endDate; } public ExternalPaymentScheduleGet adjustedStartDate(LocalDate adjustedStartDate) { this.adjustedStartDate = adjustedStartDate; return this; } /** * The start date sent to the bank after adjusting for holidays or weekends. Will be provided in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). If the start date did not require adjustment, this field will be &#x60;null&#x60;. * @return adjustedStartDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The start date sent to the bank after adjusting for holidays or weekends. Will be provided in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). If the start date did not require adjustment, this field will be `null`.") public LocalDate getAdjustedStartDate() { return adjustedStartDate; } public void setAdjustedStartDate(LocalDate adjustedStartDate) { this.adjustedStartDate = adjustedStartDate; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ExternalPaymentScheduleGet externalPaymentScheduleGet = (ExternalPaymentScheduleGet) o; return Objects.equals(this.interval, externalPaymentScheduleGet.interval) && Objects.equals(this.intervalExecutionDay, externalPaymentScheduleGet.intervalExecutionDay) && Objects.equals(this.startDate, externalPaymentScheduleGet.startDate) && Objects.equals(this.endDate, externalPaymentScheduleGet.endDate) && Objects.equals(this.adjustedStartDate, externalPaymentScheduleGet.adjustedStartDate); } @Override public int hashCode() { return Objects.hash(interval, intervalExecutionDay, startDate, endDate, adjustedStartDate); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ExternalPaymentScheduleGet {\n"); sb.append(" interval: ").append(toIndentedString(interval)).append("\n"); sb.append(" intervalExecutionDay: ").append(toIndentedString(intervalExecutionDay)).append("\n"); sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n"); sb.append(" endDate: ").append(toIndentedString(endDate)).append("\n"); sb.append(" adjustedStartDate: ").append(toIndentedString(adjustedStartDate)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferQuestionnaireCreateRequest.java
src/main/java/com/plaid/client/model/TransferQuestionnaireCreateRequest.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/questionnaire/create&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/questionnaire/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferQuestionnaireCreateRequest { 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_ORIGINATOR_CLIENT_ID = "originator_client_id"; @SerializedName(SERIALIZED_NAME_ORIGINATOR_CLIENT_ID) private String originatorClientId; public static final String SERIALIZED_NAME_REDIRECT_URI = "redirect_uri"; @SerializedName(SERIALIZED_NAME_REDIRECT_URI) private String redirectUri; public TransferQuestionnaireCreateRequest 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 TransferQuestionnaireCreateRequest 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 TransferQuestionnaireCreateRequest originatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; return this; } /** * Client ID of the end customer. * @return originatorClientId **/ @ApiModelProperty(required = true, value = "Client ID of the end customer.") public String getOriginatorClientId() { return originatorClientId; } public void setOriginatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; } public TransferQuestionnaireCreateRequest redirectUri(String redirectUri) { this.redirectUri = redirectUri; return this; } /** * URL the end customer will be redirected to after completing questions in Plaid-hosted onboarding flow. * @return redirectUri **/ @ApiModelProperty(required = true, value = "URL the end customer will be redirected to after completing questions in Plaid-hosted onboarding flow.") public String getRedirectUri() { return redirectUri; } public void setRedirectUri(String redirectUri) { this.redirectUri = redirectUri; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferQuestionnaireCreateRequest transferQuestionnaireCreateRequest = (TransferQuestionnaireCreateRequest) o; return Objects.equals(this.clientId, transferQuestionnaireCreateRequest.clientId) && Objects.equals(this.secret, transferQuestionnaireCreateRequest.secret) && Objects.equals(this.originatorClientId, transferQuestionnaireCreateRequest.originatorClientId) && Objects.equals(this.redirectUri, transferQuestionnaireCreateRequest.redirectUri); } @Override public int hashCode() { return Objects.hash(clientId, secret, originatorClientId, redirectUri); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferQuestionnaireCreateRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" originatorClientId: ").append(toIndentedString(originatorClientId)).append("\n"); sb.append(" redirectUri: ").append(toIndentedString(redirectUri)).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/CraPartnerInsightsGetResponse.java
src/main/java/com/plaid/client/model/CraPartnerInsightsGetResponse.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.CraPartnerInsights; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * CraPartnerInsightsGetResponse defines the response schema for &#x60;/cra/partner_insights/get&#x60;. */ @ApiModel(description = "CraPartnerInsightsGetResponse defines the response schema for `/cra/partner_insights/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraPartnerInsightsGetResponse { public static final String SERIALIZED_NAME_REPORT = "report"; @SerializedName(SERIALIZED_NAME_REPORT) private List<CraPartnerInsights> report = null; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public CraPartnerInsightsGetResponse report(List<CraPartnerInsights> report) { this.report = report; return this; } public CraPartnerInsightsGetResponse addReportItem(CraPartnerInsights reportItem) { if (this.report == null) { this.report = new ArrayList<>(); } this.report.add(reportItem); return this; } /** * Get report * @return report **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public List<CraPartnerInsights> getReport() { return report; } public void setReport(List<CraPartnerInsights> report) { this.report = report; } public CraPartnerInsightsGetResponse 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; } CraPartnerInsightsGetResponse craPartnerInsightsGetResponse = (CraPartnerInsightsGetResponse) o; return Objects.equals(this.report, craPartnerInsightsGetResponse.report) && Objects.equals(this.requestId, craPartnerInsightsGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(report, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraPartnerInsightsGetResponse {\n"); sb.append(" report: ").append(toIndentedString(report)).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/AccountFiltersResponse.java
src/main/java/com/plaid/client/model/AccountFiltersResponse.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.CreditFilter; import com.plaid.client.model.DepositoryFilter; import com.plaid.client.model.InvestmentFilter; import com.plaid.client.model.LoanFilter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The &#x60;account_filters&#x60; specified in the original call to &#x60;/link/token/create&#x60;. */ @ApiModel(description = "The `account_filters` specified in the original call to `/link/token/create`. ") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AccountFiltersResponse { public static final String SERIALIZED_NAME_DEPOSITORY = "depository"; @SerializedName(SERIALIZED_NAME_DEPOSITORY) private DepositoryFilter depository; public static final String SERIALIZED_NAME_CREDIT = "credit"; @SerializedName(SERIALIZED_NAME_CREDIT) private CreditFilter credit; public static final String SERIALIZED_NAME_LOAN = "loan"; @SerializedName(SERIALIZED_NAME_LOAN) private LoanFilter loan; public static final String SERIALIZED_NAME_INVESTMENT = "investment"; @SerializedName(SERIALIZED_NAME_INVESTMENT) private InvestmentFilter investment; public AccountFiltersResponse depository(DepositoryFilter depository) { this.depository = depository; return this; } /** * Get depository * @return depository **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public DepositoryFilter getDepository() { return depository; } public void setDepository(DepositoryFilter depository) { this.depository = depository; } public AccountFiltersResponse credit(CreditFilter credit) { this.credit = credit; return this; } /** * Get credit * @return credit **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CreditFilter getCredit() { return credit; } public void setCredit(CreditFilter credit) { this.credit = credit; } public AccountFiltersResponse loan(LoanFilter loan) { this.loan = loan; return this; } /** * Get loan * @return loan **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public LoanFilter getLoan() { return loan; } public void setLoan(LoanFilter loan) { this.loan = loan; } public AccountFiltersResponse investment(InvestmentFilter investment) { this.investment = investment; return this; } /** * Get investment * @return investment **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public InvestmentFilter getInvestment() { return investment; } public void setInvestment(InvestmentFilter investment) { this.investment = investment; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AccountFiltersResponse accountFiltersResponse = (AccountFiltersResponse) o; return Objects.equals(this.depository, accountFiltersResponse.depository) && Objects.equals(this.credit, accountFiltersResponse.credit) && Objects.equals(this.loan, accountFiltersResponse.loan) && Objects.equals(this.investment, accountFiltersResponse.investment); } @Override public int hashCode() { return Objects.hash(depository, credit, loan, investment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AccountFiltersResponse {\n"); sb.append(" depository: ").append(toIndentedString(depository)).append("\n"); sb.append(" credit: ").append(toIndentedString(credit)).append("\n"); sb.append(" loan: ").append(toIndentedString(loan)).append("\n"); sb.append(" investment: ").append(toIndentedString(investment)).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/WalletTransactionAmount.java
src/main/java/com/plaid/client/model/WalletTransactionAmount.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.WalletISOCurrencyCode; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The amount and currency of a transaction */ @ApiModel(description = "The amount and currency of a transaction") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WalletTransactionAmount { public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code"; @SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE) private WalletISOCurrencyCode isoCurrencyCode; public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) private Double value; public WalletTransactionAmount isoCurrencyCode(WalletISOCurrencyCode isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * Get isoCurrencyCode * @return isoCurrencyCode **/ @ApiModelProperty(required = true, value = "") public WalletISOCurrencyCode getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(WalletISOCurrencyCode isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public WalletTransactionAmount value(Double value) { this.value = value; return this; } /** * The amount of the transaction. Must contain at most two digits of precision e.g. &#x60;1.23&#x60;. * minimum: 0.01 * @return value **/ @ApiModelProperty(required = true, value = "The amount of the transaction. Must contain at most two digits of precision e.g. `1.23`.") public Double getValue() { return value; } public void setValue(Double value) { this.value = value; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } WalletTransactionAmount walletTransactionAmount = (WalletTransactionAmount) o; return Objects.equals(this.isoCurrencyCode, walletTransactionAmount.isoCurrencyCode) && Objects.equals(this.value, walletTransactionAmount.value); } @Override public int hashCode() { return Objects.hash(isoCurrencyCode, value); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WalletTransactionAmount {\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).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/EntityScreeningHitNames.java
src/main/java/com/plaid/client/model/EntityScreeningHitNames.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.WeakAliasDetermination; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Name information for the associated entity watchlist hit */ @ApiModel(description = "Name information for the associated entity watchlist hit") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class EntityScreeningHitNames { public static final String SERIALIZED_NAME_FULL = "full"; @SerializedName(SERIALIZED_NAME_FULL) private String full; public static final String SERIALIZED_NAME_IS_PRIMARY = "is_primary"; @SerializedName(SERIALIZED_NAME_IS_PRIMARY) private Boolean isPrimary; public static final String SERIALIZED_NAME_WEAK_ALIAS_DETERMINATION = "weak_alias_determination"; @SerializedName(SERIALIZED_NAME_WEAK_ALIAS_DETERMINATION) private WeakAliasDetermination weakAliasDetermination; public EntityScreeningHitNames full(String full) { this.full = full; return this; } /** * The full name of the entity. * @return full **/ @ApiModelProperty(example = "Al Qaida", required = true, value = "The full name of the entity.") public String getFull() { return full; } public void setFull(String full) { this.full = full; } public EntityScreeningHitNames isPrimary(Boolean isPrimary) { this.isPrimary = isPrimary; return this; } /** * Primary names are those most commonly used to refer to this entity. Only one name will ever be marked as primary. * @return isPrimary **/ @ApiModelProperty(example = "false", required = true, value = "Primary names are those most commonly used to refer to this entity. Only one name will ever be marked as primary.") public Boolean getIsPrimary() { return isPrimary; } public void setIsPrimary(Boolean isPrimary) { this.isPrimary = isPrimary; } public EntityScreeningHitNames weakAliasDetermination(WeakAliasDetermination weakAliasDetermination) { this.weakAliasDetermination = weakAliasDetermination; return this; } /** * Get weakAliasDetermination * @return weakAliasDetermination **/ @ApiModelProperty(required = true, value = "") public WeakAliasDetermination getWeakAliasDetermination() { return weakAliasDetermination; } public void setWeakAliasDetermination(WeakAliasDetermination weakAliasDetermination) { this.weakAliasDetermination = weakAliasDetermination; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } EntityScreeningHitNames entityScreeningHitNames = (EntityScreeningHitNames) o; return Objects.equals(this.full, entityScreeningHitNames.full) && Objects.equals(this.isPrimary, entityScreeningHitNames.isPrimary) && Objects.equals(this.weakAliasDetermination, entityScreeningHitNames.weakAliasDetermination); } @Override public int hashCode() { return Objects.hash(full, isPrimary, weakAliasDetermination); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class EntityScreeningHitNames {\n"); sb.append(" full: ").append(toIndentedString(full)).append("\n"); sb.append(" isPrimary: ").append(toIndentedString(isPrimary)).append("\n"); sb.append(" weakAliasDetermination: ").append(toIndentedString(weakAliasDetermination)).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/BusinessVerificationStatusOverall.java
src/main/java/com/plaid/client/model/BusinessVerificationStatusOverall.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; /** * Status of the overall business verification */ @JsonAdapter(BusinessVerificationStatusOverall.Adapter.class) public enum BusinessVerificationStatusOverall { ACTIVE("active"), SUCCESS("success"), FAILED("failed"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; BusinessVerificationStatusOverall(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static BusinessVerificationStatusOverall fromValue(String value) { for (BusinessVerificationStatusOverall b : BusinessVerificationStatusOverall.values()) { if (b.value.equals(value)) { return b; } } return BusinessVerificationStatusOverall.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<BusinessVerificationStatusOverall> { @Override public void write(final JsonWriter jsonWriter, final BusinessVerificationStatusOverall enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public BusinessVerificationStatusOverall read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return BusinessVerificationStatusOverall.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/EmploymentVerificationGetRequest.java
src/main/java/com/plaid/client/model/EmploymentVerificationGetRequest.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; /** * EmploymentVerificationGetRequest defines the request schema for &#x60;/employment/verification/get&#x60;. */ @ApiModel(description = "EmploymentVerificationGetRequest defines the request schema for `/employment/verification/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class EmploymentVerificationGetRequest { 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 EmploymentVerificationGetRequest 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 EmploymentVerificationGetRequest 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 EmploymentVerificationGetRequest 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; } EmploymentVerificationGetRequest employmentVerificationGetRequest = (EmploymentVerificationGetRequest) o; return Objects.equals(this.clientId, employmentVerificationGetRequest.clientId) && Objects.equals(this.secret, employmentVerificationGetRequest.secret) && Objects.equals(this.accessToken, employmentVerificationGetRequest.accessToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, accessToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class EmploymentVerificationGetRequest {\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/IssuesSearchRequest.java
src/main/java/com/plaid/client/model/IssuesSearchRequest.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; /** * IssuesSearchRequest defines the request schema for &#x60;/issues/search&#x60;. */ @ApiModel(description = "IssuesSearchRequest defines the request schema for `/issues/search`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IssuesSearchRequest { 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_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_LINK_SESSION_ID = "link_session_id"; @SerializedName(SERIALIZED_NAME_LINK_SESSION_ID) private String linkSessionId; public static final String SERIALIZED_NAME_LINK_SESSION_REQUEST_ID = "link_session_request_id"; @SerializedName(SERIALIZED_NAME_LINK_SESSION_REQUEST_ID) private String linkSessionRequestId; public IssuesSearchRequest 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 IssuesSearchRequest 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 IssuesSearchRequest itemId(String itemId) { this.itemId = itemId; return this; } /** * A unique identifier for the Plaid Item. * @return itemId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique identifier for the Plaid Item.") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public IssuesSearchRequest linkSessionId(String linkSessionId) { this.linkSessionId = linkSessionId; return this; } /** * A unique identifier for the Link session. * @return linkSessionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique identifier for the Link session.") public String getLinkSessionId() { return linkSessionId; } public void setLinkSessionId(String linkSessionId) { this.linkSessionId = linkSessionId; } public IssuesSearchRequest linkSessionRequestId(String linkSessionRequestId) { this.linkSessionRequestId = linkSessionRequestId; return this; } /** * The &#x60;request_id&#x60; for the Link session that might have had an institution connection issue. * @return linkSessionRequestId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The `request_id` for the Link session that might have had an institution connection issue.") public String getLinkSessionRequestId() { return linkSessionRequestId; } public void setLinkSessionRequestId(String linkSessionRequestId) { this.linkSessionRequestId = linkSessionRequestId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IssuesSearchRequest issuesSearchRequest = (IssuesSearchRequest) o; return Objects.equals(this.clientId, issuesSearchRequest.clientId) && Objects.equals(this.secret, issuesSearchRequest.secret) && Objects.equals(this.itemId, issuesSearchRequest.itemId) && Objects.equals(this.linkSessionId, issuesSearchRequest.linkSessionId) && Objects.equals(this.linkSessionRequestId, issuesSearchRequest.linkSessionRequestId); } @Override public int hashCode() { return Objects.hash(clientId, secret, itemId, linkSessionId, linkSessionRequestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IssuesSearchRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" linkSessionId: ").append(toIndentedString(linkSessionId)).append("\n"); sb.append(" linkSessionRequestId: ").append(toIndentedString(linkSessionRequestId)).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/ProcessorSignalPrepareResponse.java
src/main/java/com/plaid/client/model/ProcessorSignalPrepareResponse.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; /** * ProcessorSignalPrepareResponse defines the response schema for &#x60;/processor/signal/prepare&#x60; */ @ApiModel(description = "ProcessorSignalPrepareResponse defines the response schema for `/processor/signal/prepare`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorSignalPrepareResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public ProcessorSignalPrepareResponse 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; } ProcessorSignalPrepareResponse processorSignalPrepareResponse = (ProcessorSignalPrepareResponse) o; return Objects.equals(this.requestId, processorSignalPrepareResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorSignalPrepareResponse {\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/ServicerAddressData.java
src/main/java/com/plaid/client/model/ServicerAddressData.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 student loan servicer. This is generally the remittance address to which payments should be sent. */ @ApiModel(description = "The address of the student loan servicer. This is generally the remittance address to which payments should be sent.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ServicerAddressData { 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 ServicerAddressData city(String city) { this.city = city; return this; } /** * The full city name * @return city **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The full city name") public String getCity() { return city; } public void setCity(String city) { this.city = city; } public ServicerAddressData region(String region) { this.region = region; return this; } /** * The region or state Example: &#x60;\&quot;NC\&quot;&#x60; * @return region **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The region or state Example: `\"NC\"`") public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public ServicerAddressData 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(required = true, 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 ServicerAddressData postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * The postal code * @return postalCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The postal code") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public ServicerAddressData country(String country) { this.country = country; return this; } /** * The ISO 3166-1 alpha-2 country code * @return country **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ISO 3166-1 alpha-2 country code") 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; } ServicerAddressData servicerAddressData = (ServicerAddressData) o; return Objects.equals(this.city, servicerAddressData.city) && Objects.equals(this.region, servicerAddressData.region) && Objects.equals(this.street, servicerAddressData.street) && Objects.equals(this.postalCode, servicerAddressData.postalCode) && Objects.equals(this.country, servicerAddressData.country); } @Override public int hashCode() { return Objects.hash(city, region, street, postalCode, country); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ServicerAddressData {\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/PaymentInitiationRecipientListResponse.java
src/main/java/com/plaid/client/model/PaymentInitiationRecipientListResponse.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.PaymentInitiationRecipient; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * PaymentInitiationRecipientListResponse defines the response schema for &#x60;/payment_initiation/recipient/list&#x60; */ @ApiModel(description = "PaymentInitiationRecipientListResponse defines the response schema for `/payment_initiation/recipient/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentInitiationRecipientListResponse { public static final String SERIALIZED_NAME_RECIPIENTS = "recipients"; @SerializedName(SERIALIZED_NAME_RECIPIENTS) private List<PaymentInitiationRecipient> recipients = new ArrayList<>(); public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public static final String SERIALIZED_NAME_NEXT_CURSOR = "next_cursor"; @SerializedName(SERIALIZED_NAME_NEXT_CURSOR) private String nextCursor; public PaymentInitiationRecipientListResponse recipients(List<PaymentInitiationRecipient> recipients) { this.recipients = recipients; return this; } public PaymentInitiationRecipientListResponse addRecipientsItem(PaymentInitiationRecipient recipientsItem) { this.recipients.add(recipientsItem); return this; } /** * An array of payment recipients created for Payment Initiation * @return recipients **/ @ApiModelProperty(required = true, value = "An array of payment recipients created for Payment Initiation") public List<PaymentInitiationRecipient> getRecipients() { return recipients; } public void setRecipients(List<PaymentInitiationRecipient> recipients) { this.recipients = recipients; } public PaymentInitiationRecipientListResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public PaymentInitiationRecipientListResponse nextCursor(String nextCursor) { this.nextCursor = nextCursor; return this; } /** * The value that, when used as the optional &#x60;cursor&#x60; parameter to &#x60;/payment_initiation/recipient/list&#x60;, will return the corresponding recipient as its first recipient. * @return nextCursor **/ @javax.annotation.Nullable @ApiModelProperty(value = "The value that, when used as the optional `cursor` parameter to `/payment_initiation/recipient/list`, will return the corresponding recipient as its first recipient.") public String getNextCursor() { return nextCursor; } public void setNextCursor(String nextCursor) { this.nextCursor = nextCursor; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaymentInitiationRecipientListResponse paymentInitiationRecipientListResponse = (PaymentInitiationRecipientListResponse) o; return Objects.equals(this.recipients, paymentInitiationRecipientListResponse.recipients) && Objects.equals(this.requestId, paymentInitiationRecipientListResponse.requestId) && Objects.equals(this.nextCursor, paymentInitiationRecipientListResponse.nextCursor); } @Override public int hashCode() { return Objects.hash(recipients, requestId, nextCursor); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentInitiationRecipientListResponse {\n"); sb.append(" recipients: ").append(toIndentedString(recipients)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append(" nextCursor: ").append(toIndentedString(nextCursor)).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/TotalReportInflowAmount.java
src/main/java/com/plaid/client/model/TotalReportInflowAmount.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 debit transactions into the report&#39;s accounts in the time period of the report. This field only takes into account USD transactions from the accounts. */ @ApiModel(description = "Total amount of debit transactions into the report's accounts in the time period of the report. This field only takes into account USD transactions from the accounts.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TotalReportInflowAmount { 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 TotalReportInflowAmount 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 TotalReportInflowAmount 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 TotalReportInflowAmount 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; } TotalReportInflowAmount totalReportInflowAmount = (TotalReportInflowAmount) o; return Objects.equals(this.amount, totalReportInflowAmount.amount) && Objects.equals(this.isoCurrencyCode, totalReportInflowAmount.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, totalReportInflowAmount.unofficialCurrencyCode); } @Override public int hashCode() { return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TotalReportInflowAmount {\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/IdentityUpdateTypes.java
src/main/java/com/plaid/client/model/IdentityUpdateTypes.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 possible types of identity data that may have changed. */ @JsonAdapter(IdentityUpdateTypes.Adapter.class) public enum IdentityUpdateTypes { PHONES("PHONES"), ADDRESSES("ADDRESSES"), EMAILS("EMAILS"), NAMES("NAMES"), // 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; IdentityUpdateTypes(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static IdentityUpdateTypes fromValue(String value) { for (IdentityUpdateTypes b : IdentityUpdateTypes.values()) { if (b.value.equals(value)) { return b; } } return IdentityUpdateTypes.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<IdentityUpdateTypes> { @Override public void write(final JsonWriter jsonWriter, final IdentityUpdateTypes enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public IdentityUpdateTypes read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return IdentityUpdateTypes.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/PaymentProfileStatus.java
src/main/java/com/plaid/client/model/PaymentProfileStatus.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 given Payment Profile. &#x60;READY&#x60;: This Payment Profile is ready to be used to create transfers using &#x60;/transfer/authorization/create&#x60; and &#x60;/transfer/create&#x60;. &#x60;PENDING&#x60;: This Payment Profile is not ready to be used. You’ll need to call &#x60;/link/token/create&#x60; and provide the &#x60;payment_profile_token&#x60; in the &#x60;transfer.payment_profile_token&#x60; field to initiate the account linking experience. &#x60;REMOVED&#x60;: This Payment Profile has been removed. */ @JsonAdapter(PaymentProfileStatus.Adapter.class) public enum PaymentProfileStatus { PENDING("PENDING"), READY("READY"), REMOVED("REMOVED"), // 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; PaymentProfileStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PaymentProfileStatus fromValue(String value) { for (PaymentProfileStatus b : PaymentProfileStatus.values()) { if (b.value.equals(value)) { return b; } } return PaymentProfileStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<PaymentProfileStatus> { @Override public void write(final JsonWriter jsonWriter, final PaymentProfileStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PaymentProfileStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PaymentProfileStatus.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/NetworkStatusGetRequest.java
src/main/java/com/plaid/client/model/NetworkStatusGetRequest.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.NetworkStatusGetUser; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * NetworkStatusGetRequest defines the request schema for &#x60;/network/status/get&#x60; */ @ApiModel(description = "NetworkStatusGetRequest defines the request schema for `/network/status/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class NetworkStatusGetRequest { 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 = "user"; @SerializedName(SERIALIZED_NAME_USER) private NetworkStatusGetUser user; public static final String SERIALIZED_NAME_TEMPLATE_ID = "template_id"; @SerializedName(SERIALIZED_NAME_TEMPLATE_ID) private String templateId; public NetworkStatusGetRequest 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 NetworkStatusGetRequest 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 NetworkStatusGetRequest user(NetworkStatusGetUser user) { this.user = user; return this; } /** * Get user * @return user **/ @ApiModelProperty(required = true, value = "") public NetworkStatusGetUser getUser() { return user; } public void setUser(NetworkStatusGetUser user) { this.user = user; } public NetworkStatusGetRequest templateId(String templateId) { this.templateId = templateId; return this; } /** * The id of a template defined in Plaid Dashboard. This field is used if you have additional criteria that you want to check against (e.g. Layer eligibility). * @return templateId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The id of a template defined in Plaid Dashboard. This field is used if you have additional criteria that you want to check against (e.g. Layer eligibility).") public String getTemplateId() { return templateId; } public void setTemplateId(String templateId) { this.templateId = templateId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } NetworkStatusGetRequest networkStatusGetRequest = (NetworkStatusGetRequest) o; return Objects.equals(this.clientId, networkStatusGetRequest.clientId) && Objects.equals(this.secret, networkStatusGetRequest.secret) && Objects.equals(this.user, networkStatusGetRequest.user) && Objects.equals(this.templateId, networkStatusGetRequest.templateId); } @Override public int hashCode() { return Objects.hash(clientId, secret, user, templateId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class NetworkStatusGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" user: ").append(toIndentedString(user)).append("\n"); sb.append(" templateId: ").append(toIndentedString(templateId)).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/LinkTokenCreateRequestCraOptionsLendScore.java
src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsLendScore.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; /** * Specifies options for initializing Link for use with the CRA LendScore product. */ @ApiModel(description = "Specifies options for initializing Link for use with the CRA LendScore product.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkTokenCreateRequestCraOptionsLendScore { public static final String SERIALIZED_NAME_LEND_SCORE_VERSION = "lend_score_version"; @SerializedName(SERIALIZED_NAME_LEND_SCORE_VERSION) private PlaidLendScoreVersion lendScoreVersion; public LinkTokenCreateRequestCraOptionsLendScore 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; } LinkTokenCreateRequestCraOptionsLendScore linkTokenCreateRequestCraOptionsLendScore = (LinkTokenCreateRequestCraOptionsLendScore) o; return Objects.equals(this.lendScoreVersion, linkTokenCreateRequestCraOptionsLendScore.lendScoreVersion); } @Override public int hashCode() { return Objects.hash(lendScoreVersion); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkTokenCreateRequestCraOptionsLendScore {\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/DashboardUserListResponse.java
src/main/java/com/plaid/client/model/DashboardUserListResponse.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.DashboardUser; 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 dashboard users */ @ApiModel(description = "Paginated list of dashboard users") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class DashboardUserListResponse { public static final String SERIALIZED_NAME_DASHBOARD_USERS = "dashboard_users"; @SerializedName(SERIALIZED_NAME_DASHBOARD_USERS) private List<DashboardUser> dashboardUsers = 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 DashboardUserListResponse dashboardUsers(List<DashboardUser> dashboardUsers) { this.dashboardUsers = dashboardUsers; return this; } public DashboardUserListResponse addDashboardUsersItem(DashboardUser dashboardUsersItem) { this.dashboardUsers.add(dashboardUsersItem); return this; } /** * List of dashboard users * @return dashboardUsers **/ @ApiModelProperty(required = true, value = "List of dashboard users") public List<DashboardUser> getDashboardUsers() { return dashboardUsers; } public void setDashboardUsers(List<DashboardUser> dashboardUsers) { this.dashboardUsers = dashboardUsers; } public DashboardUserListResponse 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 DashboardUserListResponse 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; } DashboardUserListResponse dashboardUserListResponse = (DashboardUserListResponse) o; return Objects.equals(this.dashboardUsers, dashboardUserListResponse.dashboardUsers) && Objects.equals(this.nextCursor, dashboardUserListResponse.nextCursor) && Objects.equals(this.requestId, dashboardUserListResponse.requestId); } @Override public int hashCode() { return Objects.hash(dashboardUsers, nextCursor, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class DashboardUserListResponse {\n"); sb.append(" dashboardUsers: ").append(toIndentedString(dashboardUsers)).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/WatchlistScreeningIndividualUpdateRequestResettableField.java
src/main/java/com/plaid/client/model/WatchlistScreeningIndividualUpdateRequestResettableField.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 name of a field that can be reset back to null */ @JsonAdapter(WatchlistScreeningIndividualUpdateRequestResettableField.Adapter.class) public enum WatchlistScreeningIndividualUpdateRequestResettableField { ASSIGNEE("assignee"), // 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; WatchlistScreeningIndividualUpdateRequestResettableField(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static WatchlistScreeningIndividualUpdateRequestResettableField fromValue(String value) { for (WatchlistScreeningIndividualUpdateRequestResettableField b : WatchlistScreeningIndividualUpdateRequestResettableField.values()) { if (b.value.equals(value)) { return b; } } return WatchlistScreeningIndividualUpdateRequestResettableField.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<WatchlistScreeningIndividualUpdateRequestResettableField> { @Override public void write(final JsonWriter jsonWriter, final WatchlistScreeningIndividualUpdateRequestResettableField enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public WatchlistScreeningIndividualUpdateRequestResettableField read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return WatchlistScreeningIndividualUpdateRequestResettableField.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/CashflowReportTransactionsGetRequest.java
src/main/java/com/plaid/client/model/CashflowReportTransactionsGetRequest.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.CashflowReportTransactionsGetRequestOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * CashflowReportTransactionsGetRequest defines the request schema for &#x60;/cashflow_report/transactions/get&#x60; */ @ApiModel(description = "CashflowReportTransactionsGetRequest defines the request schema for `/cashflow_report/transactions/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CashflowReportTransactionsGetRequest { 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_COUNT = "count"; @SerializedName(SERIALIZED_NAME_COUNT) private Integer count = 100; public static final String SERIALIZED_NAME_CURSOR = "cursor"; @SerializedName(SERIALIZED_NAME_CURSOR) private String cursor; public static final String SERIALIZED_NAME_OPTIONS = "options"; @SerializedName(SERIALIZED_NAME_OPTIONS) private CashflowReportTransactionsGetRequestOptions options; public CashflowReportTransactionsGetRequest 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 CashflowReportTransactionsGetRequest 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 CashflowReportTransactionsGetRequest 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 CashflowReportTransactionsGetRequest count(Integer count) { this.count = count; return this; } /** * Number of transactions to fetch per call * minimum: 1 * maximum: 500 * @return count **/ @javax.annotation.Nullable @ApiModelProperty(value = "Number of transactions to fetch per call") public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } public CashflowReportTransactionsGetRequest cursor(String cursor) { this.cursor = cursor; return this; } /** * The cursor value represents the last update requested. Pass in the empty string \&quot;\&quot; in the first call. * @return cursor **/ @javax.annotation.Nullable @ApiModelProperty(value = "The cursor value represents the last update requested. Pass in the empty string \"\" in the first call.") public String getCursor() { return cursor; } public void setCursor(String cursor) { this.cursor = cursor; } public CashflowReportTransactionsGetRequest options(CashflowReportTransactionsGetRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CashflowReportTransactionsGetRequestOptions getOptions() { return options; } public void setOptions(CashflowReportTransactionsGetRequestOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CashflowReportTransactionsGetRequest cashflowReportTransactionsGetRequest = (CashflowReportTransactionsGetRequest) o; return Objects.equals(this.clientId, cashflowReportTransactionsGetRequest.clientId) && Objects.equals(this.accessToken, cashflowReportTransactionsGetRequest.accessToken) && Objects.equals(this.secret, cashflowReportTransactionsGetRequest.secret) && Objects.equals(this.count, cashflowReportTransactionsGetRequest.count) && Objects.equals(this.cursor, cashflowReportTransactionsGetRequest.cursor) && Objects.equals(this.options, cashflowReportTransactionsGetRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, accessToken, secret, count, cursor, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CashflowReportTransactionsGetRequest {\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(" count: ").append(toIndentedString(count)).append("\n"); sb.append(" cursor: ").append(toIndentedString(cursor)).append("\n"); sb.append(" options: ").append(toIndentedString(options)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferACHNetwork.java
src/main/java/com/plaid/client/model/TransferACHNetwork.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 ACH networks used for the funds flow. For requests submitted as either &#x60;ach&#x60; or &#x60;same-day-ach&#x60; the cutoff for Same Day ACH is 3:30 PM Eastern Time and the cutoff for Standard ACH transfers is 8:30 PM Eastern Time. It is recommended to submit a request at least 15 minutes before the cutoff time in order to ensure that it will be processed before the cutoff. Any request that is indicated as &#x60;same-day-ach&#x60; and that misses the Same Day ACH cutoff, but is submitted in time for the Standard ACH cutoff, will be sent over Standard ACH rails and will not incur same-day charges. */ @JsonAdapter(TransferACHNetwork.Adapter.class) public enum TransferACHNetwork { ACH("ach"), SAME_DAY_ACH("same-day-ach"), // 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; TransferACHNetwork(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransferACHNetwork fromValue(String value) { for (TransferACHNetwork b : TransferACHNetwork.values()) { if (b.value.equals(value)) { return b; } } return TransferACHNetwork.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<TransferACHNetwork> { @Override public void write(final JsonWriter jsonWriter, final TransferACHNetwork enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransferACHNetwork read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransferACHNetwork.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/TransactionStreamAmount.java
src/main/java/com/plaid/client/model/TransactionStreamAmount.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; /** * Object with data pertaining to an amount on the transaction stream. */ @ApiModel(description = "Object with data pertaining to an amount on the transaction stream.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionStreamAmount { 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 TransactionStreamAmount amount(Double amount) { this.amount = amount; return this; } /** * Represents the numerical value of an amount. * @return amount **/ @javax.annotation.Nullable @ApiModelProperty(value = "Represents the numerical value of an amount.") public Double getAmount() { return amount; } public void setAmount(Double amount) { this.amount = amount; } public TransactionStreamAmount 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;. 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 isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ISO-4217 currency code of the amount. Always `null` if `unofficial_currency_code` is non-`null`. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported `iso_currency_code`s.") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public TransactionStreamAmount 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(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; } TransactionStreamAmount transactionStreamAmount = (TransactionStreamAmount) o; return Objects.equals(this.amount, transactionStreamAmount.amount) && Objects.equals(this.isoCurrencyCode, transactionStreamAmount.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, transactionStreamAmount.unofficialCurrencyCode); } @Override public int hashCode() { return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionStreamAmount {\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/FDXNotificationSeverity.java
src/main/java/com/plaid/client/model/FDXNotificationSeverity.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; /** * Severity level of notification */ @JsonAdapter(FDXNotificationSeverity.Adapter.class) public enum FDXNotificationSeverity { EMERGENCY("EMERGENCY"), ALERT("ALERT"), WARNING("WARNING"), NOTICE("NOTICE"), INFO("INFO"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; FDXNotificationSeverity(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static FDXNotificationSeverity fromValue(String value) { for (FDXNotificationSeverity b : FDXNotificationSeverity.values()) { if (b.value.equals(value)) { return b; } } return FDXNotificationSeverity.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<FDXNotificationSeverity> { @Override public void write(final JsonWriter jsonWriter, final FDXNotificationSeverity enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public FDXNotificationSeverity read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return FDXNotificationSeverity.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/InstitutionsSearchRequestOptions.java
src/main/java/com/plaid/client/model/InstitutionsSearchRequestOptions.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.InstitutionsSearchPaymentInitiationOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An optional object to filter &#x60;/institutions/search&#x60; results. */ @ApiModel(description = "An optional object to filter `/institutions/search` results.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InstitutionsSearchRequestOptions { 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 static final String SERIALIZED_NAME_PAYMENT_INITIATION = "payment_initiation"; @SerializedName(SERIALIZED_NAME_PAYMENT_INITIATION) private InstitutionsSearchPaymentInitiationOptions paymentInitiation; public InstitutionsSearchRequestOptions 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 InstitutionsSearchRequestOptions includeOptionalMetadata(Boolean includeOptionalMetadata) { this.includeOptionalMetadata = includeOptionalMetadata; return this; } /** * When true, return the institution&#39;s homepage URL, logo and primary brand color. * @return includeOptionalMetadata **/ @javax.annotation.Nullable @ApiModelProperty(value = "When true, return the institution's homepage URL, logo and primary brand color.") public Boolean getIncludeOptionalMetadata() { return includeOptionalMetadata; } public void setIncludeOptionalMetadata(Boolean includeOptionalMetadata) { this.includeOptionalMetadata = includeOptionalMetadata; } public InstitutionsSearchRequestOptions 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 InstitutionsSearchRequestOptions 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; } public InstitutionsSearchRequestOptions paymentInitiation(InstitutionsSearchPaymentInitiationOptions paymentInitiation) { this.paymentInitiation = paymentInitiation; return this; } /** * Get paymentInitiation * @return paymentInitiation **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public InstitutionsSearchPaymentInitiationOptions getPaymentInitiation() { return paymentInitiation; } public void setPaymentInitiation(InstitutionsSearchPaymentInitiationOptions paymentInitiation) { this.paymentInitiation = paymentInitiation; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } InstitutionsSearchRequestOptions institutionsSearchRequestOptions = (InstitutionsSearchRequestOptions) o; return Objects.equals(this.oauth, institutionsSearchRequestOptions.oauth) && Objects.equals(this.includeOptionalMetadata, institutionsSearchRequestOptions.includeOptionalMetadata) && Objects.equals(this.includeAuthMetadata, institutionsSearchRequestOptions.includeAuthMetadata) && Objects.equals(this.includePaymentInitiationMetadata, institutionsSearchRequestOptions.includePaymentInitiationMetadata) && Objects.equals(this.paymentInitiation, institutionsSearchRequestOptions.paymentInitiation); } @Override public int hashCode() { return Objects.hash(oauth, includeOptionalMetadata, includeAuthMetadata, includePaymentInitiationMetadata, paymentInitiation); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InstitutionsSearchRequestOptions {\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(" paymentInitiation: ").append(toIndentedString(paymentInitiation)).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/MonitoringConsumerReportPermissiblePurpose.java
src/main/java/com/plaid/client/model/MonitoringConsumerReportPermissiblePurpose.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * Describes the reason you are generating a Consumer Report for this user. &#x60;ACCOUNT_REVIEW_CREDIT&#x60;: In connection with a consumer credit transaction for the review or collection of an account pursuant to FCRA Section 604(a)(3)(A). &#x60;WRITTEN_INSTRUCTION_OTHER&#x60;: In accordance with the written instructions of the consumer pursuant to FCRA Section 604(a)(2), such as when an individual agrees to act as a guarantor or assumes personal liability for a consumer, business, or commercial loan. */ @JsonAdapter(MonitoringConsumerReportPermissiblePurpose.Adapter.class) public enum MonitoringConsumerReportPermissiblePurpose { ACCOUNT_REVIEW_CREDIT("ACCOUNT_REVIEW_CREDIT"), WRITTEN_INSTRUCTION_OTHER("WRITTEN_INSTRUCTION_OTHER"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; MonitoringConsumerReportPermissiblePurpose(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static MonitoringConsumerReportPermissiblePurpose fromValue(String value) { for (MonitoringConsumerReportPermissiblePurpose b : MonitoringConsumerReportPermissiblePurpose.values()) { if (b.value.equals(value)) { return b; } } return MonitoringConsumerReportPermissiblePurpose.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<MonitoringConsumerReportPermissiblePurpose> { @Override public void write(final JsonWriter jsonWriter, final MonitoringConsumerReportPermissiblePurpose enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public MonitoringConsumerReportPermissiblePurpose read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return MonitoringConsumerReportPermissiblePurpose.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/DeviceId.java
src/main/java/com/plaid/client/model/DeviceId.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; /** * Device Id associated with the device used during the previous link session */ @ApiModel(description = "Device Id associated with the device used during the previous link session") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class DeviceId { public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private Integer type; public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) private String id; public DeviceId type(Integer type) { this.type = type; return this; } /** * Get type * @return type **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public Integer getType() { return type; } public void setType(Integer type) { this.type = type; } public DeviceId id(String id) { this.id = id; return this; } /** * Identifier for the device * @return id **/ @javax.annotation.Nullable @ApiModelProperty(value = "Identifier for the device") public String getId() { return id; } public void setId(String id) { this.id = id; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } DeviceId deviceId = (DeviceId) o; return Objects.equals(this.type, deviceId.type) && Objects.equals(this.id, deviceId.id); } @Override public int hashCode() { return Objects.hash(type, id); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class DeviceId {\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" id: ").append(toIndentedString(id)).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/BusinessVerificationGetResponse.java
src/main/java/com/plaid/client/model/BusinessVerificationGetResponse.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.BusinessKYBCheck; import com.plaid.client.model.BusinessRiskCheck; import com.plaid.client.model.BusinessSearchTerms; import com.plaid.client.model.BusinessVerificationStatusOverall; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * A business verification represents a check of a business&#39;s identity and risk profile, including information collected about the business and results from third-party data providers. */ @ApiModel(description = "A business verification represents a check of a business's identity and risk profile, including information collected about the business and results from third-party data providers.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BusinessVerificationGetResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) private String id; public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id"; @SerializedName(SERIALIZED_NAME_CLIENT_USER_ID) private String clientUserId; public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) private java.sql.Timestamp createdAt; public static final String SERIALIZED_NAME_COMPLETED_AT = "completed_at"; @SerializedName(SERIALIZED_NAME_COMPLETED_AT) private OffsetDateTime completedAt; public static final String SERIALIZED_NAME_REDACTED_AT = "redacted_at"; @SerializedName(SERIALIZED_NAME_REDACTED_AT) private OffsetDateTime redactedAt; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private BusinessVerificationStatusOverall status; public static final String SERIALIZED_NAME_SEARCH_TERMS = "search_terms"; @SerializedName(SERIALIZED_NAME_SEARCH_TERMS) private BusinessSearchTerms searchTerms; public static final String SERIALIZED_NAME_KYB_CHECK = "kyb_check"; @SerializedName(SERIALIZED_NAME_KYB_CHECK) private BusinessKYBCheck kybCheck; public static final String SERIALIZED_NAME_RISK_CHECK = "risk_check"; @SerializedName(SERIALIZED_NAME_RISK_CHECK) private BusinessRiskCheck riskCheck; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public BusinessVerificationGetResponse id(String id) { this.id = id; return this; } /** * ID of the associated business verification. * @return id **/ @ApiModelProperty(example = "busver_52xR9LKo77r1Np", required = true, value = "ID of the associated business verification.") public String getId() { return id; } public void setId(String id) { this.id = id; } public BusinessVerificationGetResponse clientUserId(String clientUserId) { this.clientUserId = clientUserId; return this; } /** * A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the &#x60;/link/token/create&#x60; &#x60;client_user_id&#x60; to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the &#x60;client_user_id&#x60;. * @return clientUserId **/ @ApiModelProperty(example = "your-db-id-3b24110", required = true, value = "A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the `/link/token/create` `client_user_id` to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the `client_user_id`.") public String getClientUserId() { return clientUserId; } public void setClientUserId(String clientUserId) { this.clientUserId = clientUserId; } public BusinessVerificationGetResponse createdAt(java.sql.Timestamp createdAt) { this.createdAt = createdAt; return this; } /** * Get createdAt * @return createdAt **/ @ApiModelProperty(required = true, value = "") public java.sql.Timestamp getCreatedAt() { return createdAt; } public void setCreatedAt(java.sql.Timestamp createdAt) { this.createdAt = createdAt; } public BusinessVerificationGetResponse completedAt(OffsetDateTime completedAt) { this.completedAt = completedAt; return this; } /** * An ISO8601 formatted timestamp. * @return completedAt **/ @javax.annotation.Nullable @ApiModelProperty(example = "2020-07-24T03:26:02Z", required = true, value = "An ISO8601 formatted timestamp.") public OffsetDateTime getCompletedAt() { return completedAt; } public void setCompletedAt(OffsetDateTime completedAt) { this.completedAt = completedAt; } public BusinessVerificationGetResponse redactedAt(OffsetDateTime redactedAt) { this.redactedAt = redactedAt; return this; } /** * An ISO8601 formatted timestamp. * @return redactedAt **/ @javax.annotation.Nullable @ApiModelProperty(example = "2020-07-24T03:26:02Z", required = true, value = "An ISO8601 formatted timestamp.") public OffsetDateTime getRedactedAt() { return redactedAt; } public void setRedactedAt(OffsetDateTime redactedAt) { this.redactedAt = redactedAt; } public BusinessVerificationGetResponse status(BusinessVerificationStatusOverall status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public BusinessVerificationStatusOverall getStatus() { return status; } public void setStatus(BusinessVerificationStatusOverall status) { this.status = status; } public BusinessVerificationGetResponse searchTerms(BusinessSearchTerms searchTerms) { this.searchTerms = searchTerms; return this; } /** * Get searchTerms * @return searchTerms **/ @ApiModelProperty(required = true, value = "") public BusinessSearchTerms getSearchTerms() { return searchTerms; } public void setSearchTerms(BusinessSearchTerms searchTerms) { this.searchTerms = searchTerms; } public BusinessVerificationGetResponse kybCheck(BusinessKYBCheck kybCheck) { this.kybCheck = kybCheck; return this; } /** * Get kybCheck * @return kybCheck **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public BusinessKYBCheck getKybCheck() { return kybCheck; } public void setKybCheck(BusinessKYBCheck kybCheck) { this.kybCheck = kybCheck; } public BusinessVerificationGetResponse riskCheck(BusinessRiskCheck riskCheck) { this.riskCheck = riskCheck; return this; } /** * Get riskCheck * @return riskCheck **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public BusinessRiskCheck getRiskCheck() { return riskCheck; } public void setRiskCheck(BusinessRiskCheck riskCheck) { this.riskCheck = riskCheck; } public BusinessVerificationGetResponse 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; } BusinessVerificationGetResponse businessVerificationGetResponse = (BusinessVerificationGetResponse) o; return Objects.equals(this.id, businessVerificationGetResponse.id) && Objects.equals(this.clientUserId, businessVerificationGetResponse.clientUserId) && Objects.equals(this.createdAt, businessVerificationGetResponse.createdAt) && Objects.equals(this.completedAt, businessVerificationGetResponse.completedAt) && Objects.equals(this.redactedAt, businessVerificationGetResponse.redactedAt) && Objects.equals(this.status, businessVerificationGetResponse.status) && Objects.equals(this.searchTerms, businessVerificationGetResponse.searchTerms) && Objects.equals(this.kybCheck, businessVerificationGetResponse.kybCheck) && Objects.equals(this.riskCheck, businessVerificationGetResponse.riskCheck) && Objects.equals(this.requestId, businessVerificationGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(id, clientUserId, createdAt, completedAt, redactedAt, status, searchTerms, kybCheck, riskCheck, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BusinessVerificationGetResponse {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n"); sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n"); sb.append(" completedAt: ").append(toIndentedString(completedAt)).append("\n"); sb.append(" redactedAt: ").append(toIndentedString(redactedAt)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" searchTerms: ").append(toIndentedString(searchTerms)).append("\n"); sb.append(" kybCheck: ").append(toIndentedString(kybCheck)).append("\n"); sb.append(" riskCheck: ").append(toIndentedString(riskCheck)).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/ItemActivityListResponse.java
src/main/java/com/plaid/client/model/ItemActivityListResponse.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.Activity; import com.plaid.client.model.LastDataAccessTimes; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Describes a historical log of user consent events. */ @ApiModel(description = "Describes a historical log of user consent events.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ItemActivityListResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public static final String SERIALIZED_NAME_ACTIVITIES = "activities"; @SerializedName(SERIALIZED_NAME_ACTIVITIES) private List<Activity> activities = new ArrayList<>(); public static final String SERIALIZED_NAME_LAST_DATA_ACCESS_TIMES = "last_data_access_times"; @SerializedName(SERIALIZED_NAME_LAST_DATA_ACCESS_TIMES) private List<LastDataAccessTimes> lastDataAccessTimes = new ArrayList<>(); public static final String SERIALIZED_NAME_CURSOR = "cursor"; @SerializedName(SERIALIZED_NAME_CURSOR) private String cursor; public ItemActivityListResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ItemActivityListResponse activities(List<Activity> activities) { this.activities = activities; return this; } public ItemActivityListResponse addActivitiesItem(Activity activitiesItem) { this.activities.add(activitiesItem); return this; } /** * A list of activities. * @return activities **/ @ApiModelProperty(required = true, value = "A list of activities.") public List<Activity> getActivities() { return activities; } public void setActivities(List<Activity> activities) { this.activities = activities; } public ItemActivityListResponse lastDataAccessTimes(List<LastDataAccessTimes> lastDataAccessTimes) { this.lastDataAccessTimes = lastDataAccessTimes; return this; } public ItemActivityListResponse addLastDataAccessTimesItem(LastDataAccessTimes lastDataAccessTimesItem) { this.lastDataAccessTimes.add(lastDataAccessTimesItem); return this; } /** * An array of objects containing timestamps for the last time each data type was accessed per application. * @return lastDataAccessTimes **/ @ApiModelProperty(required = true, value = "An array of objects containing timestamps for the last time each data type was accessed per application.") public List<LastDataAccessTimes> getLastDataAccessTimes() { return lastDataAccessTimes; } public void setLastDataAccessTimes(List<LastDataAccessTimes> lastDataAccessTimes) { this.lastDataAccessTimes = lastDataAccessTimes; } public ItemActivityListResponse cursor(String cursor) { this.cursor = cursor; return this; } /** * Cursor used for pagination. * @return cursor **/ @javax.annotation.Nullable @ApiModelProperty(value = "Cursor used for pagination.") 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; } ItemActivityListResponse itemActivityListResponse = (ItemActivityListResponse) o; return Objects.equals(this.requestId, itemActivityListResponse.requestId) && Objects.equals(this.activities, itemActivityListResponse.activities) && Objects.equals(this.lastDataAccessTimes, itemActivityListResponse.lastDataAccessTimes) && Objects.equals(this.cursor, itemActivityListResponse.cursor); } @Override public int hashCode() { return Objects.hash(requestId, activities, lastDataAccessTimes, cursor); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ItemActivityListResponse {\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append(" activities: ").append(toIndentedString(activities)).append("\n"); sb.append(" lastDataAccessTimes: ").append(toIndentedString(lastDataAccessTimes)).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/EntityScreeningHitDocumentsItems.java
src/main/java/com/plaid/client/model/EntityScreeningHitDocumentsItems.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.EntityDocument; import com.plaid.client.model.MatchSummary; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Analyzed documents for the associated hit */ @ApiModel(description = "Analyzed documents for the associated hit") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class EntityScreeningHitDocumentsItems { public static final String SERIALIZED_NAME_ANALYSIS = "analysis"; @SerializedName(SERIALIZED_NAME_ANALYSIS) private MatchSummary analysis; public static final String SERIALIZED_NAME_DATA = "data"; @SerializedName(SERIALIZED_NAME_DATA) private EntityDocument data; public EntityScreeningHitDocumentsItems analysis(MatchSummary analysis) { this.analysis = analysis; return this; } /** * Get analysis * @return analysis **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public MatchSummary getAnalysis() { return analysis; } public void setAnalysis(MatchSummary analysis) { this.analysis = analysis; } public EntityScreeningHitDocumentsItems data(EntityDocument data) { this.data = data; return this; } /** * Get data * @return data **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public EntityDocument getData() { return data; } public void setData(EntityDocument data) { this.data = data; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } EntityScreeningHitDocumentsItems entityScreeningHitDocumentsItems = (EntityScreeningHitDocumentsItems) o; return Objects.equals(this.analysis, entityScreeningHitDocumentsItems.analysis) && Objects.equals(this.data, entityScreeningHitDocumentsItems.data); } @Override public int hashCode() { return Objects.hash(analysis, data); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class EntityScreeningHitDocumentsItems {\n"); sb.append(" analysis: ").append(toIndentedString(analysis)).append("\n"); sb.append(" data: ").append(toIndentedString(data)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferOriginatorDiligence.java
src/main/java/com/plaid/client/model/TransferOriginatorDiligence.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.TransferCreditUsageConfiguration; import com.plaid.client.model.TransferDebitUsageConfiguration; import com.plaid.client.model.TransferFundingAccount; import com.plaid.client.model.TransferOriginatorAddress; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The diligence information for the originator. */ @ApiModel(description = "The diligence information for the originator.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferOriginatorDiligence { public static final String SERIALIZED_NAME_DBA = "dba"; @SerializedName(SERIALIZED_NAME_DBA) private String dba; public static final String SERIALIZED_NAME_TAX_ID = "tax_id"; @SerializedName(SERIALIZED_NAME_TAX_ID) private String taxId; public static final String SERIALIZED_NAME_CREDIT_USAGE_CONFIGURATION = "credit_usage_configuration"; @SerializedName(SERIALIZED_NAME_CREDIT_USAGE_CONFIGURATION) private TransferCreditUsageConfiguration creditUsageConfiguration; public static final String SERIALIZED_NAME_DEBIT_USAGE_CONFIGURATION = "debit_usage_configuration"; @SerializedName(SERIALIZED_NAME_DEBIT_USAGE_CONFIGURATION) private TransferDebitUsageConfiguration debitUsageConfiguration; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private TransferOriginatorAddress address; public static final String SERIALIZED_NAME_WEBSITE = "website"; @SerializedName(SERIALIZED_NAME_WEBSITE) private String website; public static final String SERIALIZED_NAME_NAICS_CODE = "naics_code"; @SerializedName(SERIALIZED_NAME_NAICS_CODE) private String naicsCode; public static final String SERIALIZED_NAME_FUNDING_ACCOUNT = "funding_account"; @SerializedName(SERIALIZED_NAME_FUNDING_ACCOUNT) private TransferFundingAccount fundingAccount; public TransferOriginatorDiligence dba(String dba) { this.dba = dba; return this; } /** * The business name of the originator. * @return dba **/ @ApiModelProperty(required = true, value = "The business name of the originator.") public String getDba() { return dba; } public void setDba(String dba) { this.dba = dba; } public TransferOriginatorDiligence taxId(String taxId) { this.taxId = taxId; return this; } /** * The tax ID of the originator. * @return taxId **/ @ApiModelProperty(required = true, value = "The tax ID of the originator.") public String getTaxId() { return taxId; } public void setTaxId(String taxId) { this.taxId = taxId; } public TransferOriginatorDiligence creditUsageConfiguration(TransferCreditUsageConfiguration creditUsageConfiguration) { this.creditUsageConfiguration = creditUsageConfiguration; return this; } /** * Get creditUsageConfiguration * @return creditUsageConfiguration **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransferCreditUsageConfiguration getCreditUsageConfiguration() { return creditUsageConfiguration; } public void setCreditUsageConfiguration(TransferCreditUsageConfiguration creditUsageConfiguration) { this.creditUsageConfiguration = creditUsageConfiguration; } public TransferOriginatorDiligence debitUsageConfiguration(TransferDebitUsageConfiguration debitUsageConfiguration) { this.debitUsageConfiguration = debitUsageConfiguration; return this; } /** * Get debitUsageConfiguration * @return debitUsageConfiguration **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransferDebitUsageConfiguration getDebitUsageConfiguration() { return debitUsageConfiguration; } public void setDebitUsageConfiguration(TransferDebitUsageConfiguration debitUsageConfiguration) { this.debitUsageConfiguration = debitUsageConfiguration; } public TransferOriginatorDiligence address(TransferOriginatorAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @ApiModelProperty(required = true, value = "") public TransferOriginatorAddress getAddress() { return address; } public void setAddress(TransferOriginatorAddress address) { this.address = address; } public TransferOriginatorDiligence website(String website) { this.website = website; return this; } /** * The website of the originator. * @return website **/ @ApiModelProperty(required = true, value = "The website of the originator.") public String getWebsite() { return website; } public void setWebsite(String website) { this.website = website; } public TransferOriginatorDiligence naicsCode(String naicsCode) { this.naicsCode = naicsCode; return this; } /** * The NAICS code of the originator. * @return naicsCode **/ @ApiModelProperty(required = true, value = "The NAICS code of the originator.") public String getNaicsCode() { return naicsCode; } public void setNaicsCode(String naicsCode) { this.naicsCode = naicsCode; } public TransferOriginatorDiligence fundingAccount(TransferFundingAccount fundingAccount) { this.fundingAccount = fundingAccount; return this; } /** * Get fundingAccount * @return fundingAccount **/ @ApiModelProperty(required = true, value = "") public TransferFundingAccount getFundingAccount() { return fundingAccount; } public void setFundingAccount(TransferFundingAccount fundingAccount) { this.fundingAccount = fundingAccount; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferOriginatorDiligence transferOriginatorDiligence = (TransferOriginatorDiligence) o; return Objects.equals(this.dba, transferOriginatorDiligence.dba) && Objects.equals(this.taxId, transferOriginatorDiligence.taxId) && Objects.equals(this.creditUsageConfiguration, transferOriginatorDiligence.creditUsageConfiguration) && Objects.equals(this.debitUsageConfiguration, transferOriginatorDiligence.debitUsageConfiguration) && Objects.equals(this.address, transferOriginatorDiligence.address) && Objects.equals(this.website, transferOriginatorDiligence.website) && Objects.equals(this.naicsCode, transferOriginatorDiligence.naicsCode) && Objects.equals(this.fundingAccount, transferOriginatorDiligence.fundingAccount); } @Override public int hashCode() { return Objects.hash(dba, taxId, creditUsageConfiguration, debitUsageConfiguration, address, website, naicsCode, fundingAccount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferOriginatorDiligence {\n"); sb.append(" dba: ").append(toIndentedString(dba)).append("\n"); sb.append(" taxId: ").append(toIndentedString(taxId)).append("\n"); sb.append(" creditUsageConfiguration: ").append(toIndentedString(creditUsageConfiguration)).append("\n"); sb.append(" debitUsageConfiguration: ").append(toIndentedString(debitUsageConfiguration)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" website: ").append(toIndentedString(website)).append("\n"); sb.append(" naicsCode: ").append(toIndentedString(naicsCode)).append("\n"); sb.append(" fundingAccount: ").append(toIndentedString(fundingAccount)).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/ProductStatusBreakdown.java
src/main/java/com/plaid/client/model/ProductStatusBreakdown.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; /** * A detailed breakdown of the institution&#39;s performance for a request type. The values for &#x60;success&#x60;, &#x60;error_plaid&#x60;, and &#x60;error_institution&#x60; sum to 1. The time range used for calculating the breakdown may range from the most recent few minutes to the past six hours. In general, smaller institutions will show status that was calculated over a longer period of time. For Investment updates, which are refreshed less frequently, the period assessed may be 24 hours or more. For more details, see [Institution status details](https://plaid.com/docs/account/activity/#institution-status-details). */ @ApiModel(description = "A detailed breakdown of the institution's performance for a request type. The values for `success`, `error_plaid`, and `error_institution` sum to 1. The time range used for calculating the breakdown may range from the most recent few minutes to the past six hours. In general, smaller institutions will show status that was calculated over a longer period of time. For Investment updates, which are refreshed less frequently, the period assessed may be 24 hours or more. For more details, see [Institution status details](https://plaid.com/docs/account/activity/#institution-status-details).") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProductStatusBreakdown { public static final String SERIALIZED_NAME_SUCCESS = "success"; @SerializedName(SERIALIZED_NAME_SUCCESS) private Double success; public static final String SERIALIZED_NAME_ERROR_PLAID = "error_plaid"; @SerializedName(SERIALIZED_NAME_ERROR_PLAID) private Double errorPlaid; public static final String SERIALIZED_NAME_ERROR_INSTITUTION = "error_institution"; @SerializedName(SERIALIZED_NAME_ERROR_INSTITUTION) private Double errorInstitution; /** * How frequently data for subscription products like Investments, Transactions, and Liabilities, is being refreshed, relative to the institution&#39;s normal scheduling. The &#x60;refresh_interval&#x60; may be &#x60;DELAYED&#x60; or &#x60;STOPPED&#x60; even when the success rate is high. */ @JsonAdapter(RefreshIntervalEnum.Adapter.class) public enum RefreshIntervalEnum { NORMAL("NORMAL"), DELAYED("DELAYED"), STOPPED("STOPPED"); private String value; RefreshIntervalEnum(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static RefreshIntervalEnum fromValue(String value) { for (RefreshIntervalEnum b : RefreshIntervalEnum.values()) { if (b.value.equals(value)) { return b; } } throw new IllegalArgumentException("Unexpected value '" + value + "'"); } public static class Adapter extends TypeAdapter<RefreshIntervalEnum> { @Override public void write(final JsonWriter jsonWriter, final RefreshIntervalEnum enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public RefreshIntervalEnum read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return RefreshIntervalEnum.fromValue(value); } } } public static final String SERIALIZED_NAME_REFRESH_INTERVAL = "refresh_interval"; @SerializedName(SERIALIZED_NAME_REFRESH_INTERVAL) private RefreshIntervalEnum refreshInterval; public ProductStatusBreakdown success(Double success) { this.success = success; return this; } /** * The percentage of login attempts that are successful, expressed as a decimal. * @return success **/ @ApiModelProperty(required = true, value = "The percentage of login attempts that are successful, expressed as a decimal.") public Double getSuccess() { return success; } public void setSuccess(Double success) { this.success = success; } public ProductStatusBreakdown errorPlaid(Double errorPlaid) { this.errorPlaid = errorPlaid; return this; } /** * The percentage of logins that are failing due to an internal Plaid issue, expressed as a decimal. * @return errorPlaid **/ @ApiModelProperty(required = true, value = "The percentage of logins that are failing due to an internal Plaid issue, expressed as a decimal. ") public Double getErrorPlaid() { return errorPlaid; } public void setErrorPlaid(Double errorPlaid) { this.errorPlaid = errorPlaid; } public ProductStatusBreakdown errorInstitution(Double errorInstitution) { this.errorInstitution = errorInstitution; return this; } /** * The percentage of logins that are failing due to an issue in the institution&#39;s system, expressed as a decimal. * @return errorInstitution **/ @ApiModelProperty(required = true, value = "The percentage of logins that are failing due to an issue in the institution's system, expressed as a decimal.") public Double getErrorInstitution() { return errorInstitution; } public void setErrorInstitution(Double errorInstitution) { this.errorInstitution = errorInstitution; } public ProductStatusBreakdown refreshInterval(RefreshIntervalEnum refreshInterval) { this.refreshInterval = refreshInterval; return this; } /** * How frequently data for subscription products like Investments, Transactions, and Liabilities, is being refreshed, relative to the institution&#39;s normal scheduling. The &#x60;refresh_interval&#x60; may be &#x60;DELAYED&#x60; or &#x60;STOPPED&#x60; even when the success rate is high. * @return refreshInterval **/ @javax.annotation.Nullable @ApiModelProperty(value = "How frequently data for subscription products like Investments, Transactions, and Liabilities, is being refreshed, relative to the institution's normal scheduling. The `refresh_interval` may be `DELAYED` or `STOPPED` even when the success rate is high.") public RefreshIntervalEnum getRefreshInterval() { return refreshInterval; } public void setRefreshInterval(RefreshIntervalEnum refreshInterval) { this.refreshInterval = refreshInterval; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProductStatusBreakdown productStatusBreakdown = (ProductStatusBreakdown) o; return Objects.equals(this.success, productStatusBreakdown.success) && Objects.equals(this.errorPlaid, productStatusBreakdown.errorPlaid) && Objects.equals(this.errorInstitution, productStatusBreakdown.errorInstitution) && Objects.equals(this.refreshInterval, productStatusBreakdown.refreshInterval); } @Override public int hashCode() { return Objects.hash(success, errorPlaid, errorInstitution, refreshInterval); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProductStatusBreakdown {\n"); sb.append(" success: ").append(toIndentedString(success)).append("\n"); sb.append(" errorPlaid: ").append(toIndentedString(errorPlaid)).append("\n"); sb.append(" errorInstitution: ").append(toIndentedString(errorInstitution)).append("\n"); sb.append(" refreshInterval: ").append(toIndentedString(refreshInterval)).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/WebhookType.java
src/main/java/com/plaid/client/model/WebhookType.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 webhook types that can be fired by this test endpoint. */ @JsonAdapter(WebhookType.Adapter.class) public enum WebhookType { AUTH("AUTH"), HOLDINGS("HOLDINGS"), INVESTMENTS_TRANSACTIONS("INVESTMENTS_TRANSACTIONS"), ITEM("ITEM"), LIABILITIES("LIABILITIES"), TRANSACTIONS("TRANSACTIONS"), ASSETS("ASSETS"), // 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; WebhookType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static WebhookType fromValue(String value) { for (WebhookType b : WebhookType.values()) { if (b.value.equals(value)) { return b; } } return WebhookType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<WebhookType> { @Override public void write(final JsonWriter jsonWriter, final WebhookType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public WebhookType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return WebhookType.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/PartnerEndCustomerOAuthStatusUpdatedValues.java
src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthStatusUpdatedValues.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 OAuth status of the update */ @JsonAdapter(PartnerEndCustomerOAuthStatusUpdatedValues.Adapter.class) public enum PartnerEndCustomerOAuthStatusUpdatedValues { NOT_STARTED("not-started"), PROCESSING("processing"), APPROVED("approved"), ENABLED("enabled"), ATTENTION_REQUIRED("attention-required"), // 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; PartnerEndCustomerOAuthStatusUpdatedValues(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PartnerEndCustomerOAuthStatusUpdatedValues fromValue(String value) { for (PartnerEndCustomerOAuthStatusUpdatedValues b : PartnerEndCustomerOAuthStatusUpdatedValues.values()) { if (b.value.equals(value)) { return b; } } return PartnerEndCustomerOAuthStatusUpdatedValues.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<PartnerEndCustomerOAuthStatusUpdatedValues> { @Override public void write(final JsonWriter jsonWriter, final PartnerEndCustomerOAuthStatusUpdatedValues enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PartnerEndCustomerOAuthStatusUpdatedValues read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PartnerEndCustomerOAuthStatusUpdatedValues.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/ProxyType.java
src/main/java/com/plaid/client/model/ProxyType.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; /** * An enum indicating whether a network proxy is present and if so what type it is. &#x60;none_detected&#x60; indicates the user is not on a detectable proxy network. &#x60;tor&#x60; indicates the user was using a Tor browser, which sends encrypted traffic on a decentralized network and is somewhat similar to a VPN (Virtual Private Network). &#x60;vpn&#x60; indicates the user is on a VPN (Virtual Private Network) &#x60;web_proxy&#x60; indicates the user is on a web proxy server, which may allow them to conceal information such as their IP address or other identifying information. &#x60;public_proxy&#x60; indicates the user is on a public web proxy server, which is similar to a web proxy but can be shared by multiple users. This may allow multiple users to appear as if they have the same IP address for instance. */ @JsonAdapter(ProxyType.Adapter.class) public enum ProxyType { NONE_DETECTED("none_detected"), TOR("tor"), VPN("vpn"), WEB_PROXY("web_proxy"), PUBLIC_PROXY("public_proxy"), // 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; ProxyType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static ProxyType fromValue(String value) { for (ProxyType b : ProxyType.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<ProxyType> { @Override public void write(final JsonWriter jsonWriter, final ProxyType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public ProxyType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return ProxyType.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/TransferDocumentPurpose.java
src/main/java/com/plaid/client/model/TransferDocumentPurpose.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; /** * Specifies the purpose of the uploaded file. &#x60;\&quot;DUE_DILIGENCE\&quot;&#x60; - The transfer due diligence document of the originator. */ @JsonAdapter(TransferDocumentPurpose.Adapter.class) public enum TransferDocumentPurpose { DUE_DILIGENCE("DUE_DILIGENCE"), // 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; TransferDocumentPurpose(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransferDocumentPurpose fromValue(String value) { for (TransferDocumentPurpose b : TransferDocumentPurpose.values()) { if (b.value.equals(value)) { return b; } } return TransferDocumentPurpose.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<TransferDocumentPurpose> { @Override public void write(final JsonWriter jsonWriter, final TransferDocumentPurpose enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransferDocumentPurpose read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransferDocumentPurpose.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/TransferSweepGetResponse.java
src/main/java/com/plaid/client/model/TransferSweepGetResponse.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.TransferSweep; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the response schema for &#x60;/transfer/sweep/get&#x60; */ @ApiModel(description = "Defines the response schema for `/transfer/sweep/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferSweepGetResponse { public static final String SERIALIZED_NAME_SWEEP = "sweep"; @SerializedName(SERIALIZED_NAME_SWEEP) private TransferSweep sweep; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public TransferSweepGetResponse sweep(TransferSweep sweep) { this.sweep = sweep; return this; } /** * Get sweep * @return sweep **/ @ApiModelProperty(required = true, value = "") public TransferSweep getSweep() { return sweep; } public void setSweep(TransferSweep sweep) { this.sweep = sweep; } public TransferSweepGetResponse 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; } TransferSweepGetResponse transferSweepGetResponse = (TransferSweepGetResponse) o; return Objects.equals(this.sweep, transferSweepGetResponse.sweep) && Objects.equals(this.requestId, transferSweepGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(sweep, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferSweepGetResponse {\n"); sb.append(" sweep: ").append(toIndentedString(sweep)).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/PartnerCustomerCreateResponse.java
src/main/java/com/plaid/client/model/PartnerCustomerCreateResponse.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.PartnerEndCustomerWithSecrets; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Response schema for &#x60;/partner/customer/create&#x60;. */ @ApiModel(description = "Response schema for `/partner/customer/create`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PartnerCustomerCreateResponse { public static final String SERIALIZED_NAME_END_CUSTOMER = "end_customer"; @SerializedName(SERIALIZED_NAME_END_CUSTOMER) private PartnerEndCustomerWithSecrets endCustomer; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public PartnerCustomerCreateResponse endCustomer(PartnerEndCustomerWithSecrets endCustomer) { this.endCustomer = endCustomer; return this; } /** * Get endCustomer * @return endCustomer **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PartnerEndCustomerWithSecrets getEndCustomer() { return endCustomer; } public void setEndCustomer(PartnerEndCustomerWithSecrets endCustomer) { this.endCustomer = endCustomer; } public PartnerCustomerCreateResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PartnerCustomerCreateResponse partnerCustomerCreateResponse = (PartnerCustomerCreateResponse) o; return Objects.equals(this.endCustomer, partnerCustomerCreateResponse.endCustomer) && Objects.equals(this.requestId, partnerCustomerCreateResponse.requestId); } @Override public int hashCode() { return Objects.hash(endCustomer, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PartnerCustomerCreateResponse {\n"); sb.append(" endCustomer: ").append(toIndentedString(endCustomer)).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/BeaconReportSyndication.java
src/main/java/com/plaid/client/model/BeaconReportSyndication.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.BeaconReportSyndicationAnalysis; import com.plaid.client.model.BeaconReportSyndicationOriginalReport; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * A Beacon Report Syndication represents a Beacon Report created either by your organization or another Beacon customer that matches a specific Beacon User you&#39;ve created. The &#x60;analysis&#x60; field in the response indicates which fields matched between the originally reported Beacon User and the Beacon User that the report was syndicated to. The &#x60;report&#x60; field in the response contains a subset of information from the original report. */ @ApiModel(description = "A Beacon Report Syndication represents a Beacon Report created either by your organization or another Beacon customer that matches a specific Beacon User you've created. The `analysis` field in the response indicates which fields matched between the originally reported Beacon User and the Beacon User that the report was syndicated to. The `report` field in the response contains a subset of information from the original report.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconReportSyndication { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) private String id; public static final String SERIALIZED_NAME_BEACON_USER_ID = "beacon_user_id"; @SerializedName(SERIALIZED_NAME_BEACON_USER_ID) private String beaconUserId; public static final String SERIALIZED_NAME_REPORT = "report"; @SerializedName(SERIALIZED_NAME_REPORT) private BeaconReportSyndicationOriginalReport report; public static final String SERIALIZED_NAME_ANALYSIS = "analysis"; @SerializedName(SERIALIZED_NAME_ANALYSIS) private BeaconReportSyndicationAnalysis analysis; public BeaconReportSyndication id(String id) { this.id = id; return this; } /** * ID of the associated Beacon Report Syndication. * @return id **/ @ApiModelProperty(example = "becrsn_11111111111111", required = true, value = "ID of the associated Beacon Report Syndication.") public String getId() { return id; } public void setId(String id) { this.id = id; } public BeaconReportSyndication 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 BeaconReportSyndication report(BeaconReportSyndicationOriginalReport report) { this.report = report; return this; } /** * Get report * @return report **/ @ApiModelProperty(required = true, value = "") public BeaconReportSyndicationOriginalReport getReport() { return report; } public void setReport(BeaconReportSyndicationOriginalReport report) { this.report = report; } public BeaconReportSyndication analysis(BeaconReportSyndicationAnalysis analysis) { this.analysis = analysis; return this; } /** * Get analysis * @return analysis **/ @ApiModelProperty(required = true, value = "") public BeaconReportSyndicationAnalysis getAnalysis() { return analysis; } public void setAnalysis(BeaconReportSyndicationAnalysis analysis) { this.analysis = analysis; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BeaconReportSyndication beaconReportSyndication = (BeaconReportSyndication) o; return Objects.equals(this.id, beaconReportSyndication.id) && Objects.equals(this.beaconUserId, beaconReportSyndication.beaconUserId) && Objects.equals(this.report, beaconReportSyndication.report) && Objects.equals(this.analysis, beaconReportSyndication.analysis); } @Override public int hashCode() { return Objects.hash(id, beaconUserId, report, analysis); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconReportSyndication {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" beaconUserId: ").append(toIndentedString(beaconUserId)).append("\n"); sb.append(" report: ").append(toIndentedString(report)).append("\n"); sb.append(" analysis: ").append(toIndentedString(analysis)).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/LinkTokenCreateIdentity.java
src/main/java/com/plaid/client/model/LinkTokenCreateIdentity.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.IncomeVerificationDocParsingConfig; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Identity object used to specify document upload */ @ApiModel(description = "Identity object used to specify document upload") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkTokenCreateIdentity { public static final String SERIALIZED_NAME_IS_DOCUMENT_UPLOAD = "is_document_upload"; @SerializedName(SERIALIZED_NAME_IS_DOCUMENT_UPLOAD) private Boolean isDocumentUpload; public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) private List<String> accountIds = null; public static final String SERIALIZED_NAME_PARSING_CONFIGS = "parsing_configs"; @SerializedName(SERIALIZED_NAME_PARSING_CONFIGS) private List<IncomeVerificationDocParsingConfig> parsingConfigs = null; public LinkTokenCreateIdentity isDocumentUpload(Boolean isDocumentUpload) { this.isDocumentUpload = isDocumentUpload; return this; } /** * Used to specify whether the Link session is Identity Document Upload * @return isDocumentUpload **/ @javax.annotation.Nullable @ApiModelProperty(value = "Used to specify whether the Link session is Identity Document Upload") public Boolean getIsDocumentUpload() { return isDocumentUpload; } public void setIsDocumentUpload(Boolean isDocumentUpload) { this.isDocumentUpload = isDocumentUpload; } public LinkTokenCreateIdentity accountIds(List<String> accountIds) { this.accountIds = accountIds; return this; } public LinkTokenCreateIdentity addAccountIdsItem(String accountIdsItem) { if (this.accountIds == null) { this.accountIds = new ArrayList<>(); } this.accountIds.add(accountIdsItem); return this; } /** * An array of &#x60;account_ids&#x60;. Currently can only contain one &#x60;account_id&#x60;. Must be populated if using Document Upload. * @return accountIds **/ @javax.annotation.Nullable @ApiModelProperty(value = "An array of `account_ids`. Currently can only contain one `account_id`. Must be populated if using Document Upload.") public List<String> getAccountIds() { return accountIds; } public void setAccountIds(List<String> accountIds) { this.accountIds = accountIds; } public LinkTokenCreateIdentity parsingConfigs(List<IncomeVerificationDocParsingConfig> parsingConfigs) { this.parsingConfigs = parsingConfigs; return this; } public LinkTokenCreateIdentity addParsingConfigsItem(IncomeVerificationDocParsingConfig parsingConfigsItem) { if (this.parsingConfigs == null) { this.parsingConfigs = new ArrayList<>(); } this.parsingConfigs.add(parsingConfigsItem); return this; } /** * An array of parsing configurations. Valid parsing configurations are &#x60;ocr&#x60; and &#x60;risk_signals&#x60;. If parsing configurations are omitted, defaults to &#x60;ocr&#x60; * @return parsingConfigs **/ @javax.annotation.Nullable @ApiModelProperty(value = "An array of parsing configurations. Valid parsing configurations are `ocr` and `risk_signals`. If parsing configurations are omitted, defaults to `ocr`") public List<IncomeVerificationDocParsingConfig> getParsingConfigs() { return parsingConfigs; } public void setParsingConfigs(List<IncomeVerificationDocParsingConfig> parsingConfigs) { this.parsingConfigs = parsingConfigs; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkTokenCreateIdentity linkTokenCreateIdentity = (LinkTokenCreateIdentity) o; return Objects.equals(this.isDocumentUpload, linkTokenCreateIdentity.isDocumentUpload) && Objects.equals(this.accountIds, linkTokenCreateIdentity.accountIds) && Objects.equals(this.parsingConfigs, linkTokenCreateIdentity.parsingConfigs); } @Override public int hashCode() { return Objects.hash(isDocumentUpload, accountIds, parsingConfigs); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkTokenCreateIdentity {\n"); sb.append(" isDocumentUpload: ").append(toIndentedString(isDocumentUpload)).append("\n"); sb.append(" accountIds: ").append(toIndentedString(accountIds)).append("\n"); sb.append(" parsingConfigs: ").append(toIndentedString(parsingConfigs)).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/CreditFreddieMacLoans.java
src/main/java/com/plaid/client/model/CreditFreddieMacLoans.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.CreditFreddieMacLoan; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * A collection of loans that are part of a single deal. */ @ApiModel(description = "A collection of loans that are part of a single deal.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditFreddieMacLoans { public static final String SERIALIZED_NAME_L_O_A_N = "LOAN"; @SerializedName(SERIALIZED_NAME_L_O_A_N) private CreditFreddieMacLoan LOAN; public CreditFreddieMacLoans LOAN(CreditFreddieMacLoan LOAN) { this.LOAN = LOAN; return this; } /** * Get LOAN * @return LOAN **/ @ApiModelProperty(required = true, value = "") public CreditFreddieMacLoan getLOAN() { return LOAN; } public void setLOAN(CreditFreddieMacLoan LOAN) { this.LOAN = LOAN; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditFreddieMacLoans creditFreddieMacLoans = (CreditFreddieMacLoans) o; return Objects.equals(this.LOAN, creditFreddieMacLoans.LOAN); } @Override public int hashCode() { return Objects.hash(LOAN); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditFreddieMacLoans {\n"); sb.append(" LOAN: ").append(toIndentedString(LOAN)).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/ItemApplicationListUserAuth.java
src/main/java/com/plaid/client/model/ItemApplicationListUserAuth.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * User authentication parameters, for clients making a request without an &#x60;access_token&#x60;. This is only allowed for select clients and will not be supported in the future. Most clients should call /item/import to obtain an access token before making a request. */ @ApiModel(description = "User authentication parameters, for clients making a request without an `access_token`. This is only allowed for select clients and will not be supported in the future. Most clients should call /item/import to obtain an access token before making a request.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ItemApplicationListUserAuth { public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_FI_USERNAME_HASH = "fi_username_hash"; @SerializedName(SERIALIZED_NAME_FI_USERNAME_HASH) private String fiUsernameHash; public ItemApplicationListUserAuth userId(String userId) { this.userId = userId; return this; } /** * Account username. * @return userId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Account username.") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public ItemApplicationListUserAuth fiUsernameHash(String fiUsernameHash) { this.fiUsernameHash = fiUsernameHash; return this; } /** * Account username hashed by FI. * @return fiUsernameHash **/ @javax.annotation.Nullable @ApiModelProperty(value = "Account username hashed by FI.") public String getFiUsernameHash() { return fiUsernameHash; } public void setFiUsernameHash(String fiUsernameHash) { this.fiUsernameHash = fiUsernameHash; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ItemApplicationListUserAuth itemApplicationListUserAuth = (ItemApplicationListUserAuth) o; return Objects.equals(this.userId, itemApplicationListUserAuth.userId) && Objects.equals(this.fiUsernameHash, itemApplicationListUserAuth.fiUsernameHash); } @Override public int hashCode() { return Objects.hash(userId, fiUsernameHash); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ItemApplicationListUserAuth {\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" fiUsernameHash: ").append(toIndentedString(fiUsernameHash)).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/PaymentScheme.java
src/main/java/com/plaid/client/model/PaymentScheme.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; /** * Payment scheme. If not specified - the default in the region will be used (e.g. &#x60;SEPA_CREDIT_TRANSFER&#x60; for EU). Using unsupported values will result in a failed payment. &#x60;LOCAL_DEFAULT&#x60;: The default payment scheme for the selected market and currency will be used. &#x60;LOCAL_INSTANT&#x60;: The instant payment scheme for the selected market and currency will be used (if applicable). Fees may be applied by the institution. &#x60;SEPA_CREDIT_TRANSFER&#x60;: The standard payment to a beneficiary within the SEPA area. &#x60;SEPA_CREDIT_TRANSFER_INSTANT&#x60;: Instant payment within the SEPA area. May involve additional fees and may not be available at some banks. */ @JsonAdapter(PaymentScheme.Adapter.class) public enum PaymentScheme { NULL("null"), LOCAL_DEFAULT("LOCAL_DEFAULT"), LOCAL_INSTANT("LOCAL_INSTANT"), SEPA_CREDIT_TRANSFER("SEPA_CREDIT_TRANSFER"), SEPA_CREDIT_TRANSFER_INSTANT("SEPA_CREDIT_TRANSFER_INSTANT"), // 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; PaymentScheme(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PaymentScheme fromValue(String value) { for (PaymentScheme b : PaymentScheme.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<PaymentScheme> { @Override public void write(final JsonWriter jsonWriter, final PaymentScheme enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PaymentScheme read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PaymentScheme.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/SelfieAnalysisDocumentComparison.java
src/main/java/com/plaid/client/model/SelfieAnalysisDocumentComparison.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; /** * Information about the comparison between the selfie and the document (if documentary verification also ran). */ @JsonAdapter(SelfieAnalysisDocumentComparison.Adapter.class) public enum SelfieAnalysisDocumentComparison { MATCH("match"), NO_MATCH("no_match"), NO_INPUT("no_input"), // 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; SelfieAnalysisDocumentComparison(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static SelfieAnalysisDocumentComparison fromValue(String value) { for (SelfieAnalysisDocumentComparison b : SelfieAnalysisDocumentComparison.values()) { if (b.value.equals(value)) { return b; } } return SelfieAnalysisDocumentComparison.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<SelfieAnalysisDocumentComparison> { @Override public void write(final JsonWriter jsonWriter, final SelfieAnalysisDocumentComparison enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public SelfieAnalysisDocumentComparison read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return SelfieAnalysisDocumentComparison.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/StatementsStatement.java
src/main/java/com/plaid/client/model/StatementsStatement.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 statement&#39;s metadata associated with an account */ @ApiModel(description = "A statement's metadata associated with an account") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class StatementsStatement { public static final String SERIALIZED_NAME_STATEMENT_ID = "statement_id"; @SerializedName(SERIALIZED_NAME_STATEMENT_ID) private String statementId; public static final String SERIALIZED_NAME_DATE_POSTED = "date_posted"; @SerializedName(SERIALIZED_NAME_DATE_POSTED) private LocalDate datePosted; public static final String SERIALIZED_NAME_MONTH = "month"; @SerializedName(SERIALIZED_NAME_MONTH) private Integer month; public static final String SERIALIZED_NAME_YEAR = "year"; @SerializedName(SERIALIZED_NAME_YEAR) private Integer year; public StatementsStatement statementId(String statementId) { this.statementId = statementId; return this; } /** * Plaid&#39;s unique identifier for the statement. * @return statementId **/ @ApiModelProperty(required = true, value = "Plaid's unique identifier for the statement.") public String getStatementId() { return statementId; } public void setStatementId(String statementId) { this.statementId = statementId; } public StatementsStatement datePosted(LocalDate datePosted) { this.datePosted = datePosted; return this; } /** * Date when the statement was posted by the FI, if known * @return datePosted **/ @javax.annotation.Nullable @ApiModelProperty(value = "Date when the statement was posted by the FI, if known") public LocalDate getDatePosted() { return datePosted; } public void setDatePosted(LocalDate datePosted) { this.datePosted = datePosted; } public StatementsStatement month(Integer month) { this.month = month; return this; } /** * Month of the year. Possible values: 1 through 12 (January through December). * @return month **/ @ApiModelProperty(required = true, value = "Month of the year. Possible values: 1 through 12 (January through December).") public Integer getMonth() { return month; } public void setMonth(Integer month) { this.month = month; } public StatementsStatement year(Integer year) { this.year = year; return this; } /** * The year of statement. * minimum: 2010 * @return year **/ @ApiModelProperty(required = true, value = "The year of statement.") public Integer getYear() { return year; } public void setYear(Integer year) { this.year = year; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } StatementsStatement statementsStatement = (StatementsStatement) o; return Objects.equals(this.statementId, statementsStatement.statementId) && Objects.equals(this.datePosted, statementsStatement.datePosted) && Objects.equals(this.month, statementsStatement.month) && Objects.equals(this.year, statementsStatement.year); } @Override public int hashCode() { return Objects.hash(statementId, datePosted, month, year); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class StatementsStatement {\n"); sb.append(" statementId: ").append(toIndentedString(statementId)).append("\n"); sb.append(" datePosted: ").append(toIndentedString(datePosted)).append("\n"); sb.append(" month: ").append(toIndentedString(month)).append("\n"); sb.append(" year: ").append(toIndentedString(year)).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/WalletBalance.java
src/main/java/com/plaid/client/model/WalletBalance.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 e-wallet balance */ @ApiModel(description = "An object representing the e-wallet balance") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WalletBalance { 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_CURRENT = "current"; @SerializedName(SERIALIZED_NAME_CURRENT) private Double current; public static final String SERIALIZED_NAME_AVAILABLE = "available"; @SerializedName(SERIALIZED_NAME_AVAILABLE) private Double available; public WalletBalance isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO-4217 currency code of the balance * @return isoCurrencyCode **/ @ApiModelProperty(required = true, value = "The ISO-4217 currency code of the balance") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public WalletBalance current(Double current) { this.current = current; return this; } /** * The total amount of funds in the account * @return current **/ @ApiModelProperty(required = true, value = "The total amount of funds in the account") public Double getCurrent() { return current; } public void setCurrent(Double current) { this.current = current; } public WalletBalance available(Double available) { this.available = available; return this; } /** * The total amount of funds in the account after subtracting pending debit transaction amounts * @return available **/ @ApiModelProperty(required = true, value = "The total amount of funds in the account after subtracting pending debit transaction amounts") public Double getAvailable() { return available; } public void setAvailable(Double available) { this.available = available; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } WalletBalance walletBalance = (WalletBalance) o; return Objects.equals(this.isoCurrencyCode, walletBalance.isoCurrencyCode) && Objects.equals(this.current, walletBalance.current) && Objects.equals(this.available, walletBalance.available); } @Override public int hashCode() { return Objects.hash(isoCurrencyCode, current, available); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WalletBalance {\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append(" current: ").append(toIndentedString(current)).append("\n"); sb.append(" available: ").append(toIndentedString(available)).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/LiabilitiesGetRequest.java
src/main/java/com/plaid/client/model/LiabilitiesGetRequest.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.LiabilitiesGetRequestOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * LiabilitiesGetRequest defines the request schema for &#x60;/liabilities/get&#x60; */ @ApiModel(description = "LiabilitiesGetRequest defines the request schema for `/liabilities/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LiabilitiesGetRequest { 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 LiabilitiesGetRequestOptions options; public LiabilitiesGetRequest 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 LiabilitiesGetRequest 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 LiabilitiesGetRequest 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 LiabilitiesGetRequest options(LiabilitiesGetRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public LiabilitiesGetRequestOptions getOptions() { return options; } public void setOptions(LiabilitiesGetRequestOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LiabilitiesGetRequest liabilitiesGetRequest = (LiabilitiesGetRequest) o; return Objects.equals(this.clientId, liabilitiesGetRequest.clientId) && Objects.equals(this.secret, liabilitiesGetRequest.secret) && Objects.equals(this.accessToken, liabilitiesGetRequest.accessToken) && Objects.equals(this.options, liabilitiesGetRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, secret, accessToken, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LiabilitiesGetRequest {\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("}"); 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/SandboxIncomeWebhookFireRequestWebhookCode.java
src/main/java/com/plaid/client/model/SandboxIncomeWebhookFireRequestWebhookCode.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 webhook codes that can be fired by this test endpoint. */ @JsonAdapter(SandboxIncomeWebhookFireRequestWebhookCode.Adapter.class) public enum SandboxIncomeWebhookFireRequestWebhookCode { VERIFICATION("INCOME_VERIFICATION"), VERIFICATION_RISK_SIGNALS("INCOME_VERIFICATION_RISK_SIGNALS"), // 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; SandboxIncomeWebhookFireRequestWebhookCode(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static SandboxIncomeWebhookFireRequestWebhookCode fromValue(String value) { for (SandboxIncomeWebhookFireRequestWebhookCode b : SandboxIncomeWebhookFireRequestWebhookCode.values()) { if (b.value.equals(value)) { return b; } } return SandboxIncomeWebhookFireRequestWebhookCode.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<SandboxIncomeWebhookFireRequestWebhookCode> { @Override public void write(final JsonWriter jsonWriter, final SandboxIncomeWebhookFireRequestWebhookCode enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public SandboxIncomeWebhookFireRequestWebhookCode read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return SandboxIncomeWebhookFireRequestWebhookCode.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/PartnerEndCustomerAddress.java
src/main/java/com/plaid/client/model/PartnerEndCustomerAddress.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 end customer&#39;s address. */ @ApiModel(description = "The end customer's address.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PartnerEndCustomerAddress { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) private String city; public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) private String street; public static final String SERIALIZED_NAME_REGION = "region"; @SerializedName(SERIALIZED_NAME_REGION) private String region; 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_CODE = "country_code"; @SerializedName(SERIALIZED_NAME_COUNTRY_CODE) private String countryCode; public PartnerEndCustomerAddress city(String city) { this.city = city; return this; } /** * Get city * @return city **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getCity() { return city; } public void setCity(String city) { this.city = city; } public PartnerEndCustomerAddress street(String street) { this.street = street; return this; } /** * Get street * @return street **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } public PartnerEndCustomerAddress region(String region) { this.region = region; return this; } /** * Get region * @return region **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public PartnerEndCustomerAddress postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * Get postalCode * @return postalCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public PartnerEndCustomerAddress countryCode(String countryCode) { this.countryCode = countryCode; return this; } /** * ISO-3166-1 alpha-2 country code standard. * @return countryCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "ISO-3166-1 alpha-2 country code standard.") public String getCountryCode() { return countryCode; } public void setCountryCode(String countryCode) { this.countryCode = countryCode; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PartnerEndCustomerAddress partnerEndCustomerAddress = (PartnerEndCustomerAddress) o; return Objects.equals(this.city, partnerEndCustomerAddress.city) && Objects.equals(this.street, partnerEndCustomerAddress.street) && Objects.equals(this.region, partnerEndCustomerAddress.region) && Objects.equals(this.postalCode, partnerEndCustomerAddress.postalCode) && Objects.equals(this.countryCode, partnerEndCustomerAddress.countryCode); } @Override public int hashCode() { return Objects.hash(city, street, region, postalCode, countryCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PartnerEndCustomerAddress {\n"); sb.append(" city: ").append(toIndentedString(city)).append("\n"); sb.append(" street: ").append(toIndentedString(street)).append("\n"); sb.append(" region: ").append(toIndentedString(region)).append("\n"); sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n"); sb.append(" countryCode: ").append(toIndentedString(countryCode)).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/RecommendationString.java
src/main/java/com/plaid/client/model/RecommendationString.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 recommendation result for that date. */ @JsonAdapter(RecommendationString.Adapter.class) public enum RecommendationString { RECOMMENDED("RECOMMENDED"), NOT_RECOMMENDED("NOT_RECOMMENDED"), 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; RecommendationString(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static RecommendationString fromValue(String value) { for (RecommendationString b : RecommendationString.values()) { if (b.value.equals(value)) { return b; } } return RecommendationString.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<RecommendationString> { @Override public void write(final JsonWriter jsonWriter, final RecommendationString enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public RecommendationString read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return RecommendationString.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/PaymentInitiationPaymentReverseResponse.java
src/main/java/com/plaid/client/model/PaymentInitiationPaymentReverseResponse.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.WalletTransactionStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * PaymentInitiationPaymentReverseResponse defines the response schema for &#x60;/payment_initation/payment/reverse&#x60; */ @ApiModel(description = "PaymentInitiationPaymentReverseResponse defines the response schema for `/payment_initation/payment/reverse`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentInitiationPaymentReverseResponse { public static final String SERIALIZED_NAME_REFUND_ID = "refund_id"; @SerializedName(SERIALIZED_NAME_REFUND_ID) private String refundId; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private WalletTransactionStatus status; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public PaymentInitiationPaymentReverseResponse refundId(String refundId) { this.refundId = refundId; return this; } /** * A unique ID identifying the refund * @return refundId **/ @ApiModelProperty(required = true, value = "A unique ID identifying the refund") public String getRefundId() { return refundId; } public void setRefundId(String refundId) { this.refundId = refundId; } public PaymentInitiationPaymentReverseResponse status(WalletTransactionStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public WalletTransactionStatus getStatus() { return status; } public void setStatus(WalletTransactionStatus status) { this.status = status; } public PaymentInitiationPaymentReverseResponse 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; } PaymentInitiationPaymentReverseResponse paymentInitiationPaymentReverseResponse = (PaymentInitiationPaymentReverseResponse) o; return Objects.equals(this.refundId, paymentInitiationPaymentReverseResponse.refundId) && Objects.equals(this.status, paymentInitiationPaymentReverseResponse.status) && Objects.equals(this.requestId, paymentInitiationPaymentReverseResponse.requestId); } @Override public int hashCode() { return Objects.hash(refundId, status, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentInitiationPaymentReverseResponse {\n"); sb.append(" refundId: ").append(toIndentedString(refundId)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferNetwork.java
src/main/java/com/plaid/client/model/TransferNetwork.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 network or rails used for the transfer. For transfers submitted as &#x60;ach&#x60; or &#x60;same-day-ach&#x60;, the Standard ACH cutoff is 8:30 PM Eastern Time. For transfers submitted as &#x60;same-day-ach&#x60;, the Same Day ACH cutoff is 3:30 PM Eastern Time. It is recommended to send the request 15 minutes prior to the cutoff to ensure that it will be processed in time for submission before the cutoff. If the transfer is processed after this cutoff but before the Standard ACH cutoff, it will be sent over Standard ACH rails and will not incur same-day charges; this will apply to both legs of the transfer if applicable. The transaction limit for a Same Day ACH transfer is $1,000,000. Authorization requests sent with an amount greater than $1,000,000 will fail. For transfers submitted as &#x60;rtp&#x60;, Plaid will automatically route between Real Time Payment rail by TCH or FedNow rails as necessary. If a transfer is submitted as &#x60;rtp&#x60; and the counterparty account is not eligible for RTP, the &#x60;/transfer/authorization/create&#x60; request will fail with an &#x60;INVALID_FIELD&#x60; error code. To pre-check to determine whether a counterparty account can support RTP, call &#x60;/transfer/capabilities/get&#x60; before calling &#x60;/transfer/authorization/create&#x60;. Wire transfers are currently in early availability. To request access to &#x60;wire&#x60; as a payment network, contact your Account Manager. For transfers submitted as &#x60;wire&#x60;, the &#x60;type&#x60; must be &#x60;credit&#x60;; wire debits are not supported. The cutoff to submit a wire payment is 6:30 PM Eastern Time on a business day; wires submitted after that time will be processed on the next business day. The transaction limit for a wire is $999,999.99. Authorization requests sent with an amount greater than $999,999.99 will fail. */ @JsonAdapter(TransferNetwork.Adapter.class) public enum TransferNetwork { ACH("ach"), SAME_DAY_ACH("same-day-ach"), RTP("rtp"), WIRE("wire"), // 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; TransferNetwork(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransferNetwork fromValue(String value) { for (TransferNetwork b : TransferNetwork.values()) { if (b.value.equals(value)) { return b; } } return TransferNetwork.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<TransferNetwork> { @Override public void write(final JsonWriter jsonWriter, final TransferNetwork enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransferNetwork read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransferNetwork.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/HoldingsDefaultUpdateWebhook.java
src/main/java/com/plaid/client/model/HoldingsDefaultUpdateWebhook.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; import java.math.BigDecimal; /** * Fired when new or updated holdings have been detected on an investment account. The webhook typically fires in response to any newly added holdings or price changes to existing holdings, most commonly after market close. */ @ApiModel(description = "Fired when new or updated holdings have been detected on an investment account. The webhook typically fires in response to any newly added holdings or price changes to existing holdings, most commonly after market close.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class HoldingsDefaultUpdateWebhook { 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_NEW_HOLDINGS = "new_holdings"; @SerializedName(SERIALIZED_NAME_NEW_HOLDINGS) private Double newHoldings; public static final String SERIALIZED_NAME_UPDATED_HOLDINGS = "updated_holdings"; @SerializedName(SERIALIZED_NAME_UPDATED_HOLDINGS) private Double updatedHoldings; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public HoldingsDefaultUpdateWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;HOLDINGS&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`HOLDINGS`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public HoldingsDefaultUpdateWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;DEFAULT_UPDATE&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`DEFAULT_UPDATE`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public HoldingsDefaultUpdateWebhook 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 HoldingsDefaultUpdateWebhook 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 HoldingsDefaultUpdateWebhook newHoldings(Double newHoldings) { this.newHoldings = newHoldings; return this; } /** * The number of new holdings reported since the last time this webhook was fired. * @return newHoldings **/ @ApiModelProperty(required = true, value = "The number of new holdings reported since the last time this webhook was fired.") public Double getNewHoldings() { return newHoldings; } public void setNewHoldings(Double newHoldings) { this.newHoldings = newHoldings; } public HoldingsDefaultUpdateWebhook updatedHoldings(Double updatedHoldings) { this.updatedHoldings = updatedHoldings; return this; } /** * The number of updated holdings reported since the last time this webhook was fired. * @return updatedHoldings **/ @ApiModelProperty(required = true, value = "The number of updated holdings reported since the last time this webhook was fired.") public Double getUpdatedHoldings() { return updatedHoldings; } public void setUpdatedHoldings(Double updatedHoldings) { this.updatedHoldings = updatedHoldings; } public HoldingsDefaultUpdateWebhook 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; } HoldingsDefaultUpdateWebhook holdingsDefaultUpdateWebhook = (HoldingsDefaultUpdateWebhook) o; return Objects.equals(this.webhookType, holdingsDefaultUpdateWebhook.webhookType) && Objects.equals(this.webhookCode, holdingsDefaultUpdateWebhook.webhookCode) && Objects.equals(this.itemId, holdingsDefaultUpdateWebhook.itemId) && Objects.equals(this.error, holdingsDefaultUpdateWebhook.error) && Objects.equals(this.newHoldings, holdingsDefaultUpdateWebhook.newHoldings) && Objects.equals(this.updatedHoldings, holdingsDefaultUpdateWebhook.updatedHoldings) && Objects.equals(this.environment, holdingsDefaultUpdateWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, itemId, error, newHoldings, updatedHoldings, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class HoldingsDefaultUpdateWebhook {\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(" newHoldings: ").append(toIndentedString(newHoldings)).append("\n"); sb.append(" updatedHoldings: ").append(toIndentedString(updatedHoldings)).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/PrismFirstDetect.java
src/main/java/com/plaid/client/model/PrismFirstDetect.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.PrismCashScoreMetadata; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * The data from the FirstDetect product returned by Prism Data. */ @ApiModel(description = "The data from the FirstDetect product returned by Prism Data.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PrismFirstDetect { public static final String SERIALIZED_NAME_VERSION = "version"; @SerializedName(SERIALIZED_NAME_VERSION) private Integer version; public static final String SERIALIZED_NAME_MODEL_VERSION = "model_version"; @SerializedName(SERIALIZED_NAME_MODEL_VERSION) private String modelVersion; 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_METADATA = "metadata"; @SerializedName(SERIALIZED_NAME_METADATA) private PrismCashScoreMetadata metadata; public static final String SERIALIZED_NAME_ERROR_REASON = "error_reason"; @SerializedName(SERIALIZED_NAME_ERROR_REASON) private String errorReason; public PrismFirstDetect version(Integer version) { this.version = version; return this; } /** * The version of Prism Data&#39;s FirstDetect model used. This field is deprecated in favor of &#x60;model_version&#x60;. * @return version **/ @ApiModelProperty(required = true, value = "The version of Prism Data's FirstDetect model used. This field is deprecated in favor of `model_version`.") public Integer getVersion() { return version; } public void setVersion(Integer version) { this.version = version; } public PrismFirstDetect modelVersion(String modelVersion) { this.modelVersion = modelVersion; return this; } /** * The version of Prism Data&#39;s FirstDetect model used. * @return modelVersion **/ @javax.annotation.Nullable @ApiModelProperty(value = "The version of Prism Data's FirstDetect model used.") public String getModelVersion() { return modelVersion; } public void setModelVersion(String modelVersion) { this.modelVersion = modelVersion; } public PrismFirstDetect score(Integer score) { this.score = score; return this; } /** * The score returned by Prism Data. Ranges from 1-999, with higher score indicating lower risk. * @return score **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The score returned by Prism Data. Ranges from 1-999, with higher score indicating lower risk.") public Integer getScore() { return score; } public void setScore(Integer score) { this.score = score; } public PrismFirstDetect reasonCodes(List<String> reasonCodes) { this.reasonCodes = reasonCodes; return this; } public PrismFirstDetect 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 FirstDetect score. * @return reasonCodes **/ @javax.annotation.Nullable @ApiModelProperty(value = "The reasons for an individual having risk according to the FirstDetect score.") public List<String> getReasonCodes() { return reasonCodes; } public void setReasonCodes(List<String> reasonCodes) { this.reasonCodes = reasonCodes; } public PrismFirstDetect metadata(PrismCashScoreMetadata metadata) { this.metadata = metadata; return this; } /** * Get metadata * @return metadata **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PrismCashScoreMetadata getMetadata() { return metadata; } public void setMetadata(PrismCashScoreMetadata metadata) { this.metadata = metadata; } public PrismFirstDetect errorReason(String errorReason) { this.errorReason = errorReason; return this; } /** * The error returned by Prism for this product. * @return errorReason **/ @javax.annotation.Nullable @ApiModelProperty(value = "The error returned by Prism for this product.") 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; } PrismFirstDetect prismFirstDetect = (PrismFirstDetect) o; return Objects.equals(this.version, prismFirstDetect.version) && Objects.equals(this.modelVersion, prismFirstDetect.modelVersion) && Objects.equals(this.score, prismFirstDetect.score) && Objects.equals(this.reasonCodes, prismFirstDetect.reasonCodes) && Objects.equals(this.metadata, prismFirstDetect.metadata) && Objects.equals(this.errorReason, prismFirstDetect.errorReason); } @Override public int hashCode() { return Objects.hash(version, modelVersion, score, reasonCodes, metadata, errorReason); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PrismFirstDetect {\n"); sb.append(" version: ").append(toIndentedString(version)).append("\n"); sb.append(" modelVersion: ").append(toIndentedString(modelVersion)).append("\n"); sb.append(" score: ").append(toIndentedString(score)).append("\n"); sb.append(" reasonCodes: ").append(toIndentedString(reasonCodes)).append("\n"); sb.append(" metadata: ").append(toIndentedString(metadata)).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/CraLoanUnregister.java
src/main/java/com/plaid/client/model/CraLoanUnregister.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.CraLoanClosedStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Contains loan data for the loan being unregistered. */ @ApiModel(description = "Contains loan data for the loan being unregistered.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraLoanUnregister { public static final String SERIALIZED_NAME_LOAN_ID = "loan_id"; @SerializedName(SERIALIZED_NAME_LOAN_ID) private String loanId; public static final String SERIALIZED_NAME_CLOSED_WITH_STATUS = "closed_with_status"; @SerializedName(SERIALIZED_NAME_CLOSED_WITH_STATUS) private CraLoanClosedStatus closedWithStatus; public CraLoanUnregister 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 **/ @ApiModelProperty(required = true, 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 CraLoanUnregister closedWithStatus(CraLoanClosedStatus closedWithStatus) { this.closedWithStatus = closedWithStatus; return this; } /** * Get closedWithStatus * @return closedWithStatus **/ @ApiModelProperty(required = true, value = "") public CraLoanClosedStatus getClosedWithStatus() { return closedWithStatus; } public void setClosedWithStatus(CraLoanClosedStatus closedWithStatus) { this.closedWithStatus = closedWithStatus; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraLoanUnregister craLoanUnregister = (CraLoanUnregister) o; return Objects.equals(this.loanId, craLoanUnregister.loanId) && Objects.equals(this.closedWithStatus, craLoanUnregister.closedWithStatus); } @Override public int hashCode() { return Objects.hash(loanId, closedWithStatus); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraLoanUnregister {\n"); sb.append(" loanId: ").append(toIndentedString(loanId)).append("\n"); sb.append(" closedWithStatus: ").append(toIndentedString(closedWithStatus)).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/LinkTokenCreateRequestPaymentConfiguration.java
src/main/java/com/plaid/client/model/LinkTokenCreateRequestPaymentConfiguration.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; /** * Specifies options for initializing Link for use with the Pay By Bank flow. This is an optional field to configure the user experience, and currently requires the amount field to be set. */ @ApiModel(description = "Specifies options for initializing Link for use with the Pay By Bank flow. This is an optional field to configure the user experience, and currently requires the amount field to be set.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkTokenCreateRequestPaymentConfiguration { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private String amount; public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) private String description; public LinkTokenCreateRequestPaymentConfiguration amount(String amount) { this.amount = amount; return this; } /** * The amount of the transfer (decimal string with two digits of precision e.g. \&quot;10.00\&quot;). * @return amount **/ @ApiModelProperty(required = true, value = "The amount of the transfer (decimal string with two digits of precision e.g. \"10.00\").") public String getAmount() { return amount; } public void setAmount(String amount) { this.amount = amount; } public LinkTokenCreateRequestPaymentConfiguration description(String description) { this.description = description; return this; } /** * The description of the transfer that provides the payment context. The max length is 256. * @return description **/ @javax.annotation.Nullable @ApiModelProperty(value = "The description of the transfer that provides the payment context. The max length is 256.") 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; } LinkTokenCreateRequestPaymentConfiguration linkTokenCreateRequestPaymentConfiguration = (LinkTokenCreateRequestPaymentConfiguration) o; return Objects.equals(this.amount, linkTokenCreateRequestPaymentConfiguration.amount) && Objects.equals(this.description, linkTokenCreateRequestPaymentConfiguration.description); } @Override public int hashCode() { return Objects.hash(amount, description); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkTokenCreateRequestPaymentConfiguration {\n"); sb.append(" amount: ").append(toIndentedString(amount)).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/WalletTransaction.java
src/main/java/com/plaid/client/model/WalletTransaction.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.WalletPaymentScheme; import com.plaid.client.model.WalletTransactionAmount; import com.plaid.client.model.WalletTransactionCounterparty; import com.plaid.client.model.WalletTransactionFailureReason; import com.plaid.client.model.WalletTransactionRelation; import com.plaid.client.model.WalletTransactionStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.List; /** * The transaction details */ @ApiModel(description = "The transaction details") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WalletTransaction { public static final String SERIALIZED_NAME_TRANSACTION_ID = "transaction_id"; @SerializedName(SERIALIZED_NAME_TRANSACTION_ID) private String transactionId; public static final String SERIALIZED_NAME_WALLET_ID = "wallet_id"; @SerializedName(SERIALIZED_NAME_WALLET_ID) private String walletId; public static final String SERIALIZED_NAME_REFERENCE = "reference"; @SerializedName(SERIALIZED_NAME_REFERENCE) private String reference; /** * The type of the transaction. The supported transaction types that are returned are: &#x60;BANK_TRANSFER:&#x60; a transaction which credits an e-wallet through an external bank transfer. &#x60;PAYOUT:&#x60; a transaction which debits an e-wallet by disbursing funds to a counterparty. &#x60;PIS_PAY_IN:&#x60; a payment which credits an e-wallet through Plaid&#39;s Payment Initiation Services (PIS) APIs. For more information see the [Payment Initiation endpoints](https://plaid.com/docs/api/products/payment-initiation/). &#x60;REFUND:&#x60; a transaction which debits an e-wallet by refunding a previously initiated payment made through Plaid&#39;s [PIS APIs](https://plaid.com/docs/api/products/payment-initiation/). &#x60;FUNDS_SWEEP&#x60;: an automated transaction which debits funds from an e-wallet to a designated client-owned account. &#x60;RETURN&#x60;: an automated transaction where a debit transaction was reversed and money moved back to originating account. &#x60;RECALL&#x60;: a transaction where the sending bank has requested the return of funds due to a fraud claim, technical error, or other issue associated with the payment. */ @JsonAdapter(TypeEnum.Adapter.class) public enum TypeEnum { BANK_TRANSFER("BANK_TRANSFER"), PAYOUT("PAYOUT"), PIS_PAY_IN("PIS_PAY_IN"), REFUND("REFUND"), FUNDS_SWEEP("FUNDS_SWEEP"), RETURN("RETURN"), RECALL("RECALL"); 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; } } throw new IllegalArgumentException("Unexpected value '" + value + "'"); } 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 static final String SERIALIZED_NAME_SCHEME = "scheme"; @SerializedName(SERIALIZED_NAME_SCHEME) private WalletPaymentScheme scheme; public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private WalletTransactionAmount amount; public static final String SERIALIZED_NAME_COUNTERPARTY = "counterparty"; @SerializedName(SERIALIZED_NAME_COUNTERPARTY) private WalletTransactionCounterparty counterparty; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private WalletTransactionStatus status; public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) private OffsetDateTime createdAt; public static final String SERIALIZED_NAME_LAST_STATUS_UPDATE = "last_status_update"; @SerializedName(SERIALIZED_NAME_LAST_STATUS_UPDATE) private OffsetDateTime lastStatusUpdate; public static final String SERIALIZED_NAME_PAYMENT_ID = "payment_id"; @SerializedName(SERIALIZED_NAME_PAYMENT_ID) private String paymentId; public static final String SERIALIZED_NAME_FAILURE_REASON = "failure_reason"; @SerializedName(SERIALIZED_NAME_FAILURE_REASON) private WalletTransactionFailureReason failureReason; public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private PlaidError error; public static final String SERIALIZED_NAME_RELATED_TRANSACTIONS = "related_transactions"; @SerializedName(SERIALIZED_NAME_RELATED_TRANSACTIONS) private List<WalletTransactionRelation> relatedTransactions = null; public WalletTransaction transactionId(String transactionId) { this.transactionId = transactionId; return this; } /** * A unique ID identifying the transaction * @return transactionId **/ @ApiModelProperty(required = true, value = "A unique ID identifying the transaction") public String getTransactionId() { return transactionId; } public void setTransactionId(String transactionId) { this.transactionId = transactionId; } public WalletTransaction 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 **/ @ApiModelProperty(required = true, 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 WalletTransaction reference(String reference) { this.reference = reference; return this; } /** * A reference for the transaction * @return reference **/ @ApiModelProperty(required = true, value = "A reference for the transaction") public String getReference() { return reference; } public void setReference(String reference) { this.reference = reference; } public WalletTransaction type(TypeEnum type) { this.type = type; return this; } /** * The type of the transaction. The supported transaction types that are returned are: &#x60;BANK_TRANSFER:&#x60; a transaction which credits an e-wallet through an external bank transfer. &#x60;PAYOUT:&#x60; a transaction which debits an e-wallet by disbursing funds to a counterparty. &#x60;PIS_PAY_IN:&#x60; a payment which credits an e-wallet through Plaid&#39;s Payment Initiation Services (PIS) APIs. For more information see the [Payment Initiation endpoints](https://plaid.com/docs/api/products/payment-initiation/). &#x60;REFUND:&#x60; a transaction which debits an e-wallet by refunding a previously initiated payment made through Plaid&#39;s [PIS APIs](https://plaid.com/docs/api/products/payment-initiation/). &#x60;FUNDS_SWEEP&#x60;: an automated transaction which debits funds from an e-wallet to a designated client-owned account. &#x60;RETURN&#x60;: an automated transaction where a debit transaction was reversed and money moved back to originating account. &#x60;RECALL&#x60;: a transaction where the sending bank has requested the return of funds due to a fraud claim, technical error, or other issue associated with the payment. * @return type **/ @ApiModelProperty(required = true, value = "The type of the transaction. The supported transaction types that are returned are: `BANK_TRANSFER:` a transaction which credits an e-wallet through an external bank transfer. `PAYOUT:` a transaction which debits an e-wallet by disbursing funds to a counterparty. `PIS_PAY_IN:` a payment which credits an e-wallet through Plaid's Payment Initiation Services (PIS) APIs. For more information see the [Payment Initiation endpoints](https://plaid.com/docs/api/products/payment-initiation/). `REFUND:` a transaction which debits an e-wallet by refunding a previously initiated payment made through Plaid's [PIS APIs](https://plaid.com/docs/api/products/payment-initiation/). `FUNDS_SWEEP`: an automated transaction which debits funds from an e-wallet to a designated client-owned account. `RETURN`: an automated transaction where a debit transaction was reversed and money moved back to originating account. `RECALL`: a transaction where the sending bank has requested the return of funds due to a fraud claim, technical error, or other issue associated with the payment.") public TypeEnum getType() { return type; } public void setType(TypeEnum type) { this.type = type; } public WalletTransaction scheme(WalletPaymentScheme scheme) { this.scheme = scheme; return this; } /** * Get scheme * @return scheme **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public WalletPaymentScheme getScheme() { return scheme; } public void setScheme(WalletPaymentScheme scheme) { this.scheme = scheme; } public WalletTransaction amount(WalletTransactionAmount amount) { this.amount = amount; return this; } /** * Get amount * @return amount **/ @ApiModelProperty(required = true, value = "") public WalletTransactionAmount getAmount() { return amount; } public void setAmount(WalletTransactionAmount amount) { this.amount = amount; } public WalletTransaction counterparty(WalletTransactionCounterparty counterparty) { this.counterparty = counterparty; return this; } /** * Get counterparty * @return counterparty **/ @ApiModelProperty(required = true, value = "") public WalletTransactionCounterparty getCounterparty() { return counterparty; } public void setCounterparty(WalletTransactionCounterparty counterparty) { this.counterparty = counterparty; } public WalletTransaction status(WalletTransactionStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public WalletTransactionStatus getStatus() { return status; } public void setStatus(WalletTransactionStatus status) { this.status = status; } public WalletTransaction createdAt(OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** * Timestamp when the transaction was created, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format. * @return createdAt **/ @ApiModelProperty(required = true, value = "Timestamp when the transaction was created, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format.") public OffsetDateTime getCreatedAt() { return createdAt; } public void setCreatedAt(OffsetDateTime createdAt) { this.createdAt = createdAt; } public WalletTransaction 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 WalletTransaction paymentId(String paymentId) { this.paymentId = paymentId; return this; } /** * The payment id that this transaction is associated with, if any. This is present only for transaction types &#x60;PIS_PAY_IN&#x60; and &#x60;REFUND&#x60;. * @return paymentId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The payment id that this transaction is associated with, if any. This is present only for transaction types `PIS_PAY_IN` and `REFUND`.") public String getPaymentId() { return paymentId; } public void setPaymentId(String paymentId) { this.paymentId = paymentId; } public WalletTransaction failureReason(WalletTransactionFailureReason failureReason) { this.failureReason = failureReason; return this; } /** * Get failureReason * @return failureReason **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public WalletTransactionFailureReason getFailureReason() { return failureReason; } public void setFailureReason(WalletTransactionFailureReason failureReason) { this.failureReason = failureReason; } public WalletTransaction 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 WalletTransaction relatedTransactions(List<WalletTransactionRelation> relatedTransactions) { this.relatedTransactions = relatedTransactions; return this; } public WalletTransaction addRelatedTransactionsItem(WalletTransactionRelation relatedTransactionsItem) { if (this.relatedTransactions == null) { this.relatedTransactions = new ArrayList<>(); } this.relatedTransactions.add(relatedTransactionsItem); return this; } /** * A list of wallet transactions that this transaction is associated with, if any. * @return relatedTransactions **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of wallet transactions that this transaction is associated with, if any.") public List<WalletTransactionRelation> getRelatedTransactions() { return relatedTransactions; } public void setRelatedTransactions(List<WalletTransactionRelation> relatedTransactions) { this.relatedTransactions = relatedTransactions; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } WalletTransaction walletTransaction = (WalletTransaction) o; return Objects.equals(this.transactionId, walletTransaction.transactionId) && Objects.equals(this.walletId, walletTransaction.walletId) && Objects.equals(this.reference, walletTransaction.reference) && Objects.equals(this.type, walletTransaction.type) && Objects.equals(this.scheme, walletTransaction.scheme) && Objects.equals(this.amount, walletTransaction.amount) && Objects.equals(this.counterparty, walletTransaction.counterparty) && Objects.equals(this.status, walletTransaction.status) && Objects.equals(this.createdAt, walletTransaction.createdAt) && Objects.equals(this.lastStatusUpdate, walletTransaction.lastStatusUpdate) && Objects.equals(this.paymentId, walletTransaction.paymentId) && Objects.equals(this.failureReason, walletTransaction.failureReason) && Objects.equals(this.error, walletTransaction.error) && Objects.equals(this.relatedTransactions, walletTransaction.relatedTransactions); } @Override public int hashCode() { return Objects.hash(transactionId, walletId, reference, type, scheme, amount, counterparty, status, createdAt, lastStatusUpdate, paymentId, failureReason, error, relatedTransactions); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WalletTransaction {\n"); sb.append(" transactionId: ").append(toIndentedString(transactionId)).append("\n"); sb.append(" walletId: ").append(toIndentedString(walletId)).append("\n"); sb.append(" reference: ").append(toIndentedString(reference)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" scheme: ").append(toIndentedString(scheme)).append("\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" counterparty: ").append(toIndentedString(counterparty)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n"); sb.append(" lastStatusUpdate: ").append(toIndentedString(lastStatusUpdate)).append("\n"); sb.append(" paymentId: ").append(toIndentedString(paymentId)).append("\n"); sb.append(" failureReason: ").append(toIndentedString(failureReason)).append("\n"); sb.append(" error: ").append(toIndentedString(error)).append("\n"); sb.append(" relatedTransactions: ").append(toIndentedString(relatedTransactions)).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/PaymentInitiationConsentPayerDetails.java
src/main/java/com/plaid/client/model/PaymentInitiationConsentPayerDetails.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.PaymentInitiationAddress; import com.plaid.client.model.PaymentInitiationConsentPayerNumbers; 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; /** * An object representing the payment consent payer details. Payer &#x60;name&#x60; and account &#x60;numbers&#x60; are required to lock the account to which the consent can be created. */ @ApiModel(description = "An object representing the payment consent payer details. Payer `name` and account `numbers` are required to lock the account to which the consent can be created.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentInitiationConsentPayerDetails { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_NUMBERS = "numbers"; @SerializedName(SERIALIZED_NAME_NUMBERS) private PaymentInitiationConsentPayerNumbers numbers; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private PaymentInitiationAddress address; 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_PHONE_NUMBERS = "phone_numbers"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBERS) private List<String> phoneNumbers = null; public static final String SERIALIZED_NAME_EMAILS = "emails"; @SerializedName(SERIALIZED_NAME_EMAILS) private List<String> emails = null; public PaymentInitiationConsentPayerDetails name(String name) { this.name = name; return this; } /** * The name of the payer as it appears in their bank account * @return name **/ @ApiModelProperty(required = true, value = "The name of the payer as it appears in their bank account") public String getName() { return name; } public void setName(String name) { this.name = name; } public PaymentInitiationConsentPayerDetails numbers(PaymentInitiationConsentPayerNumbers numbers) { this.numbers = numbers; return this; } /** * Get numbers * @return numbers **/ @ApiModelProperty(required = true, value = "") public PaymentInitiationConsentPayerNumbers getNumbers() { return numbers; } public void setNumbers(PaymentInitiationConsentPayerNumbers numbers) { this.numbers = numbers; } public PaymentInitiationConsentPayerDetails address(PaymentInitiationAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaymentInitiationAddress getAddress() { return address; } public void setAddress(PaymentInitiationAddress address) { this.address = address; } public PaymentInitiationConsentPayerDetails dateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; return this; } /** * The payer&#39;s birthdate, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) (YYYY-MM-DD) format. * @return dateOfBirth **/ @javax.annotation.Nullable @ApiModelProperty(value = "The payer's birthdate, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) (YYYY-MM-DD) format.") public LocalDate getDateOfBirth() { return dateOfBirth; } public void setDateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; } public PaymentInitiationConsentPayerDetails phoneNumbers(List<String> phoneNumbers) { this.phoneNumbers = phoneNumbers; return this; } public PaymentInitiationConsentPayerDetails addPhoneNumbersItem(String phoneNumbersItem) { if (this.phoneNumbers == null) { this.phoneNumbers = new ArrayList<>(); } this.phoneNumbers.add(phoneNumbersItem); return this; } /** * The payer&#39;s phone numbers in E.164 format: +{countrycode}{number} * @return phoneNumbers **/ @javax.annotation.Nullable @ApiModelProperty(value = "The payer's phone numbers in E.164 format: +{countrycode}{number}") public List<String> getPhoneNumbers() { return phoneNumbers; } public void setPhoneNumbers(List<String> phoneNumbers) { this.phoneNumbers = phoneNumbers; } public PaymentInitiationConsentPayerDetails emails(List<String> emails) { this.emails = emails; return this; } public PaymentInitiationConsentPayerDetails addEmailsItem(String emailsItem) { if (this.emails == null) { this.emails = new ArrayList<>(); } this.emails.add(emailsItem); return this; } /** * The payer&#39;s emails * @return emails **/ @javax.annotation.Nullable @ApiModelProperty(value = "The payer's emails") public List<String> getEmails() { return emails; } public void setEmails(List<String> emails) { this.emails = emails; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaymentInitiationConsentPayerDetails paymentInitiationConsentPayerDetails = (PaymentInitiationConsentPayerDetails) o; return Objects.equals(this.name, paymentInitiationConsentPayerDetails.name) && Objects.equals(this.numbers, paymentInitiationConsentPayerDetails.numbers) && Objects.equals(this.address, paymentInitiationConsentPayerDetails.address) && Objects.equals(this.dateOfBirth, paymentInitiationConsentPayerDetails.dateOfBirth) && Objects.equals(this.phoneNumbers, paymentInitiationConsentPayerDetails.phoneNumbers) && Objects.equals(this.emails, paymentInitiationConsentPayerDetails.emails); } @Override public int hashCode() { return Objects.hash(name, numbers, address, dateOfBirth, phoneNumbers, emails); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentInitiationConsentPayerDetails {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" numbers: ").append(toIndentedString(numbers)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" dateOfBirth: ").append(toIndentedString(dateOfBirth)).append("\n"); sb.append(" phoneNumbers: ").append(toIndentedString(phoneNumbers)).append("\n"); sb.append(" emails: ").append(toIndentedString(emails)).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/TaxpayerIdentifier.java
src/main/java/com/plaid/client/model/TaxpayerIdentifier.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.TaxpayerIdentifierType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Information about the Taxpayer identification values assigned to the individual or legal entity. */ @ApiModel(description = "Information about the Taxpayer identification values assigned to the individual or legal entity.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TaxpayerIdentifier { public static final String SERIALIZED_NAME_TAXPAYER_IDENTIFIER_TYPE = "TaxpayerIdentifierType"; @SerializedName(SERIALIZED_NAME_TAXPAYER_IDENTIFIER_TYPE) private TaxpayerIdentifierType taxpayerIdentifierType; public static final String SERIALIZED_NAME_TAXPAYER_IDENTIFIER_VALUE = "TaxpayerIdentifierValue"; @SerializedName(SERIALIZED_NAME_TAXPAYER_IDENTIFIER_VALUE) private String taxpayerIdentifierValue; public TaxpayerIdentifier taxpayerIdentifierType(TaxpayerIdentifierType taxpayerIdentifierType) { this.taxpayerIdentifierType = taxpayerIdentifierType; return this; } /** * Get taxpayerIdentifierType * @return taxpayerIdentifierType **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public TaxpayerIdentifierType getTaxpayerIdentifierType() { return taxpayerIdentifierType; } public void setTaxpayerIdentifierType(TaxpayerIdentifierType taxpayerIdentifierType) { this.taxpayerIdentifierType = taxpayerIdentifierType; } public TaxpayerIdentifier taxpayerIdentifierValue(String taxpayerIdentifierValue) { this.taxpayerIdentifierValue = taxpayerIdentifierValue; return this; } /** * The value of the taxpayer identifier as assigned by the IRS to the individual or legal entity. * @return taxpayerIdentifierValue **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The value of the taxpayer identifier as assigned by the IRS to the individual or legal entity.") public String getTaxpayerIdentifierValue() { return taxpayerIdentifierValue; } public void setTaxpayerIdentifierValue(String taxpayerIdentifierValue) { this.taxpayerIdentifierValue = taxpayerIdentifierValue; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TaxpayerIdentifier taxpayerIdentifier = (TaxpayerIdentifier) o; return Objects.equals(this.taxpayerIdentifierType, taxpayerIdentifier.taxpayerIdentifierType) && Objects.equals(this.taxpayerIdentifierValue, taxpayerIdentifier.taxpayerIdentifierValue); } @Override public int hashCode() { return Objects.hash(taxpayerIdentifierType, taxpayerIdentifierValue); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TaxpayerIdentifier {\n"); sb.append(" taxpayerIdentifierType: ").append(toIndentedString(taxpayerIdentifierType)).append("\n"); sb.append(" taxpayerIdentifierValue: ").append(toIndentedString(taxpayerIdentifierValue)).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/CashflowReportMonthlySummaryTotalLoanPayment.java
src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryTotalLoanPayment.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 total amount of all loan payment transactions during this month. */ @ApiModel(description = "The total amount of all loan payment transactions during this month.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CashflowReportMonthlySummaryTotalLoanPayment { 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 CashflowReportMonthlySummaryTotalLoanPayment 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 CashflowReportMonthlySummaryTotalLoanPayment 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 CashflowReportMonthlySummaryTotalLoanPayment 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; } CashflowReportMonthlySummaryTotalLoanPayment cashflowReportMonthlySummaryTotalLoanPayment = (CashflowReportMonthlySummaryTotalLoanPayment) o; return Objects.equals(this.amount, cashflowReportMonthlySummaryTotalLoanPayment.amount) && Objects.equals(this.isoCurrencyCode, cashflowReportMonthlySummaryTotalLoanPayment.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, cashflowReportMonthlySummaryTotalLoanPayment.unofficialCurrencyCode); } @Override public int hashCode() { return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CashflowReportMonthlySummaryTotalLoanPayment {\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/LinkTokenCreateRequestCraOptionsNetworkInsights.java
src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptionsNetworkInsights.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.NetworkInsightsVersion; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Specifies options for initializing Link for use with the CRA Network Insights product. */ @ApiModel(description = "Specifies options for initializing Link for use with the CRA Network Insights product.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkTokenCreateRequestCraOptionsNetworkInsights { public static final String SERIALIZED_NAME_NETWORK_INSIGHTS_VERSION = "network_insights_version"; @SerializedName(SERIALIZED_NAME_NETWORK_INSIGHTS_VERSION) private NetworkInsightsVersion networkInsightsVersion; public LinkTokenCreateRequestCraOptionsNetworkInsights networkInsightsVersion(NetworkInsightsVersion networkInsightsVersion) { this.networkInsightsVersion = networkInsightsVersion; return this; } /** * Get networkInsightsVersion * @return networkInsightsVersion **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public NetworkInsightsVersion getNetworkInsightsVersion() { return networkInsightsVersion; } public void setNetworkInsightsVersion(NetworkInsightsVersion networkInsightsVersion) { this.networkInsightsVersion = networkInsightsVersion; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkTokenCreateRequestCraOptionsNetworkInsights linkTokenCreateRequestCraOptionsNetworkInsights = (LinkTokenCreateRequestCraOptionsNetworkInsights) o; return Objects.equals(this.networkInsightsVersion, linkTokenCreateRequestCraOptionsNetworkInsights.networkInsightsVersion); } @Override public int hashCode() { return Objects.hash(networkInsightsVersion); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkTokenCreateRequestCraOptionsNetworkInsights {\n"); sb.append(" networkInsightsVersion: ").append(toIndentedString(networkInsightsVersion)).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/LiabilitiesObject.java
src/main/java/com/plaid/client/model/LiabilitiesObject.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.CreditCardLiability; import com.plaid.client.model.MortgageLiability; import com.plaid.client.model.StudentLoan; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * An object containing liability accounts */ @ApiModel(description = "An object containing liability accounts") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LiabilitiesObject { public static final String SERIALIZED_NAME_CREDIT = "credit"; @SerializedName(SERIALIZED_NAME_CREDIT) private List<CreditCardLiability> credit = new ArrayList<>(); public static final String SERIALIZED_NAME_MORTGAGE = "mortgage"; @SerializedName(SERIALIZED_NAME_MORTGAGE) private List<MortgageLiability> mortgage = new ArrayList<>(); public static final String SERIALIZED_NAME_STUDENT = "student"; @SerializedName(SERIALIZED_NAME_STUDENT) private List<StudentLoan> student = new ArrayList<>(); public LiabilitiesObject credit(List<CreditCardLiability> credit) { this.credit = credit; return this; } public LiabilitiesObject addCreditItem(CreditCardLiability creditItem) { this.credit.add(creditItem); return this; } /** * The credit accounts returned. * @return credit **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The credit accounts returned.") public List<CreditCardLiability> getCredit() { return credit; } public void setCredit(List<CreditCardLiability> credit) { this.credit = credit; } public LiabilitiesObject mortgage(List<MortgageLiability> mortgage) { this.mortgage = mortgage; return this; } public LiabilitiesObject addMortgageItem(MortgageLiability mortgageItem) { this.mortgage.add(mortgageItem); return this; } /** * The mortgage accounts returned. * @return mortgage **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The mortgage accounts returned.") public List<MortgageLiability> getMortgage() { return mortgage; } public void setMortgage(List<MortgageLiability> mortgage) { this.mortgage = mortgage; } public LiabilitiesObject student(List<StudentLoan> student) { this.student = student; return this; } public LiabilitiesObject addStudentItem(StudentLoan studentItem) { this.student.add(studentItem); return this; } /** * The student loan accounts returned. * @return student **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The student loan accounts returned.") public List<StudentLoan> getStudent() { return student; } public void setStudent(List<StudentLoan> student) { this.student = student; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LiabilitiesObject liabilitiesObject = (LiabilitiesObject) o; return Objects.equals(this.credit, liabilitiesObject.credit) && Objects.equals(this.mortgage, liabilitiesObject.mortgage) && Objects.equals(this.student, liabilitiesObject.student); } @Override public int hashCode() { return Objects.hash(credit, mortgage, student); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LiabilitiesObject {\n"); sb.append(" credit: ").append(toIndentedString(credit)).append("\n"); sb.append(" mortgage: ").append(toIndentedString(mortgage)).append("\n"); sb.append(" student: ").append(toIndentedString(student)).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/TotalReportOutflowAmount90d.java
src/main/java/com/plaid/client/model/TotalReportOutflowAmount90d.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 90 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 90 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 TotalReportOutflowAmount90d { 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 TotalReportOutflowAmount90d 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 TotalReportOutflowAmount90d 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 TotalReportOutflowAmount90d 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; } TotalReportOutflowAmount90d totalReportOutflowAmount90d = (TotalReportOutflowAmount90d) o; return Objects.equals(this.amount, totalReportOutflowAmount90d.amount) && Objects.equals(this.isoCurrencyCode, totalReportOutflowAmount90d.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, totalReportOutflowAmount90d.unofficialCurrencyCode); } @Override public int hashCode() { return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TotalReportOutflowAmount90d {\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/SandboxBankTransferFireWebhookRequest.java
src/main/java/com/plaid/client/model/SandboxBankTransferFireWebhookRequest.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;/sandbox/bank_transfer/fire_webhook&#x60; */ @ApiModel(description = "Defines the request schema for `/sandbox/bank_transfer/fire_webhook`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SandboxBankTransferFireWebhookRequest { 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_WEBHOOK = "webhook"; @SerializedName(SERIALIZED_NAME_WEBHOOK) private String webhook; public SandboxBankTransferFireWebhookRequest 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 SandboxBankTransferFireWebhookRequest 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 SandboxBankTransferFireWebhookRequest webhook(String webhook) { this.webhook = webhook; return this; } /** * The URL to which the webhook should be sent. * @return webhook **/ @ApiModelProperty(required = true, value = "The URL to which the webhook should be sent.") public String getWebhook() { return webhook; } public void setWebhook(String webhook) { this.webhook = webhook; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SandboxBankTransferFireWebhookRequest sandboxBankTransferFireWebhookRequest = (SandboxBankTransferFireWebhookRequest) o; return Objects.equals(this.clientId, sandboxBankTransferFireWebhookRequest.clientId) && Objects.equals(this.secret, sandboxBankTransferFireWebhookRequest.secret) && Objects.equals(this.webhook, sandboxBankTransferFireWebhookRequest.webhook); } @Override public int hashCode() { return Objects.hash(clientId, secret, webhook); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SandboxBankTransferFireWebhookRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" webhook: ").append(toIndentedString(webhook)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BankTransferBalance.java
src/main/java/com/plaid/client/model/BankTransferBalance.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Information about the balance of a bank transfer */ @ApiModel(description = "Information about the balance of a bank transfer") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BankTransferBalance { public static final String SERIALIZED_NAME_AVAILABLE = "available"; @SerializedName(SERIALIZED_NAME_AVAILABLE) private String available; public static final String SERIALIZED_NAME_TRANSACTABLE = "transactable"; @SerializedName(SERIALIZED_NAME_TRANSACTABLE) private String transactable; public BankTransferBalance available(String available) { this.available = available; return this; } /** * The total available balance - the sum of all successful debit transfer amounts minus all credit transfer amounts. * @return available **/ @ApiModelProperty(required = true, value = "The total available balance - the sum of all successful debit transfer amounts minus all credit transfer amounts.") public String getAvailable() { return available; } public void setAvailable(String available) { this.available = available; } public BankTransferBalance transactable(String transactable) { this.transactable = transactable; return this; } /** * The transactable balance shows the amount in your account that you are able to use for transfers, and is essentially your available balance minus your minimum balance. * @return transactable **/ @ApiModelProperty(required = true, value = "The transactable balance shows the amount in your account that you are able to use for transfers, and is essentially your available balance minus your minimum balance.") public String getTransactable() { return transactable; } public void setTransactable(String transactable) { this.transactable = transactable; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BankTransferBalance bankTransferBalance = (BankTransferBalance) o; return Objects.equals(this.available, bankTransferBalance.available) && Objects.equals(this.transactable, bankTransferBalance.transactable); } @Override public int hashCode() { return Objects.hash(available, transactable); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BankTransferBalance {\n"); sb.append(" available: ").append(toIndentedString(available)).append("\n"); sb.append(" transactable: ").append(toIndentedString(transactable)).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/BaseReportAccountInsights.java
src/main/java/com/plaid/client/model/BaseReportAccountInsights.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.BaseReportAverageFlowInsights; import com.plaid.client.model.BaseReportLongestGapInsights; import com.plaid.client.model.BaseReportNumberFlowInsights; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.math.BigDecimal; import java.time.LocalDate; import java.util.ArrayList; import java.util.List; /** * Calculated insights derived from transaction-level data. This field has been deprecated in favor of [Base Report attributes aggregated across accounts](https://plaid.com/docs/api/products/check/#cra-check_report-base_report-get-response-report-attributes) and will be removed in a future release. */ @ApiModel(description = "Calculated insights derived from transaction-level data. This field has been deprecated in favor of [Base Report attributes aggregated across accounts](https://plaid.com/docs/api/products/check/#cra-check_report-base_report-get-response-report-attributes) and will be removed in a future release.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BaseReportAccountInsights { public static final String SERIALIZED_NAME_OLDEST_TRANSACTION_DATE = "oldest_transaction_date"; @SerializedName(SERIALIZED_NAME_OLDEST_TRANSACTION_DATE) private LocalDate oldestTransactionDate; public static final String SERIALIZED_NAME_MOST_RECENT_TRANSACTION_DATE = "most_recent_transaction_date"; @SerializedName(SERIALIZED_NAME_MOST_RECENT_TRANSACTION_DATE) private LocalDate mostRecentTransactionDate; public static final String SERIALIZED_NAME_DAYS_AVAILABLE = "days_available"; @SerializedName(SERIALIZED_NAME_DAYS_AVAILABLE) private Integer daysAvailable; public static final String SERIALIZED_NAME_AVERAGE_DAYS_BETWEEN_TRANSACTIONS = "average_days_between_transactions"; @SerializedName(SERIALIZED_NAME_AVERAGE_DAYS_BETWEEN_TRANSACTIONS) private Double averageDaysBetweenTransactions; public static final String SERIALIZED_NAME_LONGEST_GAPS_BETWEEN_TRANSACTIONS = "longest_gaps_between_transactions"; @SerializedName(SERIALIZED_NAME_LONGEST_GAPS_BETWEEN_TRANSACTIONS) private List<BaseReportLongestGapInsights> longestGapsBetweenTransactions = null; public static final String SERIALIZED_NAME_NUMBER_OF_INFLOWS = "number_of_inflows"; @SerializedName(SERIALIZED_NAME_NUMBER_OF_INFLOWS) private List<BaseReportNumberFlowInsights> numberOfInflows = null; public static final String SERIALIZED_NAME_AVERAGE_INFLOW_AMOUNTS = "average_inflow_amounts"; @SerializedName(SERIALIZED_NAME_AVERAGE_INFLOW_AMOUNTS) private List<BaseReportAverageFlowInsights> averageInflowAmounts = null; public static final String SERIALIZED_NAME_NUMBER_OF_OUTFLOWS = "number_of_outflows"; @SerializedName(SERIALIZED_NAME_NUMBER_OF_OUTFLOWS) private List<BaseReportNumberFlowInsights> numberOfOutflows = null; public static final String SERIALIZED_NAME_AVERAGE_OUTFLOW_AMOUNTS = "average_outflow_amounts"; @SerializedName(SERIALIZED_NAME_AVERAGE_OUTFLOW_AMOUNTS) private List<BaseReportAverageFlowInsights> averageOutflowAmounts = null; public static final String SERIALIZED_NAME_NUMBER_OF_DAYS_NO_TRANSACTIONS = "number_of_days_no_transactions"; @SerializedName(SERIALIZED_NAME_NUMBER_OF_DAYS_NO_TRANSACTIONS) private Integer numberOfDaysNoTransactions; public BaseReportAccountInsights oldestTransactionDate(LocalDate oldestTransactionDate) { this.oldestTransactionDate = oldestTransactionDate; return this; } /** * Date of the earliest transaction for the account. * @return oldestTransactionDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "Date of the earliest transaction for the account.") public LocalDate getOldestTransactionDate() { return oldestTransactionDate; } public void setOldestTransactionDate(LocalDate oldestTransactionDate) { this.oldestTransactionDate = oldestTransactionDate; } public BaseReportAccountInsights mostRecentTransactionDate(LocalDate mostRecentTransactionDate) { this.mostRecentTransactionDate = mostRecentTransactionDate; return this; } /** * Date of the most recent transaction for the account. * @return mostRecentTransactionDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "Date of the most recent transaction for the account.") public LocalDate getMostRecentTransactionDate() { return mostRecentTransactionDate; } public void setMostRecentTransactionDate(LocalDate mostRecentTransactionDate) { this.mostRecentTransactionDate = mostRecentTransactionDate; } public BaseReportAccountInsights daysAvailable(Integer daysAvailable) { this.daysAvailable = daysAvailable; return this; } /** * Number of days days available for the account. * @return daysAvailable **/ @javax.annotation.Nullable @ApiModelProperty(value = "Number of days days available for the account.") public Integer getDaysAvailable() { return daysAvailable; } public void setDaysAvailable(Integer daysAvailable) { this.daysAvailable = daysAvailable; } public BaseReportAccountInsights averageDaysBetweenTransactions(Double averageDaysBetweenTransactions) { this.averageDaysBetweenTransactions = averageDaysBetweenTransactions; return this; } /** * Average number of days between sequential transactions * @return averageDaysBetweenTransactions **/ @javax.annotation.Nullable @ApiModelProperty(value = "Average number of days between sequential transactions") public Double getAverageDaysBetweenTransactions() { return averageDaysBetweenTransactions; } public void setAverageDaysBetweenTransactions(Double averageDaysBetweenTransactions) { this.averageDaysBetweenTransactions = averageDaysBetweenTransactions; } public BaseReportAccountInsights longestGapsBetweenTransactions(List<BaseReportLongestGapInsights> longestGapsBetweenTransactions) { this.longestGapsBetweenTransactions = longestGapsBetweenTransactions; return this; } public BaseReportAccountInsights addLongestGapsBetweenTransactionsItem(BaseReportLongestGapInsights longestGapsBetweenTransactionsItem) { if (this.longestGapsBetweenTransactions == null) { this.longestGapsBetweenTransactions = new ArrayList<>(); } this.longestGapsBetweenTransactions.add(longestGapsBetweenTransactionsItem); return this; } /** * Longest gap between sequential transactions in a time period. This array can include multiple time periods. * @return longestGapsBetweenTransactions **/ @javax.annotation.Nullable @ApiModelProperty(value = "Longest gap between sequential transactions in a time period. This array can include multiple time periods.") public List<BaseReportLongestGapInsights> getLongestGapsBetweenTransactions() { return longestGapsBetweenTransactions; } public void setLongestGapsBetweenTransactions(List<BaseReportLongestGapInsights> longestGapsBetweenTransactions) { this.longestGapsBetweenTransactions = longestGapsBetweenTransactions; } public BaseReportAccountInsights numberOfInflows(List<BaseReportNumberFlowInsights> numberOfInflows) { this.numberOfInflows = numberOfInflows; return this; } public BaseReportAccountInsights addNumberOfInflowsItem(BaseReportNumberFlowInsights numberOfInflowsItem) { if (this.numberOfInflows == null) { this.numberOfInflows = new ArrayList<>(); } this.numberOfInflows.add(numberOfInflowsItem); return this; } /** * The number of debits into the account. This array will be empty for non-depository accounts. * @return numberOfInflows **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of debits into the account. This array will be empty for non-depository accounts.") public List<BaseReportNumberFlowInsights> getNumberOfInflows() { return numberOfInflows; } public void setNumberOfInflows(List<BaseReportNumberFlowInsights> numberOfInflows) { this.numberOfInflows = numberOfInflows; } public BaseReportAccountInsights averageInflowAmounts(List<BaseReportAverageFlowInsights> averageInflowAmounts) { this.averageInflowAmounts = averageInflowAmounts; return this; } public BaseReportAccountInsights addAverageInflowAmountsItem(BaseReportAverageFlowInsights averageInflowAmountsItem) { if (this.averageInflowAmounts == null) { this.averageInflowAmounts = new ArrayList<>(); } this.averageInflowAmounts.add(averageInflowAmountsItem); return this; } /** * Average amount of debit transactions into the account in a time period. This array will be empty for non-depository accounts. This field only takes into account USD transactions from the account. * @return averageInflowAmounts **/ @javax.annotation.Nullable @ApiModelProperty(value = "Average amount of debit transactions into the account in a time period. This array will be empty for non-depository accounts. This field only takes into account USD transactions from the account.") public List<BaseReportAverageFlowInsights> getAverageInflowAmounts() { return averageInflowAmounts; } public void setAverageInflowAmounts(List<BaseReportAverageFlowInsights> averageInflowAmounts) { this.averageInflowAmounts = averageInflowAmounts; } public BaseReportAccountInsights numberOfOutflows(List<BaseReportNumberFlowInsights> numberOfOutflows) { this.numberOfOutflows = numberOfOutflows; return this; } public BaseReportAccountInsights addNumberOfOutflowsItem(BaseReportNumberFlowInsights numberOfOutflowsItem) { if (this.numberOfOutflows == null) { this.numberOfOutflows = new ArrayList<>(); } this.numberOfOutflows.add(numberOfOutflowsItem); return this; } /** * The number of outflows from the account. This array will be empty for non-depository accounts. * @return numberOfOutflows **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of outflows from the account. This array will be empty for non-depository accounts.") public List<BaseReportNumberFlowInsights> getNumberOfOutflows() { return numberOfOutflows; } public void setNumberOfOutflows(List<BaseReportNumberFlowInsights> numberOfOutflows) { this.numberOfOutflows = numberOfOutflows; } public BaseReportAccountInsights averageOutflowAmounts(List<BaseReportAverageFlowInsights> averageOutflowAmounts) { this.averageOutflowAmounts = averageOutflowAmounts; return this; } public BaseReportAccountInsights addAverageOutflowAmountsItem(BaseReportAverageFlowInsights averageOutflowAmountsItem) { if (this.averageOutflowAmounts == null) { this.averageOutflowAmounts = new ArrayList<>(); } this.averageOutflowAmounts.add(averageOutflowAmountsItem); return this; } /** * Average amount of transactions out of the account in a time period. This array will be empty for non-depository accounts. This field only takes into account USD transactions from the account. * @return averageOutflowAmounts **/ @javax.annotation.Nullable @ApiModelProperty(value = "Average amount of transactions out of the account in a time period. This array will be empty for non-depository accounts. This field only takes into account USD transactions from the account.") public List<BaseReportAverageFlowInsights> getAverageOutflowAmounts() { return averageOutflowAmounts; } public void setAverageOutflowAmounts(List<BaseReportAverageFlowInsights> averageOutflowAmounts) { this.averageOutflowAmounts = averageOutflowAmounts; } public BaseReportAccountInsights numberOfDaysNoTransactions(Integer numberOfDaysNoTransactions) { this.numberOfDaysNoTransactions = numberOfDaysNoTransactions; return this; } /** * Number of days with no transactions * @return numberOfDaysNoTransactions **/ @javax.annotation.Nullable @ApiModelProperty(value = "Number of days with no transactions") public Integer getNumberOfDaysNoTransactions() { return numberOfDaysNoTransactions; } public void setNumberOfDaysNoTransactions(Integer numberOfDaysNoTransactions) { this.numberOfDaysNoTransactions = numberOfDaysNoTransactions; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BaseReportAccountInsights baseReportAccountInsights = (BaseReportAccountInsights) o; return Objects.equals(this.oldestTransactionDate, baseReportAccountInsights.oldestTransactionDate) && Objects.equals(this.mostRecentTransactionDate, baseReportAccountInsights.mostRecentTransactionDate) && Objects.equals(this.daysAvailable, baseReportAccountInsights.daysAvailable) && Objects.equals(this.averageDaysBetweenTransactions, baseReportAccountInsights.averageDaysBetweenTransactions) && Objects.equals(this.longestGapsBetweenTransactions, baseReportAccountInsights.longestGapsBetweenTransactions) && Objects.equals(this.numberOfInflows, baseReportAccountInsights.numberOfInflows) && Objects.equals(this.averageInflowAmounts, baseReportAccountInsights.averageInflowAmounts) && Objects.equals(this.numberOfOutflows, baseReportAccountInsights.numberOfOutflows) && Objects.equals(this.averageOutflowAmounts, baseReportAccountInsights.averageOutflowAmounts) && Objects.equals(this.numberOfDaysNoTransactions, baseReportAccountInsights.numberOfDaysNoTransactions); } @Override public int hashCode() { return Objects.hash(oldestTransactionDate, mostRecentTransactionDate, daysAvailable, averageDaysBetweenTransactions, longestGapsBetweenTransactions, numberOfInflows, averageInflowAmounts, numberOfOutflows, averageOutflowAmounts, numberOfDaysNoTransactions); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BaseReportAccountInsights {\n"); sb.append(" oldestTransactionDate: ").append(toIndentedString(oldestTransactionDate)).append("\n"); sb.append(" mostRecentTransactionDate: ").append(toIndentedString(mostRecentTransactionDate)).append("\n"); sb.append(" daysAvailable: ").append(toIndentedString(daysAvailable)).append("\n"); sb.append(" averageDaysBetweenTransactions: ").append(toIndentedString(averageDaysBetweenTransactions)).append("\n"); sb.append(" longestGapsBetweenTransactions: ").append(toIndentedString(longestGapsBetweenTransactions)).append("\n"); sb.append(" numberOfInflows: ").append(toIndentedString(numberOfInflows)).append("\n"); sb.append(" averageInflowAmounts: ").append(toIndentedString(averageInflowAmounts)).append("\n"); sb.append(" numberOfOutflows: ").append(toIndentedString(numberOfOutflows)).append("\n"); sb.append(" averageOutflowAmounts: ").append(toIndentedString(averageOutflowAmounts)).append("\n"); sb.append(" numberOfDaysNoTransactions: ").append(toIndentedString(numberOfDaysNoTransactions)).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/Total.java
src/main/java/com/plaid/client/model/Total.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.Pay; import com.plaid.client.model.TotalCanonicalDescription; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object representing both the current pay period and year to date amount for a category. */ @ApiModel(description = "An object representing both the current pay period and year to date amount for a category.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Total { public static final String SERIALIZED_NAME_CANONICAL_DESCRIPTION = "canonical_description"; @SerializedName(SERIALIZED_NAME_CANONICAL_DESCRIPTION) private TotalCanonicalDescription canonicalDescription; public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) private String description; public static final String SERIALIZED_NAME_CURRENT_PAY = "current_pay"; @SerializedName(SERIALIZED_NAME_CURRENT_PAY) private Pay currentPay; public static final String SERIALIZED_NAME_YTD_PAY = "ytd_pay"; @SerializedName(SERIALIZED_NAME_YTD_PAY) private Pay ytdPay; public Total canonicalDescription(TotalCanonicalDescription canonicalDescription) { this.canonicalDescription = canonicalDescription; return this; } /** * Get canonicalDescription * @return canonicalDescription **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TotalCanonicalDescription getCanonicalDescription() { return canonicalDescription; } public void setCanonicalDescription(TotalCanonicalDescription canonicalDescription) { this.canonicalDescription = canonicalDescription; } public Total description(String description) { this.description = description; return this; } /** * Text of the line item as printed on the paystub. * @return description **/ @javax.annotation.Nullable @ApiModelProperty(value = "Text of the line item as printed on the paystub.") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public Total currentPay(Pay currentPay) { this.currentPay = currentPay; return this; } /** * Get currentPay * @return currentPay **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public Pay getCurrentPay() { return currentPay; } public void setCurrentPay(Pay currentPay) { this.currentPay = currentPay; } public Total ytdPay(Pay ytdPay) { this.ytdPay = ytdPay; return this; } /** * Get ytdPay * @return ytdPay **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public Pay getYtdPay() { return ytdPay; } public void setYtdPay(Pay ytdPay) { this.ytdPay = ytdPay; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Total total = (Total) o; return Objects.equals(this.canonicalDescription, total.canonicalDescription) && Objects.equals(this.description, total.description) && Objects.equals(this.currentPay, total.currentPay) && Objects.equals(this.ytdPay, total.ytdPay); } @Override public int hashCode() { return Objects.hash(canonicalDescription, description, currentPay, ytdPay); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Total {\n"); sb.append(" canonicalDescription: ").append(toIndentedString(canonicalDescription)).append("\n"); sb.append(" description: ").append(toIndentedString(description)).append("\n"); sb.append(" currentPay: ").append(toIndentedString(currentPay)).append("\n"); sb.append(" ytdPay: ").append(toIndentedString(ytdPay)).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/PartnerEndCustomer.java
src/main/java/com/plaid/client/model/PartnerEndCustomer.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.PartnerEndCustomerStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The details for an end customer. */ @ApiModel(description = "The details for an end customer.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PartnerEndCustomer { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_COMPANY_NAME = "company_name"; @SerializedName(SERIALIZED_NAME_COMPANY_NAME) private String companyName; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private PartnerEndCustomerStatus status; public PartnerEndCustomer clientId(String clientId) { this.clientId = clientId; return this; } /** * The &#x60;client_id&#x60; of the end customer. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The `client_id` of the end customer.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public PartnerEndCustomer companyName(String companyName) { this.companyName = companyName; return this; } /** * The company name associated with the end customer. * @return companyName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The company name associated with the end customer.") public String getCompanyName() { return companyName; } public void setCompanyName(String companyName) { this.companyName = companyName; } public PartnerEndCustomer status(PartnerEndCustomerStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PartnerEndCustomerStatus getStatus() { return status; } public void setStatus(PartnerEndCustomerStatus status) { this.status = status; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PartnerEndCustomer partnerEndCustomer = (PartnerEndCustomer) o; return Objects.equals(this.clientId, partnerEndCustomer.clientId) && Objects.equals(this.companyName, partnerEndCustomer.companyName) && Objects.equals(this.status, partnerEndCustomer.status); } @Override public int hashCode() { return Objects.hash(clientId, companyName, status); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PartnerEndCustomer {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" companyName: ").append(toIndentedString(companyName)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AccountIdentity.java
src/main/java/com/plaid/client/model/AccountIdentity.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.AccountIdentityAllOf; import com.plaid.client.model.AccountSubtype; import com.plaid.client.model.AccountType; import com.plaid.client.model.AccountVerificationInsights; import com.plaid.client.model.Owner; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Identity information about an account */ @ApiModel(description = "Identity information about an account") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AccountIdentity { 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_OWNERS = "owners"; @SerializedName(SERIALIZED_NAME_OWNERS) private List<Owner> owners = new ArrayList<>(); public AccountIdentity 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 AccountIdentity 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 AccountIdentity 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 AccountIdentity 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 AccountIdentity 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 AccountIdentity 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 AccountIdentity 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 AccountIdentity 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 AccountIdentity 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 AccountIdentity 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 AccountIdentity 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 AccountIdentity 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 AccountIdentity owners(List<Owner> owners) { this.owners = owners; return this; } public AccountIdentity addOwnersItem(Owner ownersItem) { this.owners.add(ownersItem); return this; } /** * Data returned by the financial institution about the account owner or owners. Only returned by Identity or Assets endpoints. For business accounts, the name reported may be either the name of the individual or the name of the business, depending on the institution; detecting whether the linked account is a business account is not currently supported. Multiple owners on a single account will be represented in the same &#x60;owner&#x60; object, not in multiple owner objects within the array. In API versions 2018-05-22 and earlier, the &#x60;owners&#x60; object is not returned, and instead identity information is returned in the top level &#x60;identity&#x60; object. For more details, see [Plaid API versioning](https://plaid.com/docs/api/versioning/#version-2019-05-29) * @return owners **/ @ApiModelProperty(required = true, value = "Data returned by the financial institution about the account owner or owners. Only returned by Identity or Assets endpoints. For business accounts, the name reported may be either the name of the individual or the name of the business, depending on the institution; detecting whether the linked account is a business account is not currently supported. Multiple owners on a single account will be represented in the same `owner` object, not in multiple owner objects within the array. In API versions 2018-05-22 and earlier, the `owners` object is not returned, and instead identity information is returned in the top level `identity` object. For more details, see [Plaid API versioning](https://plaid.com/docs/api/versioning/#version-2019-05-29)") public List<Owner> getOwners() { return owners; } public void setOwners(List<Owner> owners) { this.owners = owners; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AccountIdentity accountIdentity = (AccountIdentity) o; return Objects.equals(this.accountId, accountIdentity.accountId) && Objects.equals(this.balances, accountIdentity.balances) && Objects.equals(this.mask, accountIdentity.mask) && Objects.equals(this.name, accountIdentity.name) && Objects.equals(this.officialName, accountIdentity.officialName) && Objects.equals(this.type, accountIdentity.type) && Objects.equals(this.subtype, accountIdentity.subtype) && Objects.equals(this.verificationStatus, accountIdentity.verificationStatus) && Objects.equals(this.verificationName, accountIdentity.verificationName) && Objects.equals(this.verificationInsights, accountIdentity.verificationInsights) && Objects.equals(this.persistentAccountId, accountIdentity.persistentAccountId) && Objects.equals(this.holderCategory, accountIdentity.holderCategory) && Objects.equals(this.owners, accountIdentity.owners); } @Override public int hashCode() { return Objects.hash(accountId, balances, mask, name, officialName, type, subtype, verificationStatus, verificationName, verificationInsights, persistentAccountId, holderCategory, owners); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AccountIdentity {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" balances: ").append(toIndentedString(balances)).append("\n"); sb.append(" mask: ").append(toIndentedString(mask)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" officialName: ").append(toIndentedString(officialName)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" subtype: ").append(toIndentedString(subtype)).append("\n"); sb.append(" verificationStatus: ").append(toIndentedString(verificationStatus)).append("\n"); sb.append(" verificationName: ").append(toIndentedString(verificationName)).append("\n"); sb.append(" verificationInsights: ").append(toIndentedString(verificationInsights)).append("\n"); sb.append(" persistentAccountId: ").append(toIndentedString(persistentAccountId)).append("\n"); sb.append(" holderCategory: ").append(toIndentedString(holderCategory)).append("\n"); sb.append(" owners: ").append(toIndentedString(owners)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferPlatformPersonAddress.java
src/main/java/com/plaid/client/model/TransferPlatformPersonAddress.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; /** * Home address of a person */ @ApiModel(description = "Home address of a person") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferPlatformPersonAddress { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) private String city; public static final String SERIALIZED_NAME_COUNTRY = "country"; @SerializedName(SERIALIZED_NAME_COUNTRY) private String country; public static final String SERIALIZED_NAME_POSTAL_CODE = "postal_code"; @SerializedName(SERIALIZED_NAME_POSTAL_CODE) private String postalCode; 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_STREET2 = "street2"; @SerializedName(SERIALIZED_NAME_STREET2) private String street2; public TransferPlatformPersonAddress city(String city) { this.city = city; return this; } /** * The full city name. * @return city **/ @ApiModelProperty(required = true, value = "The full city name.") public String getCity() { return city; } public void setCity(String city) { this.city = city; } public TransferPlatformPersonAddress 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 **/ @ApiModelProperty(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 TransferPlatformPersonAddress postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * The postal code of the address. * @return postalCode **/ @ApiModelProperty(required = true, value = "The postal code of the address.") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public TransferPlatformPersonAddress region(String region) { this.region = region; return this; } /** * An ISO 3166-2 subdivision code. Related terms would be \&quot;state\&quot;, \&quot;province\&quot;, \&quot;prefecture\&quot;, \&quot;zone\&quot;, \&quot;subdivision\&quot;, etc. * @return region **/ @ApiModelProperty(required = true, value = "An ISO 3166-2 subdivision code. Related terms would be \"state\", \"province\", \"prefecture\", \"zone\", \"subdivision\", etc.") public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public TransferPlatformPersonAddress street(String street) { this.street = street; return this; } /** * The primary street portion of an address. A string with at least one non-whitespace alphabetical character, with a max length of 80 characters. * @return street **/ @ApiModelProperty(required = true, value = "The primary street portion of an address. A string with at least one non-whitespace alphabetical character, with a max length of 80 characters.") public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } public TransferPlatformPersonAddress street2(String street2) { this.street2 = street2; return this; } /** * Extra street information, like an apartment or suite number. If provided, a string with at least one non-whitespace character, with a max length of 50 characters. * @return street2 **/ @javax.annotation.Nullable @ApiModelProperty(value = "Extra street information, like an apartment or suite number. If provided, a string with at least one non-whitespace character, with a max length of 50 characters.") public String getStreet2() { return street2; } public void setStreet2(String street2) { this.street2 = street2; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferPlatformPersonAddress transferPlatformPersonAddress = (TransferPlatformPersonAddress) o; return Objects.equals(this.city, transferPlatformPersonAddress.city) && Objects.equals(this.country, transferPlatformPersonAddress.country) && Objects.equals(this.postalCode, transferPlatformPersonAddress.postalCode) && Objects.equals(this.region, transferPlatformPersonAddress.region) && Objects.equals(this.street, transferPlatformPersonAddress.street) && Objects.equals(this.street2, transferPlatformPersonAddress.street2); } @Override public int hashCode() { return Objects.hash(city, country, postalCode, region, street, street2); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferPlatformPersonAddress {\n"); sb.append(" city: ").append(toIndentedString(city)).append("\n"); sb.append(" country: ").append(toIndentedString(country)).append("\n"); sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n"); sb.append(" region: ").append(toIndentedString(region)).append("\n"); sb.append(" street: ").append(toIndentedString(street)).append("\n"); sb.append(" street2: ").append(toIndentedString(street2)).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/RuleDetails.java
src/main/java/com/plaid/client/model/RuleDetails.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; /** * Rules are run in numerical order. The first rule with a logic match is triggered. These are the details of that rule. */ @ApiModel(description = "Rules are run in numerical order. The first rule with a logic match is triggered. These are the details of that rule.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class RuleDetails { public static final String SERIALIZED_NAME_INTERNAL_NOTE = "internal_note"; @SerializedName(SERIALIZED_NAME_INTERNAL_NOTE) private String internalNote; public static final String SERIALIZED_NAME_CUSTOM_ACTION_KEY = "custom_action_key"; @SerializedName(SERIALIZED_NAME_CUSTOM_ACTION_KEY) private String customActionKey; public RuleDetails internalNote(String internalNote) { this.internalNote = internalNote; return this; } /** * An optional message attached to the triggered rule, defined within the Dashboard, for your internal use. Useful for debugging, such as “Account appears to be closed.” * @return internalNote **/ @javax.annotation.Nullable @ApiModelProperty(value = "An optional message attached to the triggered rule, defined within the Dashboard, for your internal use. Useful for debugging, such as “Account appears to be closed.”") public String getInternalNote() { return internalNote; } public void setInternalNote(String internalNote) { this.internalNote = internalNote; } public RuleDetails customActionKey(String customActionKey) { this.customActionKey = customActionKey; return this; } /** * A string key, defined within the Dashboard, used to trigger programmatic behavior for a certain result. For instance, you could optionally choose to define a \&quot;3-day-hold\&quot; &#x60;custom_action_key&#x60; for an ACCEPT result. * @return customActionKey **/ @javax.annotation.Nullable @ApiModelProperty(value = "A string key, defined within the Dashboard, used to trigger programmatic behavior for a certain result. For instance, you could optionally choose to define a \"3-day-hold\" `custom_action_key` for an ACCEPT result.") public String getCustomActionKey() { return customActionKey; } public void setCustomActionKey(String customActionKey) { this.customActionKey = customActionKey; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } RuleDetails ruleDetails = (RuleDetails) o; return Objects.equals(this.internalNote, ruleDetails.internalNote) && Objects.equals(this.customActionKey, ruleDetails.customActionKey); } @Override public int hashCode() { return Objects.hash(internalNote, customActionKey); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class RuleDetails {\n"); sb.append(" internalNote: ").append(toIndentedString(internalNote)).append("\n"); sb.append(" customActionKey: ").append(toIndentedString(customActionKey)).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/SignalPrepareResponse.java
src/main/java/com/plaid/client/model/SignalPrepareResponse.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; /** * SignalPrepareResponse defines the response schema for &#x60;/signal/prepare&#x60; */ @ApiModel(description = "SignalPrepareResponse defines the response schema for `/signal/prepare`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SignalPrepareResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public SignalPrepareResponse 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; } SignalPrepareResponse signalPrepareResponse = (SignalPrepareResponse) o; return Objects.equals(this.requestId, signalPrepareResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SignalPrepareResponse {\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/LiabilitiesGetRequestOptions.java
src/main/java/com/plaid/client/model/LiabilitiesGetRequestOptions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * An optional object to filter &#x60;/liabilities/get&#x60; results. If provided, &#x60;options&#x60; cannot be null. */ @ApiModel(description = "An optional object to filter `/liabilities/get` results. If provided, `options` cannot be null.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LiabilitiesGetRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) private List<String> accountIds = null; public LiabilitiesGetRequestOptions accountIds(List<String> accountIds) { this.accountIds = accountIds; return this; } public LiabilitiesGetRequestOptions addAccountIdsItem(String accountIdsItem) { if (this.accountIds == null) { this.accountIds = new ArrayList<>(); } this.accountIds.add(accountIdsItem); return this; } /** * A list of accounts to retrieve for the Item. An error will be returned if a provided &#x60;account_id&#x60; is not associated with the Item * @return accountIds **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of accounts to retrieve for the Item. An error will be returned if a provided `account_id` is not associated with the Item") public List<String> getAccountIds() { return accountIds; } public void setAccountIds(List<String> accountIds) { this.accountIds = accountIds; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LiabilitiesGetRequestOptions liabilitiesGetRequestOptions = (LiabilitiesGetRequestOptions) o; return Objects.equals(this.accountIds, liabilitiesGetRequestOptions.accountIds); } @Override public int hashCode() { return Objects.hash(accountIds); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LiabilitiesGetRequestOptions {\n"); sb.append(" accountIds: ").append(toIndentedString(accountIds)).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/BankTransferCancelResponse.java
src/main/java/com/plaid/client/model/BankTransferCancelResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the response schema for &#x60;/bank_transfer/cancel&#x60; */ @ApiModel(description = "Defines the response schema for `/bank_transfer/cancel`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BankTransferCancelResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public BankTransferCancelResponse 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; } BankTransferCancelResponse bankTransferCancelResponse = (BankTransferCancelResponse) o; return Objects.equals(this.requestId, bankTransferCancelResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BankTransferCancelResponse {\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/SignalScheduleResponse.java
src/main/java/com/plaid/client/model/SignalScheduleResponse.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.SignalScheduleRecommendation; import com.plaid.client.model.SignalWarning; 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; /** * SignalScheduleResponse defines the response schema for &#x60;/signal/schedule&#x60; */ @ApiModel(description = "SignalScheduleResponse defines the response schema for `/signal/schedule`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SignalScheduleResponse { public static final String SERIALIZED_NAME_OPTIMAL_DATE = "optimal_date"; @SerializedName(SERIALIZED_NAME_OPTIMAL_DATE) private LocalDate optimalDate; public static final String SERIALIZED_NAME_RECOMMENDATIONS = "recommendations"; @SerializedName(SERIALIZED_NAME_RECOMMENDATIONS) private List<SignalScheduleRecommendation> recommendations = new ArrayList<>(); public static final String SERIALIZED_NAME_WARNINGS = "warnings"; @SerializedName(SERIALIZED_NAME_WARNINGS) private List<SignalWarning> warnings = new ArrayList<>(); public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public SignalScheduleResponse optimalDate(LocalDate optimalDate) { this.optimalDate = optimalDate; return this; } /** * The recommended optimal date to submit the debit entry, formatted in ISO 8601 \&quot;YYYY-MM-DD\&quot; (e.g., \&quot;2024-03-30\&quot;). The &#x60;optimal_date&#x60; is derived from the date with rank &#x3D; 1 in the following recommendations array. NOTE: The &#x60;default_payment_method&#x60; field specified in the request will affect the recommendation, since we&#39;re accounting for debit settlement time. The debit scheduling evaluation starts from the day the /signal/schedule request is submitted (Day 0) or the next banking day if the submission day is not a banking day, and extends through the following five banking days (Day 1 to Day 5). If no date within this period is considered likely to result in a successful debit attempt, &#x60;null&#x60; will be returned for the &#x60;optimal_date&#x60;. * @return optimalDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The recommended optimal date to submit the debit entry, formatted in ISO 8601 \"YYYY-MM-DD\" (e.g., \"2024-03-30\"). The `optimal_date` is derived from the date with rank = 1 in the following recommendations array. NOTE: The `default_payment_method` field specified in the request will affect the recommendation, since we're accounting for debit settlement time. The debit scheduling evaluation starts from the day the /signal/schedule request is submitted (Day 0) or the next banking day if the submission day is not a banking day, and extends through the following five banking days (Day 1 to Day 5). If no date within this period is considered likely to result in a successful debit attempt, `null` will be returned for the `optimal_date`.") public LocalDate getOptimalDate() { return optimalDate; } public void setOptimalDate(LocalDate optimalDate) { this.optimalDate = optimalDate; } public SignalScheduleResponse recommendations(List<SignalScheduleRecommendation> recommendations) { this.recommendations = recommendations; return this; } public SignalScheduleResponse addRecommendationsItem(SignalScheduleRecommendation recommendationsItem) { this.recommendations.add(recommendationsItem); return this; } /** * This array provides a date-by-date evaluation of debit submission recommendations within the five banking day evaluation period. Each object in the array represents a retry recommendation for a specific date. * @return recommendations **/ @ApiModelProperty(required = true, value = "This array provides a date-by-date evaluation of debit submission recommendations within the five banking day evaluation period. Each object in the array represents a retry recommendation for a specific date.") public List<SignalScheduleRecommendation> getRecommendations() { return recommendations; } public void setRecommendations(List<SignalScheduleRecommendation> recommendations) { this.recommendations = recommendations; } public SignalScheduleResponse warnings(List<SignalWarning> warnings) { this.warnings = warnings; return this; } public SignalScheduleResponse addWarningsItem(SignalWarning warningsItem) { this.warnings.add(warningsItem); return this; } /** * If bank information was not available to be used in the Signal Transaction Scores model, this array contains warnings describing why bank data is missing. If you want to receive an API error instead of scores in the case of missing bank data, file a support ticket or contact your Plaid account manager. * @return warnings **/ @ApiModelProperty(required = true, value = "If bank information was not available to be used in the Signal Transaction Scores model, this array contains warnings describing why bank data is missing. If you want to receive an API error instead of scores in the case of missing bank data, file a support ticket or contact your Plaid account manager.") public List<SignalWarning> getWarnings() { return warnings; } public void setWarnings(List<SignalWarning> warnings) { this.warnings = warnings; } public SignalScheduleResponse 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; } SignalScheduleResponse signalScheduleResponse = (SignalScheduleResponse) o; return Objects.equals(this.optimalDate, signalScheduleResponse.optimalDate) && Objects.equals(this.recommendations, signalScheduleResponse.recommendations) && Objects.equals(this.warnings, signalScheduleResponse.warnings) && Objects.equals(this.requestId, signalScheduleResponse.requestId); } @Override public int hashCode() { return Objects.hash(optimalDate, recommendations, warnings, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SignalScheduleResponse {\n"); sb.append(" optimalDate: ").append(toIndentedString(optimalDate)).append("\n"); sb.append(" recommendations: ").append(toIndentedString(recommendations)).append("\n"); sb.append(" warnings: ").append(toIndentedString(warnings)).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/CashflowReportAccountInsights.java
src/main/java/com/plaid/client/model/CashflowReportAccountInsights.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.CashflowReportHistoricalBalance; import com.plaid.client.model.CashflowReportMonthlySummary; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Insights on the account level. These are only returned for Credit and Depository type accounts. */ @ApiModel(description = "Insights on the account level. These are only returned for Credit and Depository type accounts.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CashflowReportAccountInsights { public static final String SERIALIZED_NAME_HISTORICAL_BALANCES = "historical_balances"; @SerializedName(SERIALIZED_NAME_HISTORICAL_BALANCES) private List<CashflowReportHistoricalBalance> historicalBalances = new ArrayList<>(); public static final String SERIALIZED_NAME_MONTHLY_SUMMARIES = "monthly_summaries"; @SerializedName(SERIALIZED_NAME_MONTHLY_SUMMARIES) private List<CashflowReportMonthlySummary> monthlySummaries = new ArrayList<>(); public CashflowReportAccountInsights historicalBalances(List<CashflowReportHistoricalBalance> historicalBalances) { this.historicalBalances = historicalBalances; return this; } public CashflowReportAccountInsights addHistoricalBalancesItem(CashflowReportHistoricalBalance historicalBalancesItem) { this.historicalBalances.add(historicalBalancesItem); return this; } /** * Calculated data about the historical balances on the account. Available for &#x60;credit&#x60; and &#x60;depository&#x60; type accounts. * @return historicalBalances **/ @ApiModelProperty(required = true, value = "Calculated data about the historical balances on the account. Available for `credit` and `depository` type accounts.") public List<CashflowReportHistoricalBalance> getHistoricalBalances() { return historicalBalances; } public void setHistoricalBalances(List<CashflowReportHistoricalBalance> historicalBalances) { this.historicalBalances = historicalBalances; } public CashflowReportAccountInsights monthlySummaries(List<CashflowReportMonthlySummary> monthlySummaries) { this.monthlySummaries = monthlySummaries; return this; } public CashflowReportAccountInsights addMonthlySummariesItem(CashflowReportMonthlySummary monthlySummariesItem) { this.monthlySummaries.add(monthlySummariesItem); return this; } /** * Monthly summary statistics derived from transaction-level data. * @return monthlySummaries **/ @ApiModelProperty(required = true, value = "Monthly summary statistics derived from transaction-level data.") public List<CashflowReportMonthlySummary> getMonthlySummaries() { return monthlySummaries; } public void setMonthlySummaries(List<CashflowReportMonthlySummary> monthlySummaries) { this.monthlySummaries = monthlySummaries; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CashflowReportAccountInsights cashflowReportAccountInsights = (CashflowReportAccountInsights) o; return Objects.equals(this.historicalBalances, cashflowReportAccountInsights.historicalBalances) && Objects.equals(this.monthlySummaries, cashflowReportAccountInsights.monthlySummaries); } @Override public int hashCode() { return Objects.hash(historicalBalances, monthlySummaries); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CashflowReportAccountInsights {\n"); sb.append(" historicalBalances: ").append(toIndentedString(historicalBalances)).append("\n"); sb.append(" monthlySummaries: ").append(toIndentedString(monthlySummaries)).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