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/CraCheckReportNetworkInsightsGetRequest.java
src/main/java/com/plaid/client/model/CraCheckReportNetworkInsightsGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CraCheckReportNetworkInsightsGetOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * CraCheckReportNetworkInsightsGetRequest defines the request schema for `/cra/check_report/network_insights/get`. */ @ApiModel(description = "CraCheckReportNetworkInsightsGetRequest defines the request schema for `/cra/check_report/network_insights/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCheckReportNetworkInsightsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_OPTIONS = "options"; @SerializedName(SERIALIZED_NAME_OPTIONS) private CraCheckReportNetworkInsightsGetOptions options; public static final String SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN = "third_party_user_token"; @SerializedName(SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN) private String thirdPartyUserToken; public static final String SERIALIZED_NAME_USER_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) private String userToken; public CraCheckReportNetworkInsightsGetRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public CraCheckReportNetworkInsightsGetRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body. * @return secret **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.") public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } public CraCheckReportNetworkInsightsGetRequest userId(String userId) { this.userId = userId; return this; } /** * A unique user identifier, created by `/user/create`. Integrations that began using `/user/create` after December 10, 2025 use this field to identify a user instead of the `user_token`. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis). * @return userId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique user identifier, created by `/user/create`. Integrations that began using `/user/create` after December 10, 2025 use this field to identify a user instead of the `user_token`. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis).") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public CraCheckReportNetworkInsightsGetRequest options(CraCheckReportNetworkInsightsGetOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CraCheckReportNetworkInsightsGetOptions getOptions() { return options; } public void setOptions(CraCheckReportNetworkInsightsGetOptions options) { this.options = options; } public CraCheckReportNetworkInsightsGetRequest thirdPartyUserToken(String thirdPartyUserToken) { this.thirdPartyUserToken = thirdPartyUserToken; return this; } /** * The third-party user token associated with the requested User data. * @return thirdPartyUserToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "The third-party user token associated with the requested User data.") public String getThirdPartyUserToken() { return thirdPartyUserToken; } public void setThirdPartyUserToken(String thirdPartyUserToken) { this.thirdPartyUserToken = thirdPartyUserToken; } public CraCheckReportNetworkInsightsGetRequest userToken(String userToken) { this.userToken = userToken; return this; } /** * The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the `user_token` field. All other customers should use the `user_id` instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis). * @return userToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the `user_token` field. All other customers should use the `user_id` instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis).") public String getUserToken() { return userToken; } public void setUserToken(String userToken) { this.userToken = userToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraCheckReportNetworkInsightsGetRequest craCheckReportNetworkInsightsGetRequest = (CraCheckReportNetworkInsightsGetRequest) o; return Objects.equals(this.clientId, craCheckReportNetworkInsightsGetRequest.clientId) && Objects.equals(this.secret, craCheckReportNetworkInsightsGetRequest.secret) && Objects.equals(this.userId, craCheckReportNetworkInsightsGetRequest.userId) && Objects.equals(this.options, craCheckReportNetworkInsightsGetRequest.options) && Objects.equals(this.thirdPartyUserToken, craCheckReportNetworkInsightsGetRequest.thirdPartyUserToken) && Objects.equals(this.userToken, craCheckReportNetworkInsightsGetRequest.userToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, userId, options, thirdPartyUserToken, userToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportNetworkInsightsGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" options: ").append(toIndentedString(options)).append("\n"); sb.append(" thirdPartyUserToken: ").append(toIndentedString(thirdPartyUserToken)).append("\n"); sb.append(" userToken: ").append(toIndentedString(userToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditAuditCopyTokenUpdateResponse.java
src/main/java/com/plaid/client/model/CreditAuditCopyTokenUpdateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 `/credit/audit_copy_token/update` */ @ApiModel(description = "Defines the response schema for `/credit/audit_copy_token/update`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditAuditCopyTokenUpdateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public static final String SERIALIZED_NAME_UPDATED = "updated"; @SerializedName(SERIALIZED_NAME_UPDATED) private Boolean updated; public CreditAuditCopyTokenUpdateResponse 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 CreditAuditCopyTokenUpdateResponse updated(Boolean updated) { this.updated = updated; return this; } /** * `true` if the Audit Copy Token was successfully updated. * @return updated **/ @ApiModelProperty(required = true, value = "`true` if the Audit Copy Token was successfully updated.") public Boolean getUpdated() { return updated; } public void setUpdated(Boolean updated) { this.updated = updated; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditAuditCopyTokenUpdateResponse creditAuditCopyTokenUpdateResponse = (CreditAuditCopyTokenUpdateResponse) o; return Objects.equals(this.requestId, creditAuditCopyTokenUpdateResponse.requestId) && Objects.equals(this.updated, creditAuditCopyTokenUpdateResponse.updated); } @Override public int hashCode() { return Objects.hash(requestId, updated); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditAuditCopyTokenUpdateResponse {\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append(" updated: ").append(toIndentedString(updated)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorApexProcessorTokenCreateRequest.java
src/main/java/com/plaid/client/model/ProcessorApexProcessorTokenCreateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * ProcessorApexProcessorTokenCreateRequest defines the request schema for `/processor/apex/processor_token/create` */ @ApiModel(description = "ProcessorApexProcessorTokenCreateRequest defines the request schema for `/processor/apex/processor_token/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorApexProcessorTokenCreateRequest { 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; public ProcessorApexProcessorTokenCreateRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public ProcessorApexProcessorTokenCreateRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body. * @return secret **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.") public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } public ProcessorApexProcessorTokenCreateRequest 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 ProcessorApexProcessorTokenCreateRequest accountId(String accountId) { this.accountId = accountId; return this; } /** * The `account_id` value obtained from the `onSuccess` callback in Link * @return accountId **/ @ApiModelProperty(required = true, value = "The `account_id` value obtained from the `onSuccess` callback in Link") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProcessorApexProcessorTokenCreateRequest processorApexProcessorTokenCreateRequest = (ProcessorApexProcessorTokenCreateRequest) o; return Objects.equals(this.clientId, processorApexProcessorTokenCreateRequest.clientId) && Objects.equals(this.secret, processorApexProcessorTokenCreateRequest.secret) && Objects.equals(this.accessToken, processorApexProcessorTokenCreateRequest.accessToken) && Objects.equals(this.accountId, processorApexProcessorTokenCreateRequest.accountId); } @Override public int hashCode() { return Objects.hash(clientId, secret, accessToken, accountId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorApexProcessorTokenCreateRequest {\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("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/FDXParty.java
src/main/java/com/plaid/client/model/FDXParty.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.FDXPartyRegistry; import com.plaid.client.model.FDXPartyType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.net.URI; /** * FDX Participant - an entity or person that is a part of a FDX API transaction */ @ApiModel(description = "FDX Participant - an entity or person that is a part of a FDX API transaction") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class FDXParty { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private FDXPartyType type; public static final String SERIALIZED_NAME_HOME_URI = "homeUri"; @SerializedName(SERIALIZED_NAME_HOME_URI) private URI homeUri; public static final String SERIALIZED_NAME_LOGO_URI = "logoUri"; @SerializedName(SERIALIZED_NAME_LOGO_URI) private URI logoUri; public static final String SERIALIZED_NAME_REGISTRY = "registry"; @SerializedName(SERIALIZED_NAME_REGISTRY) private FDXPartyRegistry registry; public static final String SERIALIZED_NAME_REGISTERED_ENTITY_NAME = "registeredEntityName"; @SerializedName(SERIALIZED_NAME_REGISTERED_ENTITY_NAME) private String registeredEntityName; public static final String SERIALIZED_NAME_REGISTERED_ENTITY_ID = "registeredEntityId"; @SerializedName(SERIALIZED_NAME_REGISTERED_ENTITY_ID) private String registeredEntityId; public FDXParty name(String name) { this.name = name; return this; } /** * Human recognizable common name * @return name **/ @ApiModelProperty(required = true, value = "Human recognizable common name") public String getName() { return name; } public void setName(String name) { this.name = name; } public FDXParty type(FDXPartyType type) { this.type = type; return this; } /** * Get type * @return type **/ @ApiModelProperty(required = true, value = "") public FDXPartyType getType() { return type; } public void setType(FDXPartyType type) { this.type = type; } public FDXParty homeUri(URI homeUri) { this.homeUri = homeUri; return this; } /** * URI for party, where an end user could learn more about the company or application involved in the data sharing chain * @return homeUri **/ @javax.annotation.Nullable @ApiModelProperty(value = "URI for party, where an end user could learn more about the company or application involved in the data sharing chain") public URI getHomeUri() { return homeUri; } public void setHomeUri(URI homeUri) { this.homeUri = homeUri; } public FDXParty logoUri(URI logoUri) { this.logoUri = logoUri; return this; } /** * URI for a logo asset to be displayed to the end user * @return logoUri **/ @javax.annotation.Nullable @ApiModelProperty(value = "URI for a logo asset to be displayed to the end user") public URI getLogoUri() { return logoUri; } public void setLogoUri(URI logoUri) { this.logoUri = logoUri; } public FDXParty registry(FDXPartyRegistry registry) { this.registry = registry; return this; } /** * Get registry * @return registry **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public FDXPartyRegistry getRegistry() { return registry; } public void setRegistry(FDXPartyRegistry registry) { this.registry = registry; } public FDXParty registeredEntityName(String registeredEntityName) { this.registeredEntityName = registeredEntityName; return this; } /** * Registered name of party * @return registeredEntityName **/ @javax.annotation.Nullable @ApiModelProperty(value = "Registered name of party") public String getRegisteredEntityName() { return registeredEntityName; } public void setRegisteredEntityName(String registeredEntityName) { this.registeredEntityName = registeredEntityName; } public FDXParty registeredEntityId(String registeredEntityId) { this.registeredEntityId = registeredEntityId; return this; } /** * Registered id of party * @return registeredEntityId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Registered id of party") public String getRegisteredEntityId() { return registeredEntityId; } public void setRegisteredEntityId(String registeredEntityId) { this.registeredEntityId = registeredEntityId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } FDXParty fdXParty = (FDXParty) o; return Objects.equals(this.name, fdXParty.name) && Objects.equals(this.type, fdXParty.type) && Objects.equals(this.homeUri, fdXParty.homeUri) && Objects.equals(this.logoUri, fdXParty.logoUri) && Objects.equals(this.registry, fdXParty.registry) && Objects.equals(this.registeredEntityName, fdXParty.registeredEntityName) && Objects.equals(this.registeredEntityId, fdXParty.registeredEntityId); } @Override public int hashCode() { return Objects.hash(name, type, homeUri, logoUri, registry, registeredEntityName, registeredEntityId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class FDXParty {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" homeUri: ").append(toIndentedString(homeUri)).append("\n"); sb.append(" logoUri: ").append(toIndentedString(logoUri)).append("\n"); sb.append(" registry: ").append(toIndentedString(registry)).append("\n"); sb.append(" registeredEntityName: ").append(toIndentedString(registeredEntityName)).append("\n"); sb.append(" registeredEntityId: ").append(toIndentedString(registeredEntityId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetReportTransaction.java
src/main/java/com/plaid/client/model/AssetReportTransaction.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.AssetReportTransactionType; import com.plaid.client.model.CreditCategory; import com.plaid.client.model.Location; import com.plaid.client.model.PaymentMeta; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; import java.util.ArrayList; import java.util.List; /** * A transaction on the asset report */ @ApiModel(description = "A transaction on the asset report") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AssetReportTransaction { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; 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 static final String SERIALIZED_NAME_ORIGINAL_DESCRIPTION = "original_description"; @SerializedName(SERIALIZED_NAME_ORIGINAL_DESCRIPTION) private String originalDescription; public static final String SERIALIZED_NAME_CATEGORY = "category"; @SerializedName(SERIALIZED_NAME_CATEGORY) private List<String> category = null; public static final String SERIALIZED_NAME_CATEGORY_ID = "category_id"; @SerializedName(SERIALIZED_NAME_CATEGORY_ID) private String categoryId; public static final String SERIALIZED_NAME_CREDIT_CATEGORY = "credit_category"; @SerializedName(SERIALIZED_NAME_CREDIT_CATEGORY) private CreditCategory creditCategory; public static final String SERIALIZED_NAME_CHECK_NUMBER = "check_number"; @SerializedName(SERIALIZED_NAME_CHECK_NUMBER) private String checkNumber; public static final String SERIALIZED_NAME_DATE = "date"; @SerializedName(SERIALIZED_NAME_DATE) private LocalDate date; public static final String SERIALIZED_NAME_DATE_TRANSACTED = "date_transacted"; @SerializedName(SERIALIZED_NAME_DATE_TRANSACTED) private String dateTransacted; public static final String SERIALIZED_NAME_LOCATION = "location"; @SerializedName(SERIALIZED_NAME_LOCATION) private Location location; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_MERCHANT_NAME = "merchant_name"; @SerializedName(SERIALIZED_NAME_MERCHANT_NAME) private String merchantName; public static final String SERIALIZED_NAME_PAYMENT_META = "payment_meta"; @SerializedName(SERIALIZED_NAME_PAYMENT_META) private PaymentMeta paymentMeta; public static final String SERIALIZED_NAME_PENDING = "pending"; @SerializedName(SERIALIZED_NAME_PENDING) private Boolean pending; public static final String SERIALIZED_NAME_PENDING_TRANSACTION_ID = "pending_transaction_id"; @SerializedName(SERIALIZED_NAME_PENDING_TRANSACTION_ID) private String pendingTransactionId; public static final String SERIALIZED_NAME_ACCOUNT_OWNER = "account_owner"; @SerializedName(SERIALIZED_NAME_ACCOUNT_OWNER) private String accountOwner; public static final String SERIALIZED_NAME_TRANSACTION_ID = "transaction_id"; @SerializedName(SERIALIZED_NAME_TRANSACTION_ID) private String transactionId; public static final String SERIALIZED_NAME_TRANSACTION_TYPE = "transaction_type"; @SerializedName(SERIALIZED_NAME_TRANSACTION_TYPE) private AssetReportTransactionType transactionType; public static final String SERIALIZED_NAME_INCOME_SOURCE_ID = "income_source_id"; @SerializedName(SERIALIZED_NAME_INCOME_SOURCE_ID) private String incomeSourceId; public AssetReportTransaction accountId(String accountId) { this.accountId = accountId; return this; } /** * The ID of the account in which this transaction occurred. * @return accountId **/ @ApiModelProperty(required = true, value = "The ID of the account in which this transaction occurred.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public AssetReportTransaction amount(Double amount) { this.amount = amount; return this; } /** * The settled value of the transaction, denominated in the transaction&#39;s currency, as stated in &#x60;iso_currency_code&#x60; or &#x60;unofficial_currency_code&#x60;. Positive values when money moves out of the account; negative values when money moves in. For example, debit card purchases are positive; credit card payments, direct deposits, and refunds are negative. * @return amount **/ @ApiModelProperty(required = true, value = "The settled value of the transaction, denominated in the transaction's currency, as stated in `iso_currency_code` or `unofficial_currency_code`. Positive values when money moves out of the account; negative values when money moves in. For example, debit card purchases are positive; credit card payments, direct deposits, and refunds are negative.") public Double getAmount() { return amount; } public void setAmount(Double amount) { this.amount = amount; } public AssetReportTransaction isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO-4217 currency code of the transaction. Always &#x60;null&#x60; if &#x60;unofficial_currency_code&#x60; is non-null. * @return isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ISO-4217 currency code of the transaction. Always `null` if `unofficial_currency_code` is non-null.") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public AssetReportTransaction unofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; return this; } /** * The unofficial currency code associated with the transaction. Always &#x60;null&#x60; if &#x60;iso_currency_code&#x60; is non-&#x60;null&#x60;. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported &#x60;unofficial_currency_code&#x60;s. * @return unofficialCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The unofficial currency code associated with the transaction. Always `null` if `iso_currency_code` is non-`null`. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported `unofficial_currency_code`s.") public String getUnofficialCurrencyCode() { return unofficialCurrencyCode; } public void setUnofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; } public AssetReportTransaction originalDescription(String originalDescription) { this.originalDescription = originalDescription; return this; } /** * The string returned by the financial institution to describe the transaction. * @return originalDescription **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The string returned by the financial institution to describe the transaction.") public String getOriginalDescription() { return originalDescription; } public void setOriginalDescription(String originalDescription) { this.originalDescription = originalDescription; } public AssetReportTransaction category(List<String> category) { this.category = category; return this; } public AssetReportTransaction addCategoryItem(String categoryItem) { if (this.category == null) { this.category = new ArrayList<>(); } this.category.add(categoryItem); return this; } /** * A hierarchical array of the categories to which this transaction belongs. For a full list of categories, see [&#x60;/categories/get&#x60;](https://plaid.com/docs/api/products/transactions/#categoriesget). This field will only appear in an Asset Report with Insights. * @return category **/ @javax.annotation.Nullable @ApiModelProperty(value = "A hierarchical array of the categories to which this transaction belongs. For a full list of categories, see [`/categories/get`](https://plaid.com/docs/api/products/transactions/#categoriesget). This field will only appear in an Asset Report with Insights.") public List<String> getCategory() { return category; } public void setCategory(List<String> category) { this.category = category; } public AssetReportTransaction categoryId(String categoryId) { this.categoryId = categoryId; return this; } /** * The ID of the category to which this transaction belongs. For a full list of categories, see [&#x60;/categories/get&#x60;](https://plaid.com/docs/api/products/transactions/#categoriesget). This field will only appear in an Asset Report with Insights. * @return categoryId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ID of the category to which this transaction belongs. For a full list of categories, see [`/categories/get`](https://plaid.com/docs/api/products/transactions/#categoriesget). This field will only appear in an Asset Report with Insights.") public String getCategoryId() { return categoryId; } public void setCategoryId(String categoryId) { this.categoryId = categoryId; } public AssetReportTransaction creditCategory(CreditCategory creditCategory) { this.creditCategory = creditCategory; return this; } /** * Get creditCategory * @return creditCategory **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CreditCategory getCreditCategory() { return creditCategory; } public void setCreditCategory(CreditCategory creditCategory) { this.creditCategory = creditCategory; } public AssetReportTransaction checkNumber(String checkNumber) { this.checkNumber = checkNumber; return this; } /** * The check number of the transaction. This field is only populated for check transactions. * @return checkNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "The check number of the transaction. This field is only populated for check transactions.") public String getCheckNumber() { return checkNumber; } public void setCheckNumber(String checkNumber) { this.checkNumber = checkNumber; } public AssetReportTransaction date(LocalDate date) { this.date = date; return this; } /** * For pending transactions, the date that the transaction occurred; for posted transactions, the date that the transaction posted. Both dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format ( &#x60;YYYY-MM-DD&#x60; ). * @return date **/ @ApiModelProperty(required = true, value = "For pending transactions, the date that the transaction occurred; for posted transactions, the date that the transaction posted. Both dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format ( `YYYY-MM-DD` ).") public LocalDate getDate() { return date; } public void setDate(LocalDate date) { this.date = date; } public AssetReportTransaction dateTransacted(String dateTransacted) { this.dateTransacted = dateTransacted; return this; } /** * The date on which the transaction took place, in IS0 8601 format. * @return dateTransacted **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date on which the transaction took place, in IS0 8601 format.") public String getDateTransacted() { return dateTransacted; } public void setDateTransacted(String dateTransacted) { this.dateTransacted = dateTransacted; } public AssetReportTransaction location(Location location) { this.location = location; return this; } /** * Get location * @return location **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public Location getLocation() { return location; } public void setLocation(Location location) { this.location = location; } public AssetReportTransaction name(String name) { this.name = name; return this; } /** * The merchant name or transaction description. This is a legacy field that is no longer maintained. For merchant name, use the &#x60;merchant_name&#x60; field. For description, use the &#x60;original_description&#x60; field. This field will only appear in an Asset Report with Insights. * @return name **/ @javax.annotation.Nullable @ApiModelProperty(value = "The merchant name or transaction description. This is a legacy field that is no longer maintained. For merchant name, use the `merchant_name` field. For description, use the `original_description` field. This field will only appear in an Asset Report with Insights.") public String getName() { return name; } public void setName(String name) { this.name = name; } public AssetReportTransaction merchantName(String merchantName) { this.merchantName = merchantName; return this; } /** * The merchant name, as enriched by Plaid. This is typically a more human-readable version of the merchant counterparty in the transaction. For some bank transactions (such as checks or account transfers) where there is no meaningful merchant name, this value will be &#x60;null&#x60;. * @return merchantName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The merchant name, as enriched by Plaid. This is typically a more human-readable version of the merchant counterparty in the transaction. For some bank transactions (such as checks or account transfers) where there is no meaningful merchant name, this value will be `null`.") public String getMerchantName() { return merchantName; } public void setMerchantName(String merchantName) { this.merchantName = merchantName; } public AssetReportTransaction paymentMeta(PaymentMeta paymentMeta) { this.paymentMeta = paymentMeta; return this; } /** * Get paymentMeta * @return paymentMeta **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaymentMeta getPaymentMeta() { return paymentMeta; } public void setPaymentMeta(PaymentMeta paymentMeta) { this.paymentMeta = paymentMeta; } public AssetReportTransaction pending(Boolean pending) { this.pending = pending; return this; } /** * When &#x60;true&#x60;, identifies the transaction as pending or unsettled. Pending transaction details (name, type, amount, category ID) may change before they are settled. * @return pending **/ @ApiModelProperty(required = true, value = "When `true`, identifies the transaction as pending or unsettled. Pending transaction details (name, type, amount, category ID) may change before they are settled.") public Boolean getPending() { return pending; } public void setPending(Boolean pending) { this.pending = pending; } public AssetReportTransaction pendingTransactionId(String pendingTransactionId) { this.pendingTransactionId = pendingTransactionId; return this; } /** * The ID of a posted transaction&#39;s associated pending transaction, where applicable. * @return pendingTransactionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ID of a posted transaction's associated pending transaction, where applicable.") public String getPendingTransactionId() { return pendingTransactionId; } public void setPendingTransactionId(String pendingTransactionId) { this.pendingTransactionId = pendingTransactionId; } public AssetReportTransaction accountOwner(String accountOwner) { this.accountOwner = accountOwner; return this; } /** * The name of the account owner. This field is not typically populated and only relevant when dealing with sub-accounts. * @return accountOwner **/ @javax.annotation.Nullable @ApiModelProperty(value = "The name of the account owner. This field is not typically populated and only relevant when dealing with sub-accounts.") public String getAccountOwner() { return accountOwner; } public void setAccountOwner(String accountOwner) { this.accountOwner = accountOwner; } public AssetReportTransaction transactionId(String transactionId) { this.transactionId = transactionId; return this; } /** * The unique ID of the transaction. Like all Plaid identifiers, the &#x60;transaction_id&#x60; is case sensitive. * @return transactionId **/ @ApiModelProperty(required = true, value = "The unique ID of the transaction. Like all Plaid identifiers, the `transaction_id` is case sensitive.") public String getTransactionId() { return transactionId; } public void setTransactionId(String transactionId) { this.transactionId = transactionId; } public AssetReportTransaction transactionType(AssetReportTransactionType transactionType) { this.transactionType = transactionType; return this; } /** * Get transactionType * @return transactionType **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AssetReportTransactionType getTransactionType() { return transactionType; } public void setTransactionType(AssetReportTransactionType transactionType) { this.transactionType = transactionType; } public AssetReportTransaction incomeSourceId(String incomeSourceId) { this.incomeSourceId = incomeSourceId; return this; } /** * A unique identifier for an income source. * @return incomeSourceId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique identifier for an income source.") public String getIncomeSourceId() { return incomeSourceId; } public void setIncomeSourceId(String incomeSourceId) { this.incomeSourceId = incomeSourceId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AssetReportTransaction assetReportTransaction = (AssetReportTransaction) o; return Objects.equals(this.accountId, assetReportTransaction.accountId) && Objects.equals(this.amount, assetReportTransaction.amount) && Objects.equals(this.isoCurrencyCode, assetReportTransaction.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, assetReportTransaction.unofficialCurrencyCode) && Objects.equals(this.originalDescription, assetReportTransaction.originalDescription) && Objects.equals(this.category, assetReportTransaction.category) && Objects.equals(this.categoryId, assetReportTransaction.categoryId) && Objects.equals(this.creditCategory, assetReportTransaction.creditCategory) && Objects.equals(this.checkNumber, assetReportTransaction.checkNumber) && Objects.equals(this.date, assetReportTransaction.date) && Objects.equals(this.dateTransacted, assetReportTransaction.dateTransacted) && Objects.equals(this.location, assetReportTransaction.location) && Objects.equals(this.name, assetReportTransaction.name) && Objects.equals(this.merchantName, assetReportTransaction.merchantName) && Objects.equals(this.paymentMeta, assetReportTransaction.paymentMeta) && Objects.equals(this.pending, assetReportTransaction.pending) && Objects.equals(this.pendingTransactionId, assetReportTransaction.pendingTransactionId) && Objects.equals(this.accountOwner, assetReportTransaction.accountOwner) && Objects.equals(this.transactionId, assetReportTransaction.transactionId) && Objects.equals(this.transactionType, assetReportTransaction.transactionType) && Objects.equals(this.incomeSourceId, assetReportTransaction.incomeSourceId); } @Override public int hashCode() { return Objects.hash(accountId, amount, isoCurrencyCode, unofficialCurrencyCode, originalDescription, category, categoryId, creditCategory, checkNumber, date, dateTransacted, location, name, merchantName, paymentMeta, pending, pendingTransactionId, accountOwner, transactionId, transactionType, incomeSourceId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetReportTransaction {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\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(" originalDescription: ").append(toIndentedString(originalDescription)).append("\n"); sb.append(" category: ").append(toIndentedString(category)).append("\n"); sb.append(" categoryId: ").append(toIndentedString(categoryId)).append("\n"); sb.append(" creditCategory: ").append(toIndentedString(creditCategory)).append("\n"); sb.append(" checkNumber: ").append(toIndentedString(checkNumber)).append("\n"); sb.append(" date: ").append(toIndentedString(date)).append("\n"); sb.append(" dateTransacted: ").append(toIndentedString(dateTransacted)).append("\n"); sb.append(" location: ").append(toIndentedString(location)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" merchantName: ").append(toIndentedString(merchantName)).append("\n"); sb.append(" paymentMeta: ").append(toIndentedString(paymentMeta)).append("\n"); sb.append(" pending: ").append(toIndentedString(pending)).append("\n"); sb.append(" pendingTransactionId: ").append(toIndentedString(pendingTransactionId)).append("\n"); sb.append(" accountOwner: ").append(toIndentedString(accountOwner)).append("\n"); sb.append(" transactionId: ").append(toIndentedString(transactionId)).append("\n"); sb.append(" transactionType: ").append(toIndentedString(transactionType)).append("\n"); sb.append(" incomeSourceId: ").append(toIndentedString(incomeSourceId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProtectReport.java
src/main/java/com/plaid/client/model/ProtectReport.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.ProtectBankAccount; import com.plaid.client.model.ProtectIncidentEventResponse; import com.plaid.client.model.ProtectReportConfidence; import com.plaid.client.model.ProtectReportSource; import com.plaid.client.model.ProtectReportType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * A Protect report associated with a user. Contains details about documented incidents, which may include fraud, investigation outcomes, or other risk events. */ @ApiModel(description = "A Protect report associated with a user. Contains details about documented incidents, which may include fraud, investigation outcomes, or other risk events.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProtectReport { public static final String SERIALIZED_NAME_REPORT_ID = "report_id"; @SerializedName(SERIALIZED_NAME_REPORT_ID) private String reportId; public static final String SERIALIZED_NAME_INCIDENT_EVENT = "incident_event"; @SerializedName(SERIALIZED_NAME_INCIDENT_EVENT) private ProtectIncidentEventResponse incidentEvent; public static final String SERIALIZED_NAME_REPORT_CONFIDENCE = "report_confidence"; @SerializedName(SERIALIZED_NAME_REPORT_CONFIDENCE) private ProtectReportConfidence reportConfidence; public static final String SERIALIZED_NAME_REPORT_TYPE = "report_type"; @SerializedName(SERIALIZED_NAME_REPORT_TYPE) private ProtectReportType reportType; public static final String SERIALIZED_NAME_REPORT_SOURCE = "report_source"; @SerializedName(SERIALIZED_NAME_REPORT_SOURCE) private ProtectReportSource reportSource; public static final String SERIALIZED_NAME_BANK_ACCOUNT = "bank_account"; @SerializedName(SERIALIZED_NAME_BANK_ACCOUNT) private ProtectBankAccount bankAccount; public static final String SERIALIZED_NAME_ACH_RETURN_CODE = "ach_return_code"; @SerializedName(SERIALIZED_NAME_ACH_RETURN_CODE) private String achReturnCode; public static final String SERIALIZED_NAME_NOTES = "notes"; @SerializedName(SERIALIZED_NAME_NOTES) private String notes; public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) private OffsetDateTime createdAt; public ProtectReport reportId(String reportId) { this.reportId = reportId; return this; } /** * A unique identifier representing the submitted report. * @return reportId **/ @ApiModelProperty(required = true, value = "A unique identifier representing the submitted report.") public String getReportId() { return reportId; } public void setReportId(String reportId) { this.reportId = reportId; } public ProtectReport incidentEvent(ProtectIncidentEventResponse incidentEvent) { this.incidentEvent = incidentEvent; return this; } /** * Get incidentEvent * @return incidentEvent **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public ProtectIncidentEventResponse getIncidentEvent() { return incidentEvent; } public void setIncidentEvent(ProtectIncidentEventResponse incidentEvent) { this.incidentEvent = incidentEvent; } public ProtectReport reportConfidence(ProtectReportConfidence reportConfidence) { this.reportConfidence = reportConfidence; return this; } /** * Get reportConfidence * @return reportConfidence **/ @ApiModelProperty(required = true, value = "") public ProtectReportConfidence getReportConfidence() { return reportConfidence; } public void setReportConfidence(ProtectReportConfidence reportConfidence) { this.reportConfidence = reportConfidence; } public ProtectReport reportType(ProtectReportType reportType) { this.reportType = reportType; return this; } /** * Get reportType * @return reportType **/ @ApiModelProperty(required = true, value = "") public ProtectReportType getReportType() { return reportType; } public void setReportType(ProtectReportType reportType) { this.reportType = reportType; } public ProtectReport reportSource(ProtectReportSource reportSource) { this.reportSource = reportSource; return this; } /** * Get reportSource * @return reportSource **/ @ApiModelProperty(required = true, value = "") public ProtectReportSource getReportSource() { return reportSource; } public void setReportSource(ProtectReportSource reportSource) { this.reportSource = reportSource; } public ProtectReport bankAccount(ProtectBankAccount bankAccount) { this.bankAccount = bankAccount; return this; } /** * Get bankAccount * @return bankAccount **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public ProtectBankAccount getBankAccount() { return bankAccount; } public void setBankAccount(ProtectBankAccount bankAccount) { this.bankAccount = bankAccount; } public ProtectReport achReturnCode(String achReturnCode) { this.achReturnCode = achReturnCode; return this; } /** * ACH return code if the report type is &#x60;ACH_RETURN&#x60; (e.g. &#x60;R01&#x60;). * @return achReturnCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "ACH return code if the report type is `ACH_RETURN` (e.g. `R01`).") public String getAchReturnCode() { return achReturnCode; } public void setAchReturnCode(String achReturnCode) { this.achReturnCode = achReturnCode; } public ProtectReport notes(String notes) { this.notes = notes; return this; } /** * Additional context or details about the report. * @return notes **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Additional context or details about the report.") public String getNotes() { return notes; } public void setNotes(String notes) { this.notes = notes; } public ProtectReport createdAt(OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** * The timestamp when the report was created, in ISO 8601 format (e.g., &#39;2020-07-24T03:26:02Z&#39;). * @return createdAt **/ @ApiModelProperty(required = true, value = "The timestamp when the report was created, in ISO 8601 format (e.g., '2020-07-24T03:26:02Z').") public OffsetDateTime getCreatedAt() { return createdAt; } public void setCreatedAt(OffsetDateTime createdAt) { this.createdAt = createdAt; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProtectReport protectReport = (ProtectReport) o; return Objects.equals(this.reportId, protectReport.reportId) && Objects.equals(this.incidentEvent, protectReport.incidentEvent) && Objects.equals(this.reportConfidence, protectReport.reportConfidence) && Objects.equals(this.reportType, protectReport.reportType) && Objects.equals(this.reportSource, protectReport.reportSource) && Objects.equals(this.bankAccount, protectReport.bankAccount) && Objects.equals(this.achReturnCode, protectReport.achReturnCode) && Objects.equals(this.notes, protectReport.notes) && Objects.equals(this.createdAt, protectReport.createdAt); } @Override public int hashCode() { return Objects.hash(reportId, incidentEvent, reportConfidence, reportType, reportSource, bankAccount, achReturnCode, notes, createdAt); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProtectReport {\n"); sb.append(" reportId: ").append(toIndentedString(reportId)).append("\n"); sb.append(" incidentEvent: ").append(toIndentedString(incidentEvent)).append("\n"); sb.append(" reportConfidence: ").append(toIndentedString(reportConfidence)).append("\n"); sb.append(" reportType: ").append(toIndentedString(reportType)).append("\n"); sb.append(" reportSource: ").append(toIndentedString(reportSource)).append("\n"); sb.append(" bankAccount: ").append(toIndentedString(bankAccount)).append("\n"); sb.append(" achReturnCode: ").append(toIndentedString(achReturnCode)).append("\n"); sb.append(" notes: ").append(toIndentedString(notes)).append("\n"); sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProtectUserEventWebhook.java
src/main/java/com/plaid/client/model/ProtectUserEventWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * Fired when there has been a new user event. The webhook payload contains limited information about the event. For full event details, call [&#x60;/protect/event/get&#x60;](https://plaid.com/docs/api/products/protect/#protecteventget). */ @ApiModel(description = "Fired when there has been a new user event. The webhook payload contains limited information about the event. For full event details, call [`/protect/event/get`](https://plaid.com/docs/api/products/protect/#protecteventget).") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProtectUserEventWebhook { 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_EVENT_ID = "event_id"; @SerializedName(SERIALIZED_NAME_EVENT_ID) private String eventId; public static final String SERIALIZED_NAME_EVENT_TYPE = "event_type"; @SerializedName(SERIALIZED_NAME_EVENT_TYPE) private String eventType; public static final String SERIALIZED_NAME_TIMESTAMP = "timestamp"; @SerializedName(SERIALIZED_NAME_TIMESTAMP) private OffsetDateTime timestamp; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public ProtectUserEventWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;\&quot;PROTECT\&quot;&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`\"PROTECT\"`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public ProtectUserEventWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;PROTECT_USER_EVENT&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`PROTECT_USER_EVENT`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public ProtectUserEventWebhook eventId(String eventId) { this.eventId = eventId; return this; } /** * The event ID of the user event that occurred. * @return eventId **/ @ApiModelProperty(required = true, value = "The event ID of the user event that occurred.") public String getEventId() { return eventId; } public void setEventId(String eventId) { this.eventId = eventId; } public ProtectUserEventWebhook eventType(String eventType) { this.eventType = eventType; return this; } /** * The type of user event that occurred. * @return eventType **/ @ApiModelProperty(required = true, value = "The type of user event that occurred.") public String getEventType() { return eventType; } public void setEventType(String eventType) { this.eventType = eventType; } public ProtectUserEventWebhook timestamp(OffsetDateTime timestamp) { this.timestamp = timestamp; return this; } /** * The timestamp of the event, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format, e.g. &#x60;\&quot;2017-09-14T14:42:19.350Z\&quot;&#x60; * @return timestamp **/ @ApiModelProperty(required = true, value = "The timestamp of the event, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format, e.g. `\"2017-09-14T14:42:19.350Z\"`") public OffsetDateTime getTimestamp() { return timestamp; } public void setTimestamp(OffsetDateTime timestamp) { this.timestamp = timestamp; } public ProtectUserEventWebhook userId(String userId) { this.userId = userId; return this; } /** * The Plaid User ID. * @return userId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The Plaid User ID.") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProtectUserEventWebhook protectUserEventWebhook = (ProtectUserEventWebhook) o; return Objects.equals(this.webhookType, protectUserEventWebhook.webhookType) && Objects.equals(this.webhookCode, protectUserEventWebhook.webhookCode) && Objects.equals(this.eventId, protectUserEventWebhook.eventId) && Objects.equals(this.eventType, protectUserEventWebhook.eventType) && Objects.equals(this.timestamp, protectUserEventWebhook.timestamp) && Objects.equals(this.userId, protectUserEventWebhook.userId); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, eventId, eventType, timestamp, userId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProtectUserEventWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" eventId: ").append(toIndentedString(eventId)).append("\n"); sb.append(" eventType: ").append(toIndentedString(eventType)).append("\n"); sb.append(" timestamp: ").append(toIndentedString(timestamp)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IdentityVerificationStatusUpdatedWebhook.java
src/main/java/com/plaid/client/model/IdentityVerificationStatusUpdatedWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Fired when the status of an identity verification has been updated, which can be triggered via the dashboard or the API. */ @ApiModel(description = "Fired when the status of an identity verification has been updated, which can be triggered via the dashboard or the API.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityVerificationStatusUpdatedWebhook { 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_IDENTITY_VERIFICATION_ID = "identity_verification_id"; @SerializedName(SERIALIZED_NAME_IDENTITY_VERIFICATION_ID) private String identityVerificationId; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public IdentityVerificationStatusUpdatedWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;IDENTITY_VERIFICATION&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`IDENTITY_VERIFICATION`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public IdentityVerificationStatusUpdatedWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;STATUS_UPDATED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`STATUS_UPDATED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public IdentityVerificationStatusUpdatedWebhook identityVerificationId(String identityVerificationId) { this.identityVerificationId = identityVerificationId; return this; } /** * The ID of the associated Identity Verification attempt. * @return identityVerificationId **/ @ApiModelProperty(required = true, value = "The ID of the associated Identity Verification attempt.") public String getIdentityVerificationId() { return identityVerificationId; } public void setIdentityVerificationId(String identityVerificationId) { this.identityVerificationId = identityVerificationId; } public IdentityVerificationStatusUpdatedWebhook 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; } IdentityVerificationStatusUpdatedWebhook identityVerificationStatusUpdatedWebhook = (IdentityVerificationStatusUpdatedWebhook) o; return Objects.equals(this.webhookType, identityVerificationStatusUpdatedWebhook.webhookType) && Objects.equals(this.webhookCode, identityVerificationStatusUpdatedWebhook.webhookCode) && Objects.equals(this.identityVerificationId, identityVerificationStatusUpdatedWebhook.identityVerificationId) && Objects.equals(this.environment, identityVerificationStatusUpdatedWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, identityVerificationId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityVerificationStatusUpdatedWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" identityVerificationId: ").append(toIndentedString(identityVerificationId)).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/CraCheckReportCashflowInsightsGetResponse.java
src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CraCashflowInsightsReport; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * CraCheckReportCashflowInsightsGetResponse defines the response schema for &#x60;/cra/check_report/cashflow_insights/get&#x60;. */ @ApiModel(description = "CraCheckReportCashflowInsightsGetResponse defines the response schema for `/cra/check_report/cashflow_insights/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCheckReportCashflowInsightsGetResponse { public static final String SERIALIZED_NAME_REPORT = "report"; @SerializedName(SERIALIZED_NAME_REPORT) private CraCashflowInsightsReport 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 CraCheckReportCashflowInsightsGetResponse report(CraCashflowInsightsReport report) { this.report = report; return this; } /** * Get report * @return report **/ @ApiModelProperty(required = true, value = "") public CraCashflowInsightsReport getReport() { return report; } public void setReport(CraCashflowInsightsReport report) { this.report = report; } public CraCheckReportCashflowInsightsGetResponse 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 CraCheckReportCashflowInsightsGetResponse warnings(List<CheckReportWarning> warnings) { this.warnings = warnings; return this; } public CraCheckReportCashflowInsightsGetResponse addWarningsItem(CheckReportWarning warningsItem) { if (this.warnings == null) { this.warnings = new ArrayList<>(); } this.warnings.add(warningsItem); return this; } /** * If the Cashflow 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 Cashflow 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; } CraCheckReportCashflowInsightsGetResponse craCheckReportCashflowInsightsGetResponse = (CraCheckReportCashflowInsightsGetResponse) o; return Objects.equals(this.report, craCheckReportCashflowInsightsGetResponse.report) && Objects.equals(this.requestId, craCheckReportCashflowInsightsGetResponse.requestId) && Objects.equals(this.warnings, craCheckReportCashflowInsightsGetResponse.warnings); } @Override public int hashCode() { return Objects.hash(report, requestId, warnings); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportCashflowInsightsGetResponse {\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/PlaidCheckScoreVersion.java
src/main/java/com/plaid/client/model/PlaidCheckScoreVersion.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The version of the Check Score. New integrations should use &#x60;/cra/check_report/lend_score/get&#x60; and the LendScore instead. */ @JsonAdapter(PlaidCheckScoreVersion.Adapter.class) public enum PlaidCheckScoreVersion { V1_0("v1.0"), V2_0("v2.0"), // 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; PlaidCheckScoreVersion(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PlaidCheckScoreVersion fromValue(String value) { for (PlaidCheckScoreVersion b : PlaidCheckScoreVersion.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<PlaidCheckScoreVersion> { @Override public void write(final JsonWriter jsonWriter, final PlaidCheckScoreVersion enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PlaidCheckScoreVersion read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PlaidCheckScoreVersion.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/ClientProvidedTransactionLocation.java
src/main/java/com/plaid/client/model/ClientProvidedTransactionLocation.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 representation of where a transaction took place. Use this field to pass in structured location information you may have about your transactions. Providing location data is optional but can increase result quality. If you have unstructured location information, it may be appended to the &#x60;description&#x60; field. */ @ApiModel(description = "A representation of where a transaction took place. Use this field to pass in structured location information you may have about your transactions. Providing location data is optional but can increase result quality. If you have unstructured location information, it may be appended to the `description` field.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ClientProvidedTransactionLocation { public static final String SERIALIZED_NAME_COUNTRY = "country"; @SerializedName(SERIALIZED_NAME_COUNTRY) private String country; public static final String SERIALIZED_NAME_REGION = "region"; @SerializedName(SERIALIZED_NAME_REGION) private String region; public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) private String city; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private String address; public static final String SERIALIZED_NAME_POSTAL_CODE = "postal_code"; @SerializedName(SERIALIZED_NAME_POSTAL_CODE) private String postalCode; public ClientProvidedTransactionLocation country(String country) { this.country = country; return this; } /** * The country where the transaction occurred. * @return country **/ @javax.annotation.Nullable @ApiModelProperty(value = "The country where the transaction occurred.") public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public ClientProvidedTransactionLocation region(String region) { this.region = region; return this; } /** * The region or state where the transaction occurred. * @return region **/ @javax.annotation.Nullable @ApiModelProperty(value = "The region or state where the transaction occurred.") public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public ClientProvidedTransactionLocation city(String city) { this.city = city; return this; } /** * The city where the transaction occurred. * @return city **/ @javax.annotation.Nullable @ApiModelProperty(value = "The city where the transaction occurred.") public String getCity() { return city; } public void setCity(String city) { this.city = city; } public ClientProvidedTransactionLocation address(String address) { this.address = address; return this; } /** * The street address where the transaction occurred. * @return address **/ @javax.annotation.Nullable @ApiModelProperty(value = "The street address where the transaction occurred.") public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } public ClientProvidedTransactionLocation postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * The postal code where the transaction occurred. * @return postalCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The postal code where the transaction occurred.") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ClientProvidedTransactionLocation clientProvidedTransactionLocation = (ClientProvidedTransactionLocation) o; return Objects.equals(this.country, clientProvidedTransactionLocation.country) && Objects.equals(this.region, clientProvidedTransactionLocation.region) && Objects.equals(this.city, clientProvidedTransactionLocation.city) && Objects.equals(this.address, clientProvidedTransactionLocation.address) && Objects.equals(this.postalCode, clientProvidedTransactionLocation.postalCode); } @Override public int hashCode() { return Objects.hash(country, region, city, address, postalCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ClientProvidedTransactionLocation {\n"); sb.append(" country: ").append(toIndentedString(country)).append("\n"); sb.append(" region: ").append(toIndentedString(region)).append("\n"); sb.append(" city: ").append(toIndentedString(city)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaystubOverrideEarningsBreakdown.java
src/main/java/com/plaid/client/model/PaystubOverrideEarningsBreakdown.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.EarningsBreakdownCanonicalDescription; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.math.BigDecimal; /** * An object representing the earnings line items for the pay period. */ @ApiModel(description = "An object representing the earnings line items for the pay period.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaystubOverrideEarningsBreakdown { public static final String SERIALIZED_NAME_CANONICAL_DESCRIPTION = "canonical_description"; @SerializedName(SERIALIZED_NAME_CANONICAL_DESCRIPTION) private EarningsBreakdownCanonicalDescription canonicalDescription; public static final String SERIALIZED_NAME_CURRENT_AMOUNT = "current_amount"; @SerializedName(SERIALIZED_NAME_CURRENT_AMOUNT) private Double currentAmount; public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) private String description; public static final String SERIALIZED_NAME_HOURS = "hours"; @SerializedName(SERIALIZED_NAME_HOURS) private Double hours; public static final String SERIALIZED_NAME_CURRENCY = "currency"; @SerializedName(SERIALIZED_NAME_CURRENCY) private String currency; public static final String SERIALIZED_NAME_RATE = "rate"; @SerializedName(SERIALIZED_NAME_RATE) private Double rate; public static final String SERIALIZED_NAME_YTD_AMOUNT = "ytd_amount"; @SerializedName(SERIALIZED_NAME_YTD_AMOUNT) private Double ytdAmount; public PaystubOverrideEarningsBreakdown canonicalDescription(EarningsBreakdownCanonicalDescription canonicalDescription) { this.canonicalDescription = canonicalDescription; return this; } /** * Get canonicalDescription * @return canonicalDescription **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public EarningsBreakdownCanonicalDescription getCanonicalDescription() { return canonicalDescription; } public void setCanonicalDescription(EarningsBreakdownCanonicalDescription canonicalDescription) { this.canonicalDescription = canonicalDescription; } public PaystubOverrideEarningsBreakdown currentAmount(Double currentAmount) { this.currentAmount = currentAmount; return this; } /** * Raw amount of the earning line item. * @return currentAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "Raw amount of the earning line item.") public Double getCurrentAmount() { return currentAmount; } public void setCurrentAmount(Double currentAmount) { this.currentAmount = currentAmount; } public PaystubOverrideEarningsBreakdown description(String description) { this.description = description; return this; } /** * Description of the earning line item. * @return description **/ @javax.annotation.Nullable @ApiModelProperty(value = "Description of the earning line item.") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public PaystubOverrideEarningsBreakdown hours(Double hours) { this.hours = hours; return this; } /** * Number of hours applicable for this earning. * @return hours **/ @javax.annotation.Nullable @ApiModelProperty(value = "Number of hours applicable for this earning.") public Double getHours() { return hours; } public void setHours(Double hours) { this.hours = hours; } public PaystubOverrideEarningsBreakdown currency(String currency) { this.currency = currency; return this; } /** * The ISO-4217 currency code of the line item. * @return currency **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ISO-4217 currency code of the line item.") public String getCurrency() { return currency; } public void setCurrency(String currency) { this.currency = currency; } public PaystubOverrideEarningsBreakdown rate(Double rate) { this.rate = rate; return this; } /** * Hourly rate applicable for this earning. * @return rate **/ @javax.annotation.Nullable @ApiModelProperty(value = "Hourly rate applicable for this earning.") public Double getRate() { return rate; } public void setRate(Double rate) { this.rate = rate; } public PaystubOverrideEarningsBreakdown ytdAmount(Double ytdAmount) { this.ytdAmount = ytdAmount; return this; } /** * The year-to-date amount of the deduction. * @return ytdAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The year-to-date amount of the deduction.") public Double getYtdAmount() { return ytdAmount; } public void setYtdAmount(Double ytdAmount) { this.ytdAmount = ytdAmount; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaystubOverrideEarningsBreakdown paystubOverrideEarningsBreakdown = (PaystubOverrideEarningsBreakdown) o; return Objects.equals(this.canonicalDescription, paystubOverrideEarningsBreakdown.canonicalDescription) && Objects.equals(this.currentAmount, paystubOverrideEarningsBreakdown.currentAmount) && Objects.equals(this.description, paystubOverrideEarningsBreakdown.description) && Objects.equals(this.hours, paystubOverrideEarningsBreakdown.hours) && Objects.equals(this.currency, paystubOverrideEarningsBreakdown.currency) && Objects.equals(this.rate, paystubOverrideEarningsBreakdown.rate) && Objects.equals(this.ytdAmount, paystubOverrideEarningsBreakdown.ytdAmount); } @Override public int hashCode() { return Objects.hash(canonicalDescription, currentAmount, description, hours, currency, rate, ytdAmount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaystubOverrideEarningsBreakdown {\n"); sb.append(" canonicalDescription: ").append(toIndentedString(canonicalDescription)).append("\n"); sb.append(" currentAmount: ").append(toIndentedString(currentAmount)).append("\n"); sb.append(" description: ").append(toIndentedString(description)).append("\n"); sb.append(" hours: ").append(toIndentedString(hours)).append("\n"); sb.append(" currency: ").append(toIndentedString(currency)).append("\n"); sb.append(" rate: ").append(toIndentedString(rate)).append("\n"); sb.append(" ytdAmount: ").append(toIndentedString(ytdAmount)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetReportRefreshRequest.java
src/main/java/com/plaid/client/model/AssetReportRefreshRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.AssetReportRefreshRequestOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * AssetReportRefreshRequest defines the request schema for &#x60;/asset_report/refresh&#x60; */ @ApiModel(description = "AssetReportRefreshRequest defines the request schema for `/asset_report/refresh`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AssetReportRefreshRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_ASSET_REPORT_TOKEN = "asset_report_token"; @SerializedName(SERIALIZED_NAME_ASSET_REPORT_TOKEN) private String assetReportToken; public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) private Integer daysRequested; public static final String SERIALIZED_NAME_OPTIONS = "options"; @SerializedName(SERIALIZED_NAME_OPTIONS) private AssetReportRefreshRequestOptions options; public AssetReportRefreshRequest 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 AssetReportRefreshRequest 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 AssetReportRefreshRequest assetReportToken(String assetReportToken) { this.assetReportToken = assetReportToken; return this; } /** * The &#x60;asset_report_token&#x60; returned by the original call to &#x60;/asset_report/create&#x60; * @return assetReportToken **/ @ApiModelProperty(required = true, value = "The `asset_report_token` returned by the original call to `/asset_report/create`") public String getAssetReportToken() { return assetReportToken; } public void setAssetReportToken(String assetReportToken) { this.assetReportToken = assetReportToken; } public AssetReportRefreshRequest daysRequested(Integer daysRequested) { this.daysRequested = daysRequested; return this; } /** * The maximum number of days of history to include in the Asset Report. Must be an integer. If not specified, the value from the original call to &#x60;/asset_report/create&#x60; will be used. * minimum: 0 * maximum: 731 * @return daysRequested **/ @javax.annotation.Nullable @ApiModelProperty(value = "The maximum number of days of history to include in the Asset Report. Must be an integer. If not specified, the value from the original call to `/asset_report/create` will be used.") public Integer getDaysRequested() { return daysRequested; } public void setDaysRequested(Integer daysRequested) { this.daysRequested = daysRequested; } public AssetReportRefreshRequest options(AssetReportRefreshRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AssetReportRefreshRequestOptions getOptions() { return options; } public void setOptions(AssetReportRefreshRequestOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AssetReportRefreshRequest assetReportRefreshRequest = (AssetReportRefreshRequest) o; return Objects.equals(this.clientId, assetReportRefreshRequest.clientId) && Objects.equals(this.secret, assetReportRefreshRequest.secret) && Objects.equals(this.assetReportToken, assetReportRefreshRequest.assetReportToken) && Objects.equals(this.daysRequested, assetReportRefreshRequest.daysRequested) && Objects.equals(this.options, assetReportRefreshRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, secret, assetReportToken, daysRequested, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetReportRefreshRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" assetReportToken: ").append(toIndentedString(assetReportToken)).append("\n"); sb.append(" daysRequested: ").append(toIndentedString(daysRequested)).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/WalletTransactionExecuteRequest.java
src/main/java/com/plaid/client/model/WalletTransactionExecuteRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.OriginatingFundSource; import com.plaid.client.model.WalletTransactionAmount; import com.plaid.client.model.WalletTransactionCounterparty; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * WalletTransactionExecuteRequest defines the request schema for &#x60;/wallet/transaction/execute&#x60; */ @ApiModel(description = "WalletTransactionExecuteRequest defines the request schema for `/wallet/transaction/execute`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WalletTransactionExecuteRequest { 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_IDEMPOTENCY_KEY = "idempotency_key"; @SerializedName(SERIALIZED_NAME_IDEMPOTENCY_KEY) private String idempotencyKey; public static final String SERIALIZED_NAME_WALLET_ID = "wallet_id"; @SerializedName(SERIALIZED_NAME_WALLET_ID) private String walletId; public static final String SERIALIZED_NAME_COUNTERPARTY = "counterparty"; @SerializedName(SERIALIZED_NAME_COUNTERPARTY) private WalletTransactionCounterparty counterparty; public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private WalletTransactionAmount amount; public static final String SERIALIZED_NAME_REFERENCE = "reference"; @SerializedName(SERIALIZED_NAME_REFERENCE) private String reference; public static final String SERIALIZED_NAME_ORIGINATING_FUND_SOURCE = "originating_fund_source"; @SerializedName(SERIALIZED_NAME_ORIGINATING_FUND_SOURCE) private OriginatingFundSource originatingFundSource; public WalletTransactionExecuteRequest 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 WalletTransactionExecuteRequest 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 WalletTransactionExecuteRequest idempotencyKey(String idempotencyKey) { this.idempotencyKey = idempotencyKey; return this; } /** * A random key provided by the client, per unique wallet transaction. Maximum of 128 characters. The API supports idempotency for safely retrying requests without accidentally performing the same operation twice. If a request to execute a wallet transaction fails due to a network connection error, then after a minimum delay of one minute, you can retry the request with the same idempotency key to guarantee that only a single wallet transaction is created. If the request was successfully processed, it will prevent any transaction that uses the same idempotency key, and was received within 24 hours of the first request, from being processed. * @return idempotencyKey **/ @ApiModelProperty(required = true, value = "A random key provided by the client, per unique wallet transaction. Maximum of 128 characters. The API supports idempotency for safely retrying requests without accidentally performing the same operation twice. If a request to execute a wallet transaction fails due to a network connection error, then after a minimum delay of one minute, you can retry the request with the same idempotency key to guarantee that only a single wallet transaction is created. If the request was successfully processed, it will prevent any transaction that uses the same idempotency key, and was received within 24 hours of the first request, from being processed.") public String getIdempotencyKey() { return idempotencyKey; } public void setIdempotencyKey(String idempotencyKey) { this.idempotencyKey = idempotencyKey; } public WalletTransactionExecuteRequest walletId(String walletId) { this.walletId = walletId; return this; } /** * The ID of the e-wallet to debit from * @return walletId **/ @ApiModelProperty(required = true, value = "The ID of the e-wallet to debit from") public String getWalletId() { return walletId; } public void setWalletId(String walletId) { this.walletId = walletId; } public WalletTransactionExecuteRequest 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 WalletTransactionExecuteRequest 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 WalletTransactionExecuteRequest reference(String reference) { this.reference = reference; return this; } /** * A reference for the transaction. This must be an alphanumeric string with 6 to 18 characters and must not contain any special characters or spaces. Ensure that the &#x60;reference&#x60; field is unique for each transaction. * @return reference **/ @ApiModelProperty(required = true, value = "A reference for the transaction. This must be an alphanumeric string with 6 to 18 characters and must not contain any special characters or spaces. Ensure that the `reference` field is unique for each transaction.") public String getReference() { return reference; } public void setReference(String reference) { this.reference = reference; } public WalletTransactionExecuteRequest originatingFundSource(OriginatingFundSource originatingFundSource) { this.originatingFundSource = originatingFundSource; return this; } /** * Get originatingFundSource * @return originatingFundSource **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public OriginatingFundSource getOriginatingFundSource() { return originatingFundSource; } public void setOriginatingFundSource(OriginatingFundSource originatingFundSource) { this.originatingFundSource = originatingFundSource; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } WalletTransactionExecuteRequest walletTransactionExecuteRequest = (WalletTransactionExecuteRequest) o; return Objects.equals(this.clientId, walletTransactionExecuteRequest.clientId) && Objects.equals(this.secret, walletTransactionExecuteRequest.secret) && Objects.equals(this.idempotencyKey, walletTransactionExecuteRequest.idempotencyKey) && Objects.equals(this.walletId, walletTransactionExecuteRequest.walletId) && Objects.equals(this.counterparty, walletTransactionExecuteRequest.counterparty) && Objects.equals(this.amount, walletTransactionExecuteRequest.amount) && Objects.equals(this.reference, walletTransactionExecuteRequest.reference) && Objects.equals(this.originatingFundSource, walletTransactionExecuteRequest.originatingFundSource); } @Override public int hashCode() { return Objects.hash(clientId, secret, idempotencyKey, walletId, counterparty, amount, reference, originatingFundSource); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WalletTransactionExecuteRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" idempotencyKey: ").append(toIndentedString(idempotencyKey)).append("\n"); sb.append(" walletId: ").append(toIndentedString(walletId)).append("\n"); sb.append(" counterparty: ").append(toIndentedString(counterparty)).append("\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" reference: ").append(toIndentedString(reference)).append("\n"); sb.append(" originatingFundSource: ").append(toIndentedString(originatingFundSource)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PayStubEarningsBreakdown.java
src/main/java/com/plaid/client/model/PayStubEarningsBreakdown.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * An object representing the earnings line items for the pay period. */ @ApiModel(description = "An object representing the earnings line items for the pay period.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PayStubEarningsBreakdown { public static final String SERIALIZED_NAME_CANONICAL_DESCRIPTION = "canonical_description"; @SerializedName(SERIALIZED_NAME_CANONICAL_DESCRIPTION) private String canonicalDescription; public static final String SERIALIZED_NAME_CURRENT_AMOUNT = "current_amount"; @SerializedName(SERIALIZED_NAME_CURRENT_AMOUNT) private Double currentAmount; public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) private String description; public static final String SERIALIZED_NAME_HOURS = "hours"; @SerializedName(SERIALIZED_NAME_HOURS) private Double hours; 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_RATE = "rate"; @SerializedName(SERIALIZED_NAME_RATE) private Double rate; public static final String SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE = "unofficial_currency_code"; @SerializedName(SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE) private String unofficialCurrencyCode; public static final String SERIALIZED_NAME_YTD_AMOUNT = "ytd_amount"; @SerializedName(SERIALIZED_NAME_YTD_AMOUNT) private Double ytdAmount; public PayStubEarningsBreakdown canonicalDescription(String canonicalDescription) { this.canonicalDescription = canonicalDescription; return this; } /** * Commonly used term to describe the earning line item. * @return canonicalDescription **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Commonly used term to describe the earning line item.") public String getCanonicalDescription() { return canonicalDescription; } public void setCanonicalDescription(String canonicalDescription) { this.canonicalDescription = canonicalDescription; } public PayStubEarningsBreakdown currentAmount(Double currentAmount) { this.currentAmount = currentAmount; return this; } /** * Raw amount of the earning line item. * @return currentAmount **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Raw amount of the earning line item.") public Double getCurrentAmount() { return currentAmount; } public void setCurrentAmount(Double currentAmount) { this.currentAmount = currentAmount; } public PayStubEarningsBreakdown description(String description) { this.description = description; return this; } /** * Description of the earning line item. * @return description **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Description of the earning line item.") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public PayStubEarningsBreakdown hours(Double hours) { this.hours = hours; return this; } /** * Number of hours applicable for this earning. * @return hours **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Number of hours applicable for this earning.") public Double getHours() { return hours; } public void setHours(Double hours) { this.hours = hours; } public PayStubEarningsBreakdown isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO-4217 currency code of the line item. Always &#x60;null&#x60; if &#x60;unofficial_currency_code&#x60; is non-null. * @return isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ISO-4217 currency code of the line item. Always `null` if `unofficial_currency_code` is non-null.") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public PayStubEarningsBreakdown rate(Double rate) { this.rate = rate; return this; } /** * Hourly rate applicable for this earning. * @return rate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Hourly rate applicable for this earning.") public Double getRate() { return rate; } public void setRate(Double rate) { this.rate = rate; } public PayStubEarningsBreakdown unofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; return this; } /** * The unofficial currency code associated with the line item. Always &#x60;null&#x60; if &#x60;iso_currency_code&#x60; is non-&#x60;null&#x60;. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported &#x60;iso_currency_code&#x60;s. * @return unofficialCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The unofficial currency code associated with the line item. Always `null` if `iso_currency_code` is non-`null`. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported `iso_currency_code`s.") public String getUnofficialCurrencyCode() { return unofficialCurrencyCode; } public void setUnofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; } public PayStubEarningsBreakdown ytdAmount(Double ytdAmount) { this.ytdAmount = ytdAmount; return this; } /** * The year-to-date amount of the deduction. * @return ytdAmount **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The year-to-date amount of the deduction.") public Double getYtdAmount() { return ytdAmount; } public void setYtdAmount(Double ytdAmount) { this.ytdAmount = ytdAmount; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PayStubEarningsBreakdown payStubEarningsBreakdown = (PayStubEarningsBreakdown) o; return Objects.equals(this.canonicalDescription, payStubEarningsBreakdown.canonicalDescription) && Objects.equals(this.currentAmount, payStubEarningsBreakdown.currentAmount) && Objects.equals(this.description, payStubEarningsBreakdown.description) && Objects.equals(this.hours, payStubEarningsBreakdown.hours) && Objects.equals(this.isoCurrencyCode, payStubEarningsBreakdown.isoCurrencyCode) && Objects.equals(this.rate, payStubEarningsBreakdown.rate) && Objects.equals(this.unofficialCurrencyCode, payStubEarningsBreakdown.unofficialCurrencyCode) && Objects.equals(this.ytdAmount, payStubEarningsBreakdown.ytdAmount); } @Override public int hashCode() { return Objects.hash(canonicalDescription, currentAmount, description, hours, isoCurrencyCode, rate, unofficialCurrencyCode, ytdAmount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PayStubEarningsBreakdown {\n"); sb.append(" canonicalDescription: ").append(toIndentedString(canonicalDescription)).append("\n"); sb.append(" currentAmount: ").append(toIndentedString(currentAmount)).append("\n"); sb.append(" description: ").append(toIndentedString(description)).append("\n"); sb.append(" hours: ").append(toIndentedString(hours)).append("\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append(" rate: ").append(toIndentedString(rate)).append("\n"); sb.append(" unofficialCurrencyCode: ").append(toIndentedString(unofficialCurrencyCode)).append("\n"); sb.append(" ytdAmount: ").append(toIndentedString(ytdAmount)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransactionsRecurringMergeRequest.java
src/main/java/com/plaid/client/model/TransactionsRecurringMergeRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.TransactionsRecurringMergeInput; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * TransactionsRecurringMergeRequest defined the request schema for &#x60;/transactions/recurring/streams/merge&#x60; endpoint. */ @ApiModel(description = "TransactionsRecurringMergeRequest defined the request schema for `/transactions/recurring/streams/merge` endpoint.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionsRecurringMergeRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) private String accessToken; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_INPUTS = "inputs"; @SerializedName(SERIALIZED_NAME_INPUTS) private List<TransactionsRecurringMergeInput> inputs = new ArrayList<>(); public TransactionsRecurringMergeRequest 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 TransactionsRecurringMergeRequest 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 TransactionsRecurringMergeRequest 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 TransactionsRecurringMergeRequest inputs(List<TransactionsRecurringMergeInput> inputs) { this.inputs = inputs; return this; } public TransactionsRecurringMergeRequest addInputsItem(TransactionsRecurringMergeInput inputsItem) { this.inputs.add(inputsItem); return this; } /** * A list of all the operations to be performed. This will either all succeed or all fail. * @return inputs **/ @ApiModelProperty(required = true, value = "A list of all the operations to be performed. This will either all succeed or all fail.") public List<TransactionsRecurringMergeInput> getInputs() { return inputs; } public void setInputs(List<TransactionsRecurringMergeInput> inputs) { this.inputs = inputs; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransactionsRecurringMergeRequest transactionsRecurringMergeRequest = (TransactionsRecurringMergeRequest) o; return Objects.equals(this.clientId, transactionsRecurringMergeRequest.clientId) && Objects.equals(this.accessToken, transactionsRecurringMergeRequest.accessToken) && Objects.equals(this.secret, transactionsRecurringMergeRequest.secret) && Objects.equals(this.inputs, transactionsRecurringMergeRequest.inputs); } @Override public int hashCode() { return Objects.hash(clientId, accessToken, secret, inputs); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsRecurringMergeRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" inputs: ").append(toIndentedString(inputs)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BaseReportAccountMetadata.java
src/main/java/com/plaid/client/model/BaseReportAccountMetadata.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * Metadata about the extracted account. */ @ApiModel(description = "Metadata about the extracted account.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BaseReportAccountMetadata { 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 BaseReportAccountMetadata startDate(LocalDate startDate) { this.startDate = startDate; return this; } /** * The beginning of the range of the financial institution provided data for the account, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (\&quot;yyyy-mm-dd\&quot;). * @return startDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The beginning of the range of the financial institution provided data for the account, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (\"yyyy-mm-dd\").") public LocalDate getStartDate() { return startDate; } public void setStartDate(LocalDate startDate) { this.startDate = startDate; } public BaseReportAccountMetadata endDate(LocalDate endDate) { this.endDate = endDate; return this; } /** * The end of the range of the financial institution provided data for the account, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (\&quot;yyyy-mm-dd\&quot;). * @return endDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The end of the range of the financial institution provided data for the account, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (\"yyyy-mm-dd\").") public LocalDate getEndDate() { return endDate; } public void setEndDate(LocalDate endDate) { this.endDate = endDate; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BaseReportAccountMetadata baseReportAccountMetadata = (BaseReportAccountMetadata) o; return Objects.equals(this.startDate, baseReportAccountMetadata.startDate) && Objects.equals(this.endDate, baseReportAccountMetadata.endDate); } @Override public int hashCode() { return Objects.hash(startDate, endDate); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BaseReportAccountMetadata {\n"); sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n"); sb.append(" endDate: ").append(toIndentedString(endDate)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferAuthorizationGuaranteeDecisionRationale.java
src/main/java/com/plaid/client/model/TransferAuthorizationGuaranteeDecisionRationale.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.TransferAuthorizationGuaranteeDecisionRationaleCode; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The rationale for Plaid&#39;s decision to not guarantee a transfer. Will be &#x60;null&#x60; unless &#x60;guarantee_decision&#x60; is &#x60;NOT_GUARANTEED&#x60;. */ @ApiModel(description = "The rationale for Plaid's decision to not guarantee a transfer. Will be `null` unless `guarantee_decision` is `NOT_GUARANTEED`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferAuthorizationGuaranteeDecisionRationale { public static final String SERIALIZED_NAME_CODE = "code"; @SerializedName(SERIALIZED_NAME_CODE) private TransferAuthorizationGuaranteeDecisionRationaleCode code; public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) private String description; public TransferAuthorizationGuaranteeDecisionRationale code(TransferAuthorizationGuaranteeDecisionRationaleCode code) { this.code = code; return this; } /** * Get code * @return code **/ @ApiModelProperty(required = true, value = "") public TransferAuthorizationGuaranteeDecisionRationaleCode getCode() { return code; } public void setCode(TransferAuthorizationGuaranteeDecisionRationaleCode code) { this.code = code; } public TransferAuthorizationGuaranteeDecisionRationale description(String description) { this.description = description; return this; } /** * A human-readable description of why the transfer cannot be guaranteed. * @return description **/ @ApiModelProperty(required = true, value = "A human-readable description of why the transfer cannot be guaranteed.") 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; } TransferAuthorizationGuaranteeDecisionRationale transferAuthorizationGuaranteeDecisionRationale = (TransferAuthorizationGuaranteeDecisionRationale) o; return Objects.equals(this.code, transferAuthorizationGuaranteeDecisionRationale.code) && Objects.equals(this.description, transferAuthorizationGuaranteeDecisionRationale.description); } @Override public int hashCode() { return Objects.hash(code, description); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferAuthorizationGuaranteeDecisionRationale {\n"); sb.append(" code: ").append(toIndentedString(code)).append("\n"); sb.append(" description: ").append(toIndentedString(description)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IdentityVerificationUserData.java
src/main/java/com/plaid/client/model/IdentityVerificationUserData.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.IdentityVerificationResponseUserName; import com.plaid.client.model.IdentityVerificationUserAddress; import com.plaid.client.model.UserIDNumber; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * The identity data that was either collected from the user or provided via API in order to perform an Identity Verification. */ @ApiModel(description = "The identity data that was either collected from the user or provided via API in order to perform an Identity Verification.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityVerificationUserData { public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBER) private String phoneNumber; 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_IP_ADDRESS = "ip_address"; @SerializedName(SERIALIZED_NAME_IP_ADDRESS) private String ipAddress; public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) private String emailAddress; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private IdentityVerificationResponseUserName name; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private IdentityVerificationUserAddress address; public static final String SERIALIZED_NAME_ID_NUMBER = "id_number"; @SerializedName(SERIALIZED_NAME_ID_NUMBER) private UserIDNumber idNumber; public IdentityVerificationUserData phoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; return this; } /** * A valid phone number in E.164 format. * @return phoneNumber **/ @javax.annotation.Nullable @ApiModelProperty(example = "+12345678909", value = "A valid phone number in E.164 format.") public String getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } public IdentityVerificationUserData dateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; return this; } /** * A date in the format YYYY-MM-DD (RFC 3339 Section 5.6). * @return dateOfBirth **/ @javax.annotation.Nullable @ApiModelProperty(example = "Tue May 29 00:00:00 UTC 1990", required = true, value = "A date in the format YYYY-MM-DD (RFC 3339 Section 5.6).") public LocalDate getDateOfBirth() { return dateOfBirth; } public void setDateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; } public IdentityVerificationUserData ipAddress(String ipAddress) { this.ipAddress = ipAddress; return this; } /** * An IPv4 or IPV6 address. * @return ipAddress **/ @javax.annotation.Nullable @ApiModelProperty(example = "192.0.2.42", required = true, value = "An IPv4 or IPV6 address.") public String getIpAddress() { return ipAddress; } public void setIpAddress(String ipAddress) { this.ipAddress = ipAddress; } public IdentityVerificationUserData emailAddress(String emailAddress) { this.emailAddress = emailAddress; return this; } /** * A valid email address. Must not have leading or trailing spaces and address must be RFC compliant. For more information, see [RFC 3696](https://datatracker.ietf.org/doc/html/rfc3696). * @return emailAddress **/ @javax.annotation.Nullable @ApiModelProperty(example = "user@example.com", required = true, value = "A valid email address. Must not have leading or trailing spaces and address must be RFC compliant. For more information, see [RFC 3696](https://datatracker.ietf.org/doc/html/rfc3696).") public String getEmailAddress() { return emailAddress; } public void setEmailAddress(String emailAddress) { this.emailAddress = emailAddress; } public IdentityVerificationUserData name(IdentityVerificationResponseUserName name) { this.name = name; return this; } /** * Get name * @return name **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public IdentityVerificationResponseUserName getName() { return name; } public void setName(IdentityVerificationResponseUserName name) { this.name = name; } public IdentityVerificationUserData address(IdentityVerificationUserAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public IdentityVerificationUserAddress getAddress() { return address; } public void setAddress(IdentityVerificationUserAddress address) { this.address = address; } public IdentityVerificationUserData idNumber(UserIDNumber idNumber) { this.idNumber = idNumber; return this; } /** * Get idNumber * @return idNumber **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public UserIDNumber getIdNumber() { return idNumber; } public void setIdNumber(UserIDNumber idNumber) { this.idNumber = idNumber; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IdentityVerificationUserData identityVerificationUserData = (IdentityVerificationUserData) o; return Objects.equals(this.phoneNumber, identityVerificationUserData.phoneNumber) && Objects.equals(this.dateOfBirth, identityVerificationUserData.dateOfBirth) && Objects.equals(this.ipAddress, identityVerificationUserData.ipAddress) && Objects.equals(this.emailAddress, identityVerificationUserData.emailAddress) && Objects.equals(this.name, identityVerificationUserData.name) && Objects.equals(this.address, identityVerificationUserData.address) && Objects.equals(this.idNumber, identityVerificationUserData.idNumber); } @Override public int hashCode() { return Objects.hash(phoneNumber, dateOfBirth, ipAddress, emailAddress, name, address, idNumber); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityVerificationUserData {\n"); sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n"); sb.append(" dateOfBirth: ").append(toIndentedString(dateOfBirth)).append("\n"); sb.append(" ipAddress: ").append(toIndentedString(ipAddress)).append("\n"); sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" idNumber: ").append(toIndentedString(idNumber)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SandboxItemResetLoginRequest.java
src/main/java/com/plaid/client/model/SandboxItemResetLoginRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * SandboxItemResetLoginRequest defines the request schema for &#x60;/sandbox/item/reset_login&#x60; */ @ApiModel(description = "SandboxItemResetLoginRequest defines the request schema for `/sandbox/item/reset_login`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SandboxItemResetLoginRequest { 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 SandboxItemResetLoginRequest 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 SandboxItemResetLoginRequest 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 SandboxItemResetLoginRequest 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; } SandboxItemResetLoginRequest sandboxItemResetLoginRequest = (SandboxItemResetLoginRequest) o; return Objects.equals(this.clientId, sandboxItemResetLoginRequest.clientId) && Objects.equals(this.secret, sandboxItemResetLoginRequest.secret) && Objects.equals(this.accessToken, sandboxItemResetLoginRequest.accessToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, accessToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SandboxItemResetLoginRequest {\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/CashflowAttributesVersion.java
src/main/java/com/plaid/client/model/CashflowAttributesVersion.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The version of cashflow attributes */ @JsonAdapter(CashflowAttributesVersion.Adapter.class) public enum CashflowAttributesVersion { V1_0("v1.0"), V2_0("v2.0"), CFI1("CFI1"), // 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; CashflowAttributesVersion(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static CashflowAttributesVersion fromValue(String value) { for (CashflowAttributesVersion b : CashflowAttributesVersion.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<CashflowAttributesVersion> { @Override public void write(final JsonWriter jsonWriter, final CashflowAttributesVersion enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public CashflowAttributesVersion read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return CashflowAttributesVersion.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/CraBankIncomeTransaction.java
src/main/java/com/plaid/client/model/CraBankIncomeTransaction.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CraBankIncomeBonusType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.math.BigDecimal; import java.time.LocalDate; /** * The transactions data for the end user&#39;s income source(s). */ @ApiModel(description = "The transactions data for the end user's income source(s).") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraBankIncomeTransaction { public static final String SERIALIZED_NAME_TRANSACTION_ID = "transaction_id"; @SerializedName(SERIALIZED_NAME_TRANSACTION_ID) private String transactionId; public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private Double amount; public static final String SERIALIZED_NAME_DATE = "date"; @SerializedName(SERIALIZED_NAME_DATE) private LocalDate date; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_ORIGINAL_DESCRIPTION = "original_description"; @SerializedName(SERIALIZED_NAME_ORIGINAL_DESCRIPTION) private String originalDescription; public static final String SERIALIZED_NAME_PENDING = "pending"; @SerializedName(SERIALIZED_NAME_PENDING) private Boolean pending; public static final String SERIALIZED_NAME_CHECK_NUMBER = "check_number"; @SerializedName(SERIALIZED_NAME_CHECK_NUMBER) private String checkNumber; public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code"; @SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE) private String isoCurrencyCode; public static final String SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE = "unofficial_currency_code"; @SerializedName(SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE) private String unofficialCurrencyCode; public static final String SERIALIZED_NAME_BONUS_TYPE = "bonus_type"; @SerializedName(SERIALIZED_NAME_BONUS_TYPE) private CraBankIncomeBonusType bonusType; public CraBankIncomeTransaction transactionId(String transactionId) { this.transactionId = transactionId; return this; } /** * The unique ID of the transaction. Like all Plaid identifiers, the &#x60;transaction_id&#x60; is case sensitive. * @return transactionId **/ @ApiModelProperty(required = true, value = "The unique ID of the transaction. Like all Plaid identifiers, the `transaction_id` is case sensitive.") public String getTransactionId() { return transactionId; } public void setTransactionId(String transactionId) { this.transactionId = transactionId; } public CraBankIncomeTransaction amount(Double amount) { this.amount = amount; return this; } /** * The settled value of the transaction, denominated in the transaction&#39;s currency as stated in &#x60;iso_currency_code&#x60; or &#x60;unofficial_currency_code&#x60;. Positive values when money moves out of the account; negative values when money moves in. For example, credit card purchases are positive; credit card payment, direct deposits, and refunds are negative. * @return amount **/ @ApiModelProperty(required = true, value = "The settled value of the transaction, denominated in the transaction's currency as stated in `iso_currency_code` or `unofficial_currency_code`. Positive values when money moves out of the account; negative values when money moves in. For example, credit card purchases are positive; credit card payment, direct deposits, and refunds are negative.") public Double getAmount() { return amount; } public void setAmount(Double amount) { this.amount = amount; } public CraBankIncomeTransaction date(LocalDate date) { this.date = date; return this; } /** * For pending transactions, the date that the transaction occurred; for posted transactions, the date that the transaction posted. Both dates are returned in an ISO 8601 format (YYYY-MM-DD). * @return date **/ @ApiModelProperty(required = true, value = "For pending transactions, the date that the transaction occurred; for posted transactions, the date that the transaction posted. Both dates are returned in an ISO 8601 format (YYYY-MM-DD).") public LocalDate getDate() { return date; } public void setDate(LocalDate date) { this.date = date; } public CraBankIncomeTransaction name(String name) { this.name = name; return this; } /** * The merchant name or transaction description. This is a legacy field that is no longer maintained. For merchant name, use the &#x60;merchant_name&#x60; field; for description, use the &#x60;original_description&#x60; field. * @return name **/ @javax.annotation.Nullable @ApiModelProperty(value = "The merchant name or transaction description. This is a legacy field that is no longer maintained. For merchant name, use the `merchant_name` field; for description, use the `original_description` field.") public String getName() { return name; } public void setName(String name) { this.name = name; } public CraBankIncomeTransaction originalDescription(String originalDescription) { this.originalDescription = originalDescription; return this; } /** * The string returned by the financial institution to describe the transaction. * @return originalDescription **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The string returned by the financial institution to describe the transaction.") public String getOriginalDescription() { return originalDescription; } public void setOriginalDescription(String originalDescription) { this.originalDescription = originalDescription; } public CraBankIncomeTransaction pending(Boolean pending) { this.pending = pending; return this; } /** * When true, identifies the transaction as pending or unsettled. Pending transaction details (name, type, amount, category ID) may change before they are settled. * @return pending **/ @ApiModelProperty(required = true, value = "When true, identifies the transaction as pending or unsettled. Pending transaction details (name, type, amount, category ID) may change before they are settled.") public Boolean getPending() { return pending; } public void setPending(Boolean pending) { this.pending = pending; } public CraBankIncomeTransaction checkNumber(String checkNumber) { this.checkNumber = checkNumber; return this; } /** * The check number of the transaction. This field is only populated for check transactions. * @return checkNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "The check number of the transaction. This field is only populated for check transactions.") public String getCheckNumber() { return checkNumber; } public void setCheckNumber(String checkNumber) { this.checkNumber = checkNumber; } public CraBankIncomeTransaction 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 CraBankIncomeTransaction 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; } public CraBankIncomeTransaction bonusType(CraBankIncomeBonusType bonusType) { this.bonusType = bonusType; return this; } /** * Get bonusType * @return bonusType **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CraBankIncomeBonusType getBonusType() { return bonusType; } public void setBonusType(CraBankIncomeBonusType bonusType) { this.bonusType = bonusType; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraBankIncomeTransaction craBankIncomeTransaction = (CraBankIncomeTransaction) o; return Objects.equals(this.transactionId, craBankIncomeTransaction.transactionId) && Objects.equals(this.amount, craBankIncomeTransaction.amount) && Objects.equals(this.date, craBankIncomeTransaction.date) && Objects.equals(this.name, craBankIncomeTransaction.name) && Objects.equals(this.originalDescription, craBankIncomeTransaction.originalDescription) && Objects.equals(this.pending, craBankIncomeTransaction.pending) && Objects.equals(this.checkNumber, craBankIncomeTransaction.checkNumber) && Objects.equals(this.isoCurrencyCode, craBankIncomeTransaction.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, craBankIncomeTransaction.unofficialCurrencyCode) && Objects.equals(this.bonusType, craBankIncomeTransaction.bonusType); } @Override public int hashCode() { return Objects.hash(transactionId, amount, date, name, originalDescription, pending, checkNumber, isoCurrencyCode, unofficialCurrencyCode, bonusType); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraBankIncomeTransaction {\n"); sb.append(" transactionId: ").append(toIndentedString(transactionId)).append("\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" date: ").append(toIndentedString(date)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" originalDescription: ").append(toIndentedString(originalDescription)).append("\n"); sb.append(" pending: ").append(toIndentedString(pending)).append("\n"); sb.append(" checkNumber: ").append(toIndentedString(checkNumber)).append("\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append(" unofficialCurrencyCode: ").append(toIndentedString(unofficialCurrencyCode)).append("\n"); sb.append(" bonusType: ").append(toIndentedString(bonusType)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BusinessPhoneNumber.java
src/main/java/com/plaid/client/model/BusinessPhoneNumber.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Phone number associated with a business */ @ApiModel(description = "Phone number associated with a business") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BusinessPhoneNumber { public static final String SERIALIZED_NAME_NUMBER = "number"; @SerializedName(SERIALIZED_NAME_NUMBER) private String number; public BusinessPhoneNumber number(String number) { this.number = number; return this; } /** * Phone number in E.164 format * @return number **/ @javax.annotation.Nullable @ApiModelProperty(example = "+12345678909", required = true, value = "Phone number in E.164 format") public String getNumber() { return number; } public void setNumber(String number) { this.number = number; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BusinessPhoneNumber businessPhoneNumber = (BusinessPhoneNumber) o; return Objects.equals(this.number, businessPhoneNumber.number); } @Override public int hashCode() { return Objects.hash(number); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BusinessPhoneNumber {\n"); sb.append(" number: ").append(toIndentedString(number)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LastDataAccessTimes.java
src/main/java/com/plaid/client/model/LastDataAccessTimes.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * Describes the last time each datatype was accessed by an application. */ @ApiModel(description = "Describes the last time each datatype was accessed by an application.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LastDataAccessTimes { public static final String SERIALIZED_NAME_APPLICATION_ID = "application_id"; @SerializedName(SERIALIZED_NAME_APPLICATION_ID) private String applicationId; public static final String SERIALIZED_NAME_ACCOUNT_BALANCE_INFO = "account_balance_info"; @SerializedName(SERIALIZED_NAME_ACCOUNT_BALANCE_INFO) private OffsetDateTime accountBalanceInfo; public static final String SERIALIZED_NAME_ACCOUNT_ROUTING_NUMBER = "account_routing_number"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ROUTING_NUMBER) private OffsetDateTime accountRoutingNumber; public static final String SERIALIZED_NAME_CONTACT_DETAILS = "contact_details"; @SerializedName(SERIALIZED_NAME_CONTACT_DETAILS) private OffsetDateTime contactDetails; public static final String SERIALIZED_NAME_TRANSACTIONS = "transactions"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS) private OffsetDateTime transactions; public static final String SERIALIZED_NAME_CREDIT_AND_LOANS = "credit_and_loans"; @SerializedName(SERIALIZED_NAME_CREDIT_AND_LOANS) private OffsetDateTime creditAndLoans; public static final String SERIALIZED_NAME_INVESTMENTS = "investments"; @SerializedName(SERIALIZED_NAME_INVESTMENTS) private OffsetDateTime investments; public static final String SERIALIZED_NAME_PAYROLL_INFO = "payroll_info"; @SerializedName(SERIALIZED_NAME_PAYROLL_INFO) private OffsetDateTime payrollInfo; public static final String SERIALIZED_NAME_TRANSACTION_RISK_INFO = "transaction_risk_info"; @SerializedName(SERIALIZED_NAME_TRANSACTION_RISK_INFO) private OffsetDateTime transactionRiskInfo; public LastDataAccessTimes applicationId(String applicationId) { this.applicationId = applicationId; return this; } /** * ID of the application accessing data. * @return applicationId **/ @ApiModelProperty(required = true, value = "ID of the application accessing data.") public String getApplicationId() { return applicationId; } public void setApplicationId(String applicationId) { this.applicationId = applicationId; } public LastDataAccessTimes accountBalanceInfo(OffsetDateTime accountBalanceInfo) { this.accountBalanceInfo = accountBalanceInfo; return this; } /** * The last time &#x60;account_balance_info&#x60; was accessed by this application in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format in UTC. null if never accessed. * @return accountBalanceInfo **/ @javax.annotation.Nullable @ApiModelProperty(example = "2023-02-08T10:00Z", required = true, value = "The last time `account_balance_info` was accessed by this application in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format in UTC. null if never accessed.") public OffsetDateTime getAccountBalanceInfo() { return accountBalanceInfo; } public void setAccountBalanceInfo(OffsetDateTime accountBalanceInfo) { this.accountBalanceInfo = accountBalanceInfo; } public LastDataAccessTimes accountRoutingNumber(OffsetDateTime accountRoutingNumber) { this.accountRoutingNumber = accountRoutingNumber; return this; } /** * The last time &#x60;account_routing_number&#x60; was accessed by this application in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format in UTC. null if never accessed. * @return accountRoutingNumber **/ @javax.annotation.Nullable @ApiModelProperty(example = "2023-02-08T10:00Z", required = true, value = "The last time `account_routing_number` was accessed by this application in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format in UTC. null if never accessed.") public OffsetDateTime getAccountRoutingNumber() { return accountRoutingNumber; } public void setAccountRoutingNumber(OffsetDateTime accountRoutingNumber) { this.accountRoutingNumber = accountRoutingNumber; } public LastDataAccessTimes contactDetails(OffsetDateTime contactDetails) { this.contactDetails = contactDetails; return this; } /** * The last time &#x60;contact_details&#x60; was accessed by this application in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format in UTC. null if never accessed. * @return contactDetails **/ @javax.annotation.Nullable @ApiModelProperty(example = "2023-02-08T10:00Z", required = true, value = "The last time `contact_details` was accessed by this application in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format in UTC. null if never accessed.") public OffsetDateTime getContactDetails() { return contactDetails; } public void setContactDetails(OffsetDateTime contactDetails) { this.contactDetails = contactDetails; } public LastDataAccessTimes transactions(OffsetDateTime transactions) { this.transactions = transactions; return this; } /** * The last time &#x60;transactions&#x60; was accessed by this application in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format in UTC. null if never accessed. * @return transactions **/ @javax.annotation.Nullable @ApiModelProperty(example = "2023-02-08T10:00Z", required = true, value = "The last time `transactions` was accessed by this application in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format in UTC. null if never accessed.") public OffsetDateTime getTransactions() { return transactions; } public void setTransactions(OffsetDateTime transactions) { this.transactions = transactions; } public LastDataAccessTimes creditAndLoans(OffsetDateTime creditAndLoans) { this.creditAndLoans = creditAndLoans; return this; } /** * The last time &#x60;credit_and_loans&#x60; was accessed by this application in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format in UTC. null if never accessed. * @return creditAndLoans **/ @javax.annotation.Nullable @ApiModelProperty(example = "2023-02-08T10:00Z", required = true, value = "The last time `credit_and_loans` was accessed by this application in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format in UTC. null if never accessed.") public OffsetDateTime getCreditAndLoans() { return creditAndLoans; } public void setCreditAndLoans(OffsetDateTime creditAndLoans) { this.creditAndLoans = creditAndLoans; } public LastDataAccessTimes investments(OffsetDateTime investments) { this.investments = investments; return this; } /** * The last time &#x60;investments&#x60; was accessed by this application in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format in UTC. null if never accessed. * @return investments **/ @javax.annotation.Nullable @ApiModelProperty(example = "2023-02-08T10:00Z", required = true, value = "The last time `investments` was accessed by this application in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format in UTC. null if never accessed.") public OffsetDateTime getInvestments() { return investments; } public void setInvestments(OffsetDateTime investments) { this.investments = investments; } public LastDataAccessTimes payrollInfo(OffsetDateTime payrollInfo) { this.payrollInfo = payrollInfo; return this; } /** * The last time &#x60;payroll_info&#x60; was accessed by this application in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format in UTC. null if never accessed. * @return payrollInfo **/ @javax.annotation.Nullable @ApiModelProperty(example = "2023-02-08T10:00Z", required = true, value = "The last time `payroll_info` was accessed by this application in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format in UTC. null if never accessed.") public OffsetDateTime getPayrollInfo() { return payrollInfo; } public void setPayrollInfo(OffsetDateTime payrollInfo) { this.payrollInfo = payrollInfo; } public LastDataAccessTimes transactionRiskInfo(OffsetDateTime transactionRiskInfo) { this.transactionRiskInfo = transactionRiskInfo; return this; } /** * The last time &#x60;transaction_risk_info&#x60; was accessed by this application in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format in UTC. null if never accessed. * @return transactionRiskInfo **/ @javax.annotation.Nullable @ApiModelProperty(example = "2023-02-08T10:00Z", required = true, value = "The last time `transaction_risk_info` was accessed by this application in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format in UTC. null if never accessed.") public OffsetDateTime getTransactionRiskInfo() { return transactionRiskInfo; } public void setTransactionRiskInfo(OffsetDateTime transactionRiskInfo) { this.transactionRiskInfo = transactionRiskInfo; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LastDataAccessTimes lastDataAccessTimes = (LastDataAccessTimes) o; return Objects.equals(this.applicationId, lastDataAccessTimes.applicationId) && Objects.equals(this.accountBalanceInfo, lastDataAccessTimes.accountBalanceInfo) && Objects.equals(this.accountRoutingNumber, lastDataAccessTimes.accountRoutingNumber) && Objects.equals(this.contactDetails, lastDataAccessTimes.contactDetails) && Objects.equals(this.transactions, lastDataAccessTimes.transactions) && Objects.equals(this.creditAndLoans, lastDataAccessTimes.creditAndLoans) && Objects.equals(this.investments, lastDataAccessTimes.investments) && Objects.equals(this.payrollInfo, lastDataAccessTimes.payrollInfo) && Objects.equals(this.transactionRiskInfo, lastDataAccessTimes.transactionRiskInfo); } @Override public int hashCode() { return Objects.hash(applicationId, accountBalanceInfo, accountRoutingNumber, contactDetails, transactions, creditAndLoans, investments, payrollInfo, transactionRiskInfo); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LastDataAccessTimes {\n"); sb.append(" applicationId: ").append(toIndentedString(applicationId)).append("\n"); sb.append(" accountBalanceInfo: ").append(toIndentedString(accountBalanceInfo)).append("\n"); sb.append(" accountRoutingNumber: ").append(toIndentedString(accountRoutingNumber)).append("\n"); sb.append(" contactDetails: ").append(toIndentedString(contactDetails)).append("\n"); sb.append(" transactions: ").append(toIndentedString(transactions)).append("\n"); sb.append(" creditAndLoans: ").append(toIndentedString(creditAndLoans)).append("\n"); sb.append(" investments: ").append(toIndentedString(investments)).append("\n"); sb.append(" payrollInfo: ").append(toIndentedString(payrollInfo)).append("\n"); sb.append(" transactionRiskInfo: ").append(toIndentedString(transactionRiskInfo)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/Security.java
src/main/java/com/plaid/client/model/Security.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.FixedIncome; import com.plaid.client.model.OptionContract; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; import java.time.OffsetDateTime; /** * Contains details about a security */ @ApiModel(description = "Contains details about a security") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Security { public static final String SERIALIZED_NAME_SECURITY_ID = "security_id"; @SerializedName(SERIALIZED_NAME_SECURITY_ID) private String securityId; public static final String SERIALIZED_NAME_ISIN = "isin"; @SerializedName(SERIALIZED_NAME_ISIN) private String isin; public static final String SERIALIZED_NAME_CUSIP = "cusip"; @SerializedName(SERIALIZED_NAME_CUSIP) private String cusip; public static final String SERIALIZED_NAME_SEDOL = "sedol"; @SerializedName(SERIALIZED_NAME_SEDOL) private String sedol; public static final String SERIALIZED_NAME_INSTITUTION_SECURITY_ID = "institution_security_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_SECURITY_ID) private String institutionSecurityId; public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_ID) private String institutionId; public static final String SERIALIZED_NAME_PROXY_SECURITY_ID = "proxy_security_id"; @SerializedName(SERIALIZED_NAME_PROXY_SECURITY_ID) private String proxySecurityId; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_TICKER_SYMBOL = "ticker_symbol"; @SerializedName(SERIALIZED_NAME_TICKER_SYMBOL) private String tickerSymbol; public static final String SERIALIZED_NAME_IS_CASH_EQUIVALENT = "is_cash_equivalent"; @SerializedName(SERIALIZED_NAME_IS_CASH_EQUIVALENT) private Boolean isCashEquivalent; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private String type; public static final String SERIALIZED_NAME_SUBTYPE = "subtype"; @SerializedName(SERIALIZED_NAME_SUBTYPE) private String subtype; public static final String SERIALIZED_NAME_CLOSE_PRICE = "close_price"; @SerializedName(SERIALIZED_NAME_CLOSE_PRICE) private Double closePrice; public static final String SERIALIZED_NAME_CLOSE_PRICE_AS_OF = "close_price_as_of"; @SerializedName(SERIALIZED_NAME_CLOSE_PRICE_AS_OF) private LocalDate closePriceAsOf; public static final String SERIALIZED_NAME_UPDATE_DATETIME = "update_datetime"; @SerializedName(SERIALIZED_NAME_UPDATE_DATETIME) private OffsetDateTime updateDatetime; public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code"; @SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE) private String isoCurrencyCode; public static final String SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE = "unofficial_currency_code"; @SerializedName(SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE) private String unofficialCurrencyCode; public static final String SERIALIZED_NAME_MARKET_IDENTIFIER_CODE = "market_identifier_code"; @SerializedName(SERIALIZED_NAME_MARKET_IDENTIFIER_CODE) private String marketIdentifierCode; public static final String SERIALIZED_NAME_SECTOR = "sector"; @SerializedName(SERIALIZED_NAME_SECTOR) private String sector; public static final String SERIALIZED_NAME_INDUSTRY = "industry"; @SerializedName(SERIALIZED_NAME_INDUSTRY) private String industry; public static final String SERIALIZED_NAME_OPTION_CONTRACT = "option_contract"; @SerializedName(SERIALIZED_NAME_OPTION_CONTRACT) private OptionContract optionContract; public static final String SERIALIZED_NAME_FIXED_INCOME = "fixed_income"; @SerializedName(SERIALIZED_NAME_FIXED_INCOME) private FixedIncome fixedIncome; public Security securityId(String securityId) { this.securityId = securityId; return this; } /** * A unique, Plaid-specific identifier for the security, used to associate securities with holdings. Like all Plaid identifiers, the &#x60;security_id&#x60; is case sensitive. The &#x60;security_id&#x60; may change if inherent details of the security change due to a corporate action, for example, in the event of a ticker symbol change or CUSIP change. * @return securityId **/ @ApiModelProperty(required = true, value = "A unique, Plaid-specific identifier for the security, used to associate securities with holdings. Like all Plaid identifiers, the `security_id` is case sensitive. The `security_id` may change if inherent details of the security change due to a corporate action, for example, in the event of a ticker symbol change or CUSIP change.") public String getSecurityId() { return securityId; } public void setSecurityId(String securityId) { this.securityId = securityId; } public Security isin(String isin) { this.isin = isin; return this; } /** * 12-character ISIN, a globally unique securities identifier. A verified CUSIP Global Services license is required to receive this data. This field will be null by default for new customers, and null for existing customers starting March 12, 2024. If you would like access to this field, please start the verification process [here](https://docs.google.com/forms/d/e/1FAIpQLSd9asHEYEfmf8fxJTHZTAfAzW4dugsnSu-HS2J51f1mxwd6Sw/viewform). * @return isin **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "12-character ISIN, a globally unique securities identifier. A verified CUSIP Global Services license is required to receive this data. This field will be null by default for new customers, and null for existing customers starting March 12, 2024. If you would like access to this field, please start the verification process [here](https://docs.google.com/forms/d/e/1FAIpQLSd9asHEYEfmf8fxJTHZTAfAzW4dugsnSu-HS2J51f1mxwd6Sw/viewform).") public String getIsin() { return isin; } public void setIsin(String isin) { this.isin = isin; } public Security cusip(String cusip) { this.cusip = cusip; return this; } /** * 9-character CUSIP, an identifier assigned to North American securities. A verified CUSIP Global Services license is required to receive this data. This field will be null by default for new customers, and null for existing customers starting March 12, 2024. If you would like access to this field, please start the verification process [here](https://docs.google.com/forms/d/e/1FAIpQLSd9asHEYEfmf8fxJTHZTAfAzW4dugsnSu-HS2J51f1mxwd6Sw/viewform). * @return cusip **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "9-character CUSIP, an identifier assigned to North American securities. A verified CUSIP Global Services license is required to receive this data. This field will be null by default for new customers, and null for existing customers starting March 12, 2024. If you would like access to this field, please start the verification process [here](https://docs.google.com/forms/d/e/1FAIpQLSd9asHEYEfmf8fxJTHZTAfAzW4dugsnSu-HS2J51f1mxwd6Sw/viewform).") public String getCusip() { return cusip; } public void setCusip(String cusip) { this.cusip = cusip; } public Security sedol(String sedol) { this.sedol = sedol; return this; } /** * (Deprecated) 7-character SEDOL, an identifier assigned to securities in the UK. * @return sedol **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "(Deprecated) 7-character SEDOL, an identifier assigned to securities in the UK.") public String getSedol() { return sedol; } public void setSedol(String sedol) { this.sedol = sedol; } public Security institutionSecurityId(String institutionSecurityId) { this.institutionSecurityId = institutionSecurityId; return this; } /** * An identifier given to the security by the institution * @return institutionSecurityId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "An identifier given to the security by the institution") public String getInstitutionSecurityId() { return institutionSecurityId; } public void setInstitutionSecurityId(String institutionSecurityId) { this.institutionSecurityId = institutionSecurityId; } public Security institutionId(String institutionId) { this.institutionId = institutionId; return this; } /** * If &#x60;institution_security_id&#x60; is present, this field indicates the Plaid &#x60;institution_id&#x60; of the institution to whom the identifier belongs. * @return institutionId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "If `institution_security_id` is present, this field indicates the Plaid `institution_id` of the institution to whom the identifier belongs.") public String getInstitutionId() { return institutionId; } public void setInstitutionId(String institutionId) { this.institutionId = institutionId; } public Security proxySecurityId(String proxySecurityId) { this.proxySecurityId = proxySecurityId; return this; } /** * In certain cases, Plaid will provide the ID of another security whose performance resembles this security, typically when the original security has low volume, or when a private security can be modeled with a publicly traded security. * @return proxySecurityId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "In certain cases, Plaid will provide the ID of another security whose performance resembles this security, typically when the original security has low volume, or when a private security can be modeled with a publicly traded security.") public String getProxySecurityId() { return proxySecurityId; } public void setProxySecurityId(String proxySecurityId) { this.proxySecurityId = proxySecurityId; } public Security name(String name) { this.name = name; return this; } /** * A descriptive name for the security, suitable for display. * @return name **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "A descriptive name for the security, suitable for display.") public String getName() { return name; } public void setName(String name) { this.name = name; } public Security tickerSymbol(String tickerSymbol) { this.tickerSymbol = tickerSymbol; return this; } /** * The security’s trading symbol for publicly traded securities, and otherwise a short identifier if available. * @return tickerSymbol **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The security’s trading symbol for publicly traded securities, and otherwise a short identifier if available.") public String getTickerSymbol() { return tickerSymbol; } public void setTickerSymbol(String tickerSymbol) { this.tickerSymbol = tickerSymbol; } public Security isCashEquivalent(Boolean isCashEquivalent) { this.isCashEquivalent = isCashEquivalent; return this; } /** * Indicates that a security is a highly liquid asset and can be treated like cash. * @return isCashEquivalent **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Indicates that a security is a highly liquid asset and can be treated like cash.") public Boolean getIsCashEquivalent() { return isCashEquivalent; } public void setIsCashEquivalent(Boolean isCashEquivalent) { this.isCashEquivalent = isCashEquivalent; } public Security type(String type) { this.type = type; return this; } /** * The security type of the holding. In rare instances, a null value is returned when institutional data is insufficient to determine the security type. Valid security types are: &#x60;cash&#x60;: Cash, currency, and money market funds &#x60;cryptocurrency&#x60;: Digital or virtual currencies &#x60;derivative&#x60;: Options, warrants, and other derivative instruments &#x60;equity&#x60;: Domestic and foreign equities &#x60;etf&#x60;: Multi-asset exchange-traded investment funds &#x60;fixed income&#x60;: Bonds and certificates of deposit (CDs) &#x60;loan&#x60;: Loans and loan receivables &#x60;mutual fund&#x60;: Open- and closed-end vehicles pooling funds of multiple investors &#x60;other&#x60;: Unknown or other investment types * @return type **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The security type of the holding. In rare instances, a null value is returned when institutional data is insufficient to determine the security type. Valid security types are: `cash`: Cash, currency, and money market funds `cryptocurrency`: Digital or virtual currencies `derivative`: Options, warrants, and other derivative instruments `equity`: Domestic and foreign equities `etf`: Multi-asset exchange-traded investment funds `fixed income`: Bonds and certificates of deposit (CDs) `loan`: Loans and loan receivables `mutual fund`: Open- and closed-end vehicles pooling funds of multiple investors `other`: Unknown or other investment types") public String getType() { return type; } public void setType(String type) { this.type = type; } public Security subtype(String subtype) { this.subtype = subtype; return this; } /** * The security subtype of the holding. In rare instances, a null value is returned when institutional data is insufficient to determine the security subtype. Possible values: &#x60;asset backed security&#x60;, &#x60;bill&#x60;, &#x60;bond&#x60;, &#x60;bond with warrants&#x60;, &#x60;cash&#x60;, &#x60;cash management bill&#x60;, &#x60;common stock&#x60;, &#x60;convertible bond&#x60;, &#x60;convertible equity&#x60;, &#x60;cryptocurrency&#x60;, &#x60;depositary receipt&#x60;, &#x60;depositary receipt on debt&#x60;, &#x60;etf&#x60;, &#x60;float rating note&#x60;, &#x60;fund of funds&#x60;, &#x60;hedge fund&#x60;, &#x60;limited partnership unit&#x60;, &#x60;medium term note&#x60;, &#x60;money market debt&#x60;, &#x60;mortgage backed security&#x60;, &#x60;municipal bond&#x60;, &#x60;mutual fund&#x60;, &#x60;note&#x60;, &#x60;option&#x60;, &#x60;other&#x60;, &#x60;preferred convertible&#x60;, &#x60;preferred equity&#x60;, &#x60;private equity fund&#x60;, &#x60;real estate investment trust&#x60;, &#x60;structured equity product&#x60;, &#x60;treasury inflation protected securities&#x60;, &#x60;unit&#x60;, &#x60;warrant&#x60;. * @return subtype **/ @javax.annotation.Nullable @ApiModelProperty(value = "The security subtype of the holding. In rare instances, a null value is returned when institutional data is insufficient to determine the security subtype. Possible values: `asset backed security`, `bill`, `bond`, `bond with warrants`, `cash`, `cash management bill`, `common stock`, `convertible bond`, `convertible equity`, `cryptocurrency`, `depositary receipt`, `depositary receipt on debt`, `etf`, `float rating note`, `fund of funds`, `hedge fund`, `limited partnership unit`, `medium term note`, `money market debt`, `mortgage backed security`, `municipal bond`, `mutual fund`, `note`, `option`, `other`, `preferred convertible`, `preferred equity`, `private equity fund`, `real estate investment trust`, `structured equity product`, `treasury inflation protected securities`, `unit`, `warrant`.") public String getSubtype() { return subtype; } public void setSubtype(String subtype) { this.subtype = subtype; } public Security closePrice(Double closePrice) { this.closePrice = closePrice; return this; } /** * Price of the security at the close of the previous trading session. Null for non-public securities. If the security is a foreign currency this field will be updated daily and will be priced in USD. If the security is a cryptocurrency, this field will be updated multiple times a day. As crypto prices can fluctuate quickly and data may become stale sooner than other asset classes, refer to &#x60;update_datetime&#x60; with the time when the price was last updated. * @return closePrice **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Price of the security at the close of the previous trading session. Null for non-public securities. If the security is a foreign currency this field will be updated daily and will be priced in USD. If the security is a cryptocurrency, this field will be updated multiple times a day. As crypto prices can fluctuate quickly and data may become stale sooner than other asset classes, refer to `update_datetime` with the time when the price was last updated. ") public Double getClosePrice() { return closePrice; } public void setClosePrice(Double closePrice) { this.closePrice = closePrice; } public Security closePriceAsOf(LocalDate closePriceAsOf) { this.closePriceAsOf = closePriceAsOf; return this; } /** * Date for which &#x60;close_price&#x60; is accurate. Always &#x60;null&#x60; if &#x60;close_price&#x60; is &#x60;null&#x60;. * @return closePriceAsOf **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Date for which `close_price` is accurate. Always `null` if `close_price` is `null`.") public LocalDate getClosePriceAsOf() { return closePriceAsOf; } public void setClosePriceAsOf(LocalDate closePriceAsOf) { this.closePriceAsOf = closePriceAsOf; } public Security updateDatetime(OffsetDateTime updateDatetime) { this.updateDatetime = updateDatetime; return this; } /** * Date and time at which &#x60;close_price&#x60; is accurate, in ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ). Always &#x60;null&#x60; if &#x60;close_price&#x60; is &#x60;null&#x60;. * @return updateDatetime **/ @javax.annotation.Nullable @ApiModelProperty(value = "Date and time at which `close_price` is accurate, in ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ). Always `null` if `close_price` is `null`.") public OffsetDateTime getUpdateDatetime() { return updateDatetime; } public void setUpdateDatetime(OffsetDateTime updateDatetime) { this.updateDatetime = updateDatetime; } public Security isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO-4217 currency code of the price given. 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 price given. Always `null` if `unofficial_currency_code` is non-`null`.") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public Security unofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; return this; } /** * The unofficial currency code associated with the security. Always &#x60;null&#x60; if &#x60;iso_currency_code&#x60; is non-&#x60;null&#x60;. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported &#x60;iso_currency_code&#x60;s. * @return unofficialCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The unofficial currency code associated with the security. Always `null` if `iso_currency_code` is non-`null`. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported `iso_currency_code`s.") public String getUnofficialCurrencyCode() { return unofficialCurrencyCode; } public void setUnofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; } public Security marketIdentifierCode(String marketIdentifierCode) { this.marketIdentifierCode = marketIdentifierCode; return this; } /** * The ISO-10383 Market Identifier Code of the exchange or market in which the security is being traded. * @return marketIdentifierCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ISO-10383 Market Identifier Code of the exchange or market in which the security is being traded.") public String getMarketIdentifierCode() { return marketIdentifierCode; } public void setMarketIdentifierCode(String marketIdentifierCode) { this.marketIdentifierCode = marketIdentifierCode; } public Security sector(String sector) { this.sector = sector; return this; } /** * The sector classification of the security, such as Finance, Health Technology, etc. For a complete list of possible values, please refer to the [\&quot;Sectors and Industries\&quot; spreadsheet](https://docs.google.com/spreadsheets/d/1L7aXUdqLhxgM8qe7hK67qqKXiUdQqILpwZ0LpxvCVnc). * @return sector **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The sector classification of the security, such as Finance, Health Technology, etc. For a complete list of possible values, please refer to the [\"Sectors and Industries\" spreadsheet](https://docs.google.com/spreadsheets/d/1L7aXUdqLhxgM8qe7hK67qqKXiUdQqILpwZ0LpxvCVnc).") public String getSector() { return sector; } public void setSector(String sector) { this.sector = sector; } public Security industry(String industry) { this.industry = industry; return this; } /** * The industry classification of the security, such as Biotechnology, Airlines, etc. For a complete list of possible values, please refer to the [\&quot;Sectors and Industries\&quot; spreadsheet](https://docs.google.com/spreadsheets/d/1L7aXUdqLhxgM8qe7hK67qqKXiUdQqILpwZ0LpxvCVnc). * @return industry **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The industry classification of the security, such as Biotechnology, Airlines, etc. For a complete list of possible values, please refer to the [\"Sectors and Industries\" spreadsheet](https://docs.google.com/spreadsheets/d/1L7aXUdqLhxgM8qe7hK67qqKXiUdQqILpwZ0LpxvCVnc).") public String getIndustry() { return industry; } public void setIndustry(String industry) { this.industry = industry; } public Security optionContract(OptionContract optionContract) { this.optionContract = optionContract; return this; } /** * Get optionContract * @return optionContract **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public OptionContract getOptionContract() { return optionContract; } public void setOptionContract(OptionContract optionContract) { this.optionContract = optionContract; } public Security fixedIncome(FixedIncome fixedIncome) { this.fixedIncome = fixedIncome; return this; } /** * Get fixedIncome * @return fixedIncome **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public FixedIncome getFixedIncome() { return fixedIncome; } public void setFixedIncome(FixedIncome fixedIncome) { this.fixedIncome = fixedIncome; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Security security = (Security) o; return Objects.equals(this.securityId, security.securityId) && Objects.equals(this.isin, security.isin) && Objects.equals(this.cusip, security.cusip) && Objects.equals(this.sedol, security.sedol) && Objects.equals(this.institutionSecurityId, security.institutionSecurityId) && Objects.equals(this.institutionId, security.institutionId) && Objects.equals(this.proxySecurityId, security.proxySecurityId) && Objects.equals(this.name, security.name) && Objects.equals(this.tickerSymbol, security.tickerSymbol) && Objects.equals(this.isCashEquivalent, security.isCashEquivalent) && Objects.equals(this.type, security.type) && Objects.equals(this.subtype, security.subtype) && Objects.equals(this.closePrice, security.closePrice) && Objects.equals(this.closePriceAsOf, security.closePriceAsOf) && Objects.equals(this.updateDatetime, security.updateDatetime) && Objects.equals(this.isoCurrencyCode, security.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, security.unofficialCurrencyCode) && Objects.equals(this.marketIdentifierCode, security.marketIdentifierCode) && Objects.equals(this.sector, security.sector) && Objects.equals(this.industry, security.industry) && Objects.equals(this.optionContract, security.optionContract) && Objects.equals(this.fixedIncome, security.fixedIncome); } @Override public int hashCode() { return Objects.hash(securityId, isin, cusip, sedol, institutionSecurityId, institutionId, proxySecurityId, name, tickerSymbol, isCashEquivalent, type, subtype, closePrice, closePriceAsOf, updateDatetime, isoCurrencyCode, unofficialCurrencyCode, marketIdentifierCode, sector, industry, optionContract, fixedIncome); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Security {\n"); sb.append(" securityId: ").append(toIndentedString(securityId)).append("\n"); sb.append(" isin: ").append(toIndentedString(isin)).append("\n"); sb.append(" cusip: ").append(toIndentedString(cusip)).append("\n"); sb.append(" sedol: ").append(toIndentedString(sedol)).append("\n"); sb.append(" institutionSecurityId: ").append(toIndentedString(institutionSecurityId)).append("\n"); sb.append(" institutionId: ").append(toIndentedString(institutionId)).append("\n"); sb.append(" proxySecurityId: ").append(toIndentedString(proxySecurityId)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" tickerSymbol: ").append(toIndentedString(tickerSymbol)).append("\n"); sb.append(" isCashEquivalent: ").append(toIndentedString(isCashEquivalent)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" subtype: ").append(toIndentedString(subtype)).append("\n"); sb.append(" closePrice: ").append(toIndentedString(closePrice)).append("\n"); sb.append(" closePriceAsOf: ").append(toIndentedString(closePriceAsOf)).append("\n"); sb.append(" updateDatetime: ").append(toIndentedString(updateDatetime)).append("\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append(" unofficialCurrencyCode: ").append(toIndentedString(unofficialCurrencyCode)).append("\n"); sb.append(" marketIdentifierCode: ").append(toIndentedString(marketIdentifierCode)).append("\n"); sb.append(" sector: ").append(toIndentedString(sector)).append("\n"); sb.append(" industry: ").append(toIndentedString(industry)).append("\n"); sb.append(" optionContract: ").append(toIndentedString(optionContract)).append("\n"); sb.append(" fixedIncome: ").append(toIndentedString(fixedIncome)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaymentInitiationRecipientListRequest.java
src/main/java/com/plaid/client/model/PaymentInitiationRecipientListRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * PaymentInitiationRecipientListRequest defines the request schema for &#x60;/payment_initiation/recipient/list&#x60; */ @ApiModel(description = "PaymentInitiationRecipientListRequest defines the request 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 PaymentInitiationRecipientListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_COUNT = "count"; @SerializedName(SERIALIZED_NAME_COUNT) private Integer count = 100; public static final String SERIALIZED_NAME_CURSOR = "cursor"; @SerializedName(SERIALIZED_NAME_CURSOR) private String cursor; public PaymentInitiationRecipientListRequest 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 PaymentInitiationRecipientListRequest 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 PaymentInitiationRecipientListRequest count(Integer count) { this.count = count; return this; } /** * The maximum number of recipients to return. If &#x60;count&#x60; is not specified, a maximum of 100 recipients will be returned, beginning with the recipient at the cursor (if specified). * minimum: 1 * maximum: 100 * @return count **/ @javax.annotation.Nullable @ApiModelProperty(value = "The maximum number of recipients to return. If `count` is not specified, a maximum of 100 recipients will be returned, beginning with the recipient at the cursor (if specified).") public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } public PaymentInitiationRecipientListRequest cursor(String cursor) { this.cursor = cursor; return this; } /** * A value representing the latest recipient to be included in the response. Set this from &#x60;next_cursor&#x60; received from the previous &#x60;/payment_initiation/recipient/list&#x60; request. If provided, the response will only contain that recipient and recipients created before it. If omitted, the response will contain recipients starting from the most recent, and in descending order by the &#x60;created_at&#x60; time. * @return cursor **/ @javax.annotation.Nullable @ApiModelProperty(value = "A value representing the latest recipient to be included in the response. Set this from `next_cursor` received from the previous `/payment_initiation/recipient/list` request. If provided, the response will only contain that recipient and recipients created before it. If omitted, the response will contain recipients starting from the most recent, and in descending order by the `created_at` time.") public String getCursor() { return cursor; } public void setCursor(String cursor) { this.cursor = cursor; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaymentInitiationRecipientListRequest paymentInitiationRecipientListRequest = (PaymentInitiationRecipientListRequest) o; return Objects.equals(this.clientId, paymentInitiationRecipientListRequest.clientId) && Objects.equals(this.secret, paymentInitiationRecipientListRequest.secret) && Objects.equals(this.count, paymentInitiationRecipientListRequest.count) && Objects.equals(this.cursor, paymentInitiationRecipientListRequest.cursor); } @Override public int hashCode() { return Objects.hash(clientId, secret, count, cursor); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentInitiationRecipientListRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" count: ").append(toIndentedString(count)).append("\n"); sb.append(" cursor: ").append(toIndentedString(cursor)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IdentityVerificationAutofillCreateRequest.java
src/main/java/com/plaid/client/model/IdentityVerificationAutofillCreateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Request input to autofill an Identity Verification */ @ApiModel(description = "Request input to autofill an Identity Verification") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityVerificationAutofillCreateRequest { public static final String SERIALIZED_NAME_IDENTITY_VERIFICATION_ID = "identity_verification_id"; @SerializedName(SERIALIZED_NAME_IDENTITY_VERIFICATION_ID) private String identityVerificationId; 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 IdentityVerificationAutofillCreateRequest identityVerificationId(String identityVerificationId) { this.identityVerificationId = identityVerificationId; return this; } /** * ID of the associated Identity Verification attempt. * @return identityVerificationId **/ @ApiModelProperty(example = "idv_52xR9LKo77r1Np", required = true, value = "ID of the associated Identity Verification attempt.") public String getIdentityVerificationId() { return identityVerificationId; } public void setIdentityVerificationId(String identityVerificationId) { this.identityVerificationId = identityVerificationId; } public IdentityVerificationAutofillCreateRequest 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 IdentityVerificationAutofillCreateRequest 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; } IdentityVerificationAutofillCreateRequest identityVerificationAutofillCreateRequest = (IdentityVerificationAutofillCreateRequest) o; return Objects.equals(this.identityVerificationId, identityVerificationAutofillCreateRequest.identityVerificationId) && Objects.equals(this.clientId, identityVerificationAutofillCreateRequest.clientId) && Objects.equals(this.secret, identityVerificationAutofillCreateRequest.secret); } @Override public int hashCode() { return Objects.hash(identityVerificationId, clientId, secret); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityVerificationAutofillCreateRequest {\n"); sb.append(" identityVerificationId: ").append(toIndentedString(identityVerificationId)).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/DistributionBreakdown.java
src/main/java/com/plaid/client/model/DistributionBreakdown.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Information about the accounts that the payment was distributed to. */ @ApiModel(description = "Information about the accounts that the payment was distributed to.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class DistributionBreakdown { public static final String SERIALIZED_NAME_ACCOUNT_NAME = "account_name"; @SerializedName(SERIALIZED_NAME_ACCOUNT_NAME) private String accountName; public static final String SERIALIZED_NAME_BANK_NAME = "bank_name"; @SerializedName(SERIALIZED_NAME_BANK_NAME) private String bankName; public static final String SERIALIZED_NAME_CURRENT_AMOUNT = "current_amount"; @SerializedName(SERIALIZED_NAME_CURRENT_AMOUNT) private Double currentAmount; public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code"; @SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE) private String isoCurrencyCode; public static final String SERIALIZED_NAME_MASK = "mask"; @SerializedName(SERIALIZED_NAME_MASK) private String mask; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private String type; public static final String SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE = "unofficial_currency_code"; @SerializedName(SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE) private String unofficialCurrencyCode; public static final String SERIALIZED_NAME_CURRENT_PAY = "current_pay"; @SerializedName(SERIALIZED_NAME_CURRENT_PAY) private Pay currentPay; public DistributionBreakdown accountName(String accountName) { this.accountName = accountName; return this; } /** * Name of the account for the given distribution. * @return accountName **/ @javax.annotation.Nullable @ApiModelProperty(value = "Name of the account for the given distribution.") public String getAccountName() { return accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public DistributionBreakdown bankName(String bankName) { this.bankName = bankName; return this; } /** * The name of the bank that the payment is being deposited to. * @return bankName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The name of the bank that the payment is being deposited to.") public String getBankName() { return bankName; } public void setBankName(String bankName) { this.bankName = bankName; } public DistributionBreakdown currentAmount(Double currentAmount) { this.currentAmount = currentAmount; return this; } /** * The amount distributed to this account. * @return currentAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The amount distributed to this account.") public Double getCurrentAmount() { return currentAmount; } public void setCurrentAmount(Double currentAmount) { this.currentAmount = currentAmount; } public DistributionBreakdown isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO-4217 currency code of the net pay. Always &#x60;null&#x60; if &#x60;unofficial_currency_code&#x60; is non-null. * @return isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ISO-4217 currency code of the net pay. Always `null` if `unofficial_currency_code` is non-null.") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public DistributionBreakdown mask(String mask) { this.mask = mask; return this; } /** * The last 2-4 alphanumeric characters of an account&#39;s official account number. * @return mask **/ @javax.annotation.Nullable @ApiModelProperty(value = "The last 2-4 alphanumeric characters of an account's official account number.") public String getMask() { return mask; } public void setMask(String mask) { this.mask = mask; } public DistributionBreakdown type(String type) { this.type = type; return this; } /** * Type of the account that the paystub was sent to (e.g. &#39;checking&#39;). * @return type **/ @javax.annotation.Nullable @ApiModelProperty(value = "Type of the account that the paystub was sent to (e.g. 'checking').") public String getType() { return type; } public void setType(String type) { this.type = type; } public DistributionBreakdown unofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; return this; } /** * The unofficial currency code associated with the net pay. Always &#x60;null&#x60; if &#x60;iso_currency_code&#x60; is non-&#x60;null&#x60;. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported &#x60;iso_currency_code&#x60;s. * @return unofficialCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The unofficial currency code associated with the net pay. Always `null` if `iso_currency_code` is non-`null`. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported `iso_currency_code`s.") public String getUnofficialCurrencyCode() { return unofficialCurrencyCode; } public void setUnofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; } public DistributionBreakdown 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; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } DistributionBreakdown distributionBreakdown = (DistributionBreakdown) o; return Objects.equals(this.accountName, distributionBreakdown.accountName) && Objects.equals(this.bankName, distributionBreakdown.bankName) && Objects.equals(this.currentAmount, distributionBreakdown.currentAmount) && Objects.equals(this.isoCurrencyCode, distributionBreakdown.isoCurrencyCode) && Objects.equals(this.mask, distributionBreakdown.mask) && Objects.equals(this.type, distributionBreakdown.type) && Objects.equals(this.unofficialCurrencyCode, distributionBreakdown.unofficialCurrencyCode) && Objects.equals(this.currentPay, distributionBreakdown.currentPay); } @Override public int hashCode() { return Objects.hash(accountName, bankName, currentAmount, isoCurrencyCode, mask, type, unofficialCurrencyCode, currentPay); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class DistributionBreakdown {\n"); sb.append(" accountName: ").append(toIndentedString(accountName)).append("\n"); sb.append(" bankName: ").append(toIndentedString(bankName)).append("\n"); sb.append(" currentAmount: ").append(toIndentedString(currentAmount)).append("\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append(" mask: ").append(toIndentedString(mask)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" unofficialCurrencyCode: ").append(toIndentedString(unofficialCurrencyCode)).append("\n"); sb.append(" currentPay: ").append(toIndentedString(currentPay)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditBankIncomeErrorType.java
src/main/java/com/plaid/client/model/CreditBankIncomeErrorType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * A broad categorization of the error. Safe for programmatic use. */ @JsonAdapter(CreditBankIncomeErrorType.Adapter.class) public enum CreditBankIncomeErrorType { INTERNAL_SERVER_ERROR("INTERNAL_SERVER_ERROR"), INSUFFICIENT_CREDENTIALS("INSUFFICIENT_CREDENTIALS"), ITEM_LOCKED("ITEM_LOCKED"), USER_SETUP_REQUIRED("USER_SETUP_REQUIRED"), COUNTRY_NOT_SUPPORTED("COUNTRY_NOT_SUPPORTED"), INSTITUTION_DOWN("INSTITUTION_DOWN"), INSTITUTION_NO_LONGER_SUPPORTED("INSTITUTION_NO_LONGER_SUPPORTED"), INSTITUTION_NOT_RESPONDING("INSTITUTION_NOT_RESPONDING"), INVALID_CREDENTIALS("INVALID_CREDENTIALS"), INVALID_MFA("INVALID_MFA"), INVALID_SEND_METHOD("INVALID_SEND_METHOD"), ITEM_LOGIN_REQUIRED("ITEM_LOGIN_REQUIRED"), MFA_NOT_SUPPORTED("MFA_NOT_SUPPORTED"), NO_ACCOUNTS("NO_ACCOUNTS"), ITEM_NOT_SUPPORTED("ITEM_NOT_SUPPORTED"), ACCESS_NOT_GRANTED("ACCESS_NOT_GRANTED"), // 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; CreditBankIncomeErrorType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static CreditBankIncomeErrorType fromValue(String value) { for (CreditBankIncomeErrorType b : CreditBankIncomeErrorType.values()) { if (b.value.equals(value)) { return b; } } return CreditBankIncomeErrorType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<CreditBankIncomeErrorType> { @Override public void write(final JsonWriter jsonWriter, final CreditBankIncomeErrorType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public CreditBankIncomeErrorType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return CreditBankIncomeErrorType.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/LinkTokenTransactions.java
src/main/java/com/plaid/client/model/LinkTokenTransactions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Configuration parameters for the Transactions product */ @ApiModel(description = "Configuration parameters for the Transactions product") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkTokenTransactions { public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) private Integer daysRequested = 90; public LinkTokenTransactions daysRequested(Integer daysRequested) { this.daysRequested = daysRequested; return this; } /** * The maximum number of days of transaction history to request for the Transactions product. The more transaction history is requested, the longer the historical update poll will take. The default value is 90 days. If a value under 30 is provided, a minimum of 30 days of history will be requested. Once Transactions has been added to an Item, this value cannot be updated. Customers using [Recurring Transactions](https://plaid.com/docs/api/products/transactions/#transactionsrecurringget) should request at least 180 days of history for optimal results. * minimum: 1 * maximum: 730 * @return daysRequested **/ @javax.annotation.Nullable @ApiModelProperty(value = "The maximum number of days of transaction history to request for the Transactions product. The more transaction history is requested, the longer the historical update poll will take. The default value is 90 days. If a value under 30 is provided, a minimum of 30 days of history will be requested. Once Transactions has been added to an Item, this value cannot be updated. Customers using [Recurring Transactions](https://plaid.com/docs/api/products/transactions/#transactionsrecurringget) should request at least 180 days of history for optimal results.") public Integer getDaysRequested() { return daysRequested; } public void setDaysRequested(Integer daysRequested) { this.daysRequested = daysRequested; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkTokenTransactions linkTokenTransactions = (LinkTokenTransactions) o; return Objects.equals(this.daysRequested, linkTokenTransactions.daysRequested); } @Override public int hashCode() { return Objects.hash(daysRequested); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkTokenTransactions {\n"); sb.append(" daysRequested: ").append(toIndentedString(daysRequested)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/RecurringInsightsStream.java
src/main/java/com/plaid/client/model/RecurringInsightsStream.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.RecurringTransactionFrequency; import com.plaid.client.model.TransactionStreamAmount; import com.plaid.client.model.TransactionStreamStatus; 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; /** * Insights object for recurring transactions streams. */ @ApiModel(description = "Insights object for recurring transactions streams.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class RecurringInsightsStream { public static final String SERIALIZED_NAME_STREAM_ID = "stream_id"; @SerializedName(SERIALIZED_NAME_STREAM_ID) private String streamId; public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) private String description; public static final String SERIALIZED_NAME_MERCHANT_NAME = "merchant_name"; @SerializedName(SERIALIZED_NAME_MERCHANT_NAME) private String merchantName; public static final String SERIALIZED_NAME_OLDEST_TRANSACTION_DATE = "oldest_transaction_date"; @SerializedName(SERIALIZED_NAME_OLDEST_TRANSACTION_DATE) private LocalDate oldestTransactionDate; public static final String SERIALIZED_NAME_NEWEST_TRANSACTION_DATE = "newest_transaction_date"; @SerializedName(SERIALIZED_NAME_NEWEST_TRANSACTION_DATE) private LocalDate newestTransactionDate; public static final String SERIALIZED_NAME_AVERAGE_DAYS_APART = "average_days_apart"; @SerializedName(SERIALIZED_NAME_AVERAGE_DAYS_APART) private Double averageDaysApart; public static final String SERIALIZED_NAME_FREQUENCY = "frequency"; @SerializedName(SERIALIZED_NAME_FREQUENCY) private RecurringTransactionFrequency frequency; public static final String SERIALIZED_NAME_TRANSACTION_COUNT = "transaction_count"; @SerializedName(SERIALIZED_NAME_TRANSACTION_COUNT) private Integer transactionCount; public static final String SERIALIZED_NAME_TRANSACTION_IDS = "transaction_ids"; @SerializedName(SERIALIZED_NAME_TRANSACTION_IDS) private List<String> transactionIds = null; public static final String SERIALIZED_NAME_AVERAGE_AMOUNT = "average_amount"; @SerializedName(SERIALIZED_NAME_AVERAGE_AMOUNT) private TransactionStreamAmount averageAmount; public static final String SERIALIZED_NAME_NEWEST_TRANSACTION_AMOUNT = "newest_transaction_amount"; @SerializedName(SERIALIZED_NAME_NEWEST_TRANSACTION_AMOUNT) private TransactionStreamAmount newestTransactionAmount; public static final String SERIALIZED_NAME_IS_ACTIVE = "is_active"; @SerializedName(SERIALIZED_NAME_IS_ACTIVE) private Boolean isActive; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private TransactionStreamStatus status; public static final String SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY_PRIMARY = "personal_finance_category_primary"; @SerializedName(SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY_PRIMARY) private String personalFinanceCategoryPrimary; public static final String SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY_DETAILED = "personal_finance_category_detailed"; @SerializedName(SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY_DETAILED) private String personalFinanceCategoryDetailed; public RecurringInsightsStream streamId(String streamId) { this.streamId = streamId; return this; } /** * A unique id for the stream. * @return streamId **/ @ApiModelProperty(required = true, value = "A unique id for the stream.") public String getStreamId() { return streamId; } public void setStreamId(String streamId) { this.streamId = streamId; } public RecurringInsightsStream description(String description) { this.description = description; return this; } /** * The client-provided raw description of the most recent transaction in the stream. * @return description **/ @javax.annotation.Nullable @ApiModelProperty(value = "The client-provided raw description of the most recent transaction in the stream.") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public RecurringInsightsStream merchantName(String merchantName) { this.merchantName = merchantName; return this; } /** * The merchant or primary counterparty associated with the transaction stream. * @return merchantName **/ @ApiModelProperty(required = true, value = "The merchant or primary counterparty associated with the transaction stream.") public String getMerchantName() { return merchantName; } public void setMerchantName(String merchantName) { this.merchantName = merchantName; } public RecurringInsightsStream oldestTransactionDate(LocalDate oldestTransactionDate) { this.oldestTransactionDate = oldestTransactionDate; return this; } /** * The posted date of the earliest transaction in the stream. * @return oldestTransactionDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The posted date of the earliest transaction in the stream.") public LocalDate getOldestTransactionDate() { return oldestTransactionDate; } public void setOldestTransactionDate(LocalDate oldestTransactionDate) { this.oldestTransactionDate = oldestTransactionDate; } public RecurringInsightsStream newestTransactionDate(LocalDate newestTransactionDate) { this.newestTransactionDate = newestTransactionDate; return this; } /** * The posted date of the latest transaction in the stream. * @return newestTransactionDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The posted date of the latest transaction in the stream.") public LocalDate getNewestTransactionDate() { return newestTransactionDate; } public void setNewestTransactionDate(LocalDate newestTransactionDate) { this.newestTransactionDate = newestTransactionDate; } public RecurringInsightsStream averageDaysApart(Double averageDaysApart) { this.averageDaysApart = averageDaysApart; return this; } /** * The average number of days between each of the recurring transactions. * @return averageDaysApart **/ @ApiModelProperty(required = true, value = "The average number of days between each of the recurring transactions.") public Double getAverageDaysApart() { return averageDaysApart; } public void setAverageDaysApart(Double averageDaysApart) { this.averageDaysApart = averageDaysApart; } public RecurringInsightsStream frequency(RecurringTransactionFrequency frequency) { this.frequency = frequency; return this; } /** * Get frequency * @return frequency **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public RecurringTransactionFrequency getFrequency() { return frequency; } public void setFrequency(RecurringTransactionFrequency frequency) { this.frequency = frequency; } public RecurringInsightsStream transactionCount(Integer transactionCount) { this.transactionCount = transactionCount; return this; } /** * The number of transactions in this stream. * @return transactionCount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of transactions in this stream.") public Integer getTransactionCount() { return transactionCount; } public void setTransactionCount(Integer transactionCount) { this.transactionCount = transactionCount; } public RecurringInsightsStream transactionIds(List<String> transactionIds) { this.transactionIds = transactionIds; return this; } public RecurringInsightsStream addTransactionIdsItem(String transactionIdsItem) { if (this.transactionIds == null) { this.transactionIds = new ArrayList<>(); } this.transactionIds.add(transactionIdsItem); return this; } /** * An array of Plaid transaction IDs belonging to the stream, sorted by posted date. * @return transactionIds **/ @javax.annotation.Nullable @ApiModelProperty(value = "An array of Plaid transaction IDs belonging to the stream, sorted by posted date.") public List<String> getTransactionIds() { return transactionIds; } public void setTransactionIds(List<String> transactionIds) { this.transactionIds = transactionIds; } public RecurringInsightsStream averageAmount(TransactionStreamAmount averageAmount) { this.averageAmount = averageAmount; return this; } /** * Get averageAmount * @return averageAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransactionStreamAmount getAverageAmount() { return averageAmount; } public void setAverageAmount(TransactionStreamAmount averageAmount) { this.averageAmount = averageAmount; } public RecurringInsightsStream newestTransactionAmount(TransactionStreamAmount newestTransactionAmount) { this.newestTransactionAmount = newestTransactionAmount; return this; } /** * Get newestTransactionAmount * @return newestTransactionAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransactionStreamAmount getNewestTransactionAmount() { return newestTransactionAmount; } public void setNewestTransactionAmount(TransactionStreamAmount newestTransactionAmount) { this.newestTransactionAmount = newestTransactionAmount; } public RecurringInsightsStream isActive(Boolean isActive) { this.isActive = isActive; return this; } /** * Indicates whether the transaction stream is still live. * @return isActive **/ @ApiModelProperty(required = true, value = "Indicates whether the transaction stream is still live.") public Boolean getIsActive() { return isActive; } public void setIsActive(Boolean isActive) { this.isActive = isActive; } public RecurringInsightsStream status(TransactionStreamStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransactionStreamStatus getStatus() { return status; } public void setStatus(TransactionStreamStatus status) { this.status = status; } public RecurringInsightsStream personalFinanceCategoryPrimary(String personalFinanceCategoryPrimary) { this.personalFinanceCategoryPrimary = personalFinanceCategoryPrimary; return this; } /** * The primary category associated with the transaction stream. * @return personalFinanceCategoryPrimary **/ @javax.annotation.Nullable @ApiModelProperty(value = "The primary category associated with the transaction stream.") public String getPersonalFinanceCategoryPrimary() { return personalFinanceCategoryPrimary; } public void setPersonalFinanceCategoryPrimary(String personalFinanceCategoryPrimary) { this.personalFinanceCategoryPrimary = personalFinanceCategoryPrimary; } public RecurringInsightsStream personalFinanceCategoryDetailed(String personalFinanceCategoryDetailed) { this.personalFinanceCategoryDetailed = personalFinanceCategoryDetailed; return this; } /** * The detailed category associated with the transaction stream. * @return personalFinanceCategoryDetailed **/ @javax.annotation.Nullable @ApiModelProperty(value = "The detailed category associated with the transaction stream.") public String getPersonalFinanceCategoryDetailed() { return personalFinanceCategoryDetailed; } public void setPersonalFinanceCategoryDetailed(String personalFinanceCategoryDetailed) { this.personalFinanceCategoryDetailed = personalFinanceCategoryDetailed; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } RecurringInsightsStream recurringInsightsStream = (RecurringInsightsStream) o; return Objects.equals(this.streamId, recurringInsightsStream.streamId) && Objects.equals(this.description, recurringInsightsStream.description) && Objects.equals(this.merchantName, recurringInsightsStream.merchantName) && Objects.equals(this.oldestTransactionDate, recurringInsightsStream.oldestTransactionDate) && Objects.equals(this.newestTransactionDate, recurringInsightsStream.newestTransactionDate) && Objects.equals(this.averageDaysApart, recurringInsightsStream.averageDaysApart) && Objects.equals(this.frequency, recurringInsightsStream.frequency) && Objects.equals(this.transactionCount, recurringInsightsStream.transactionCount) && Objects.equals(this.transactionIds, recurringInsightsStream.transactionIds) && Objects.equals(this.averageAmount, recurringInsightsStream.averageAmount) && Objects.equals(this.newestTransactionAmount, recurringInsightsStream.newestTransactionAmount) && Objects.equals(this.isActive, recurringInsightsStream.isActive) && Objects.equals(this.status, recurringInsightsStream.status) && Objects.equals(this.personalFinanceCategoryPrimary, recurringInsightsStream.personalFinanceCategoryPrimary) && Objects.equals(this.personalFinanceCategoryDetailed, recurringInsightsStream.personalFinanceCategoryDetailed); } @Override public int hashCode() { return Objects.hash(streamId, description, merchantName, oldestTransactionDate, newestTransactionDate, averageDaysApart, frequency, transactionCount, transactionIds, averageAmount, newestTransactionAmount, isActive, status, personalFinanceCategoryPrimary, personalFinanceCategoryDetailed); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class RecurringInsightsStream {\n"); sb.append(" streamId: ").append(toIndentedString(streamId)).append("\n"); sb.append(" description: ").append(toIndentedString(description)).append("\n"); sb.append(" merchantName: ").append(toIndentedString(merchantName)).append("\n"); sb.append(" oldestTransactionDate: ").append(toIndentedString(oldestTransactionDate)).append("\n"); sb.append(" newestTransactionDate: ").append(toIndentedString(newestTransactionDate)).append("\n"); sb.append(" averageDaysApart: ").append(toIndentedString(averageDaysApart)).append("\n"); sb.append(" frequency: ").append(toIndentedString(frequency)).append("\n"); sb.append(" transactionCount: ").append(toIndentedString(transactionCount)).append("\n"); sb.append(" transactionIds: ").append(toIndentedString(transactionIds)).append("\n"); sb.append(" averageAmount: ").append(toIndentedString(averageAmount)).append("\n"); sb.append(" newestTransactionAmount: ").append(toIndentedString(newestTransactionAmount)).append("\n"); sb.append(" isActive: ").append(toIndentedString(isActive)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" personalFinanceCategoryPrimary: ").append(toIndentedString(personalFinanceCategoryPrimary)).append("\n"); sb.append(" personalFinanceCategoryDetailed: ").append(toIndentedString(personalFinanceCategoryDetailed)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferCapabilitiesGetRfP.java
src/main/java/com/plaid/client/model/TransferCapabilitiesGetRfP.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Contains the supported service types in RfP */ @ApiModel(description = "Contains the supported service types in RfP") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferCapabilitiesGetRfP { public static final String SERIALIZED_NAME_DEBIT = "debit"; @SerializedName(SERIALIZED_NAME_DEBIT) private Boolean debit = false; public static final String SERIALIZED_NAME_MAX_AMOUNT = "max_amount"; @SerializedName(SERIALIZED_NAME_MAX_AMOUNT) private String maxAmount; public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code"; @SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE) private String isoCurrencyCode; public TransferCapabilitiesGetRfP debit(Boolean debit) { this.debit = debit; return this; } /** * When &#x60;true&#x60;, the linked Item&#39;s institution supports RfP debit transfer. * @return debit **/ @javax.annotation.Nullable @ApiModelProperty(value = "When `true`, the linked Item's institution supports RfP debit transfer.") public Boolean getDebit() { return debit; } public void setDebit(Boolean debit) { this.debit = debit; } public TransferCapabilitiesGetRfP maxAmount(String maxAmount) { this.maxAmount = maxAmount; return this; } /** * The maximum amount (decimal string with two digits of precision e.g. \&quot;10.00\&quot;) for originating RfP transfers with the given institution. * @return maxAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The maximum amount (decimal string with two digits of precision e.g. \"10.00\") for originating RfP transfers with the given institution.") public String getMaxAmount() { return maxAmount; } public void setMaxAmount(String maxAmount) { this.maxAmount = maxAmount; } public TransferCapabilitiesGetRfP isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The currency of the &#x60;max_amount&#x60;, e.g. \&quot;USD\&quot;. * @return isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The currency of the `max_amount`, e.g. \"USD\".") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferCapabilitiesGetRfP transferCapabilitiesGetRfP = (TransferCapabilitiesGetRfP) o; return Objects.equals(this.debit, transferCapabilitiesGetRfP.debit) && Objects.equals(this.maxAmount, transferCapabilitiesGetRfP.maxAmount) && Objects.equals(this.isoCurrencyCode, transferCapabilitiesGetRfP.isoCurrencyCode); } @Override public int hashCode() { return Objects.hash(debit, maxAmount, isoCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferCapabilitiesGetRfP {\n"); sb.append(" debit: ").append(toIndentedString(debit)).append("\n"); sb.append(" maxAmount: ").append(toIndentedString(maxAmount)).append("\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PartnerEndCustomerCRAQuestionnaire.java
src/main/java/com/plaid/client/model/PartnerEndCustomerCRAQuestionnaire.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.PartnerEndCustomerCRAPurposes; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The CRA questionnaire for the end customer. */ @ApiModel(description = "The CRA questionnaire for the end customer.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PartnerEndCustomerCRAQuestionnaire { public static final String SERIALIZED_NAME_PURPOSES = "purposes"; @SerializedName(SERIALIZED_NAME_PURPOSES) private PartnerEndCustomerCRAPurposes purposes; public static final String SERIALIZED_NAME_IS_THIRD_PARTY_INVOLVED = "is_third_party_involved"; @SerializedName(SERIALIZED_NAME_IS_THIRD_PARTY_INVOLVED) private Boolean isThirdPartyInvolved; public static final String SERIALIZED_NAME_IS_TECHNICAL_SERVICE_PROVIDER_INVOLVED = "is_technical_service_provider_involved"; @SerializedName(SERIALIZED_NAME_IS_TECHNICAL_SERVICE_PROVIDER_INVOLVED) private Boolean isTechnicalServiceProviderInvolved; public PartnerEndCustomerCRAQuestionnaire purposes(PartnerEndCustomerCRAPurposes purposes) { this.purposes = purposes; return this; } /** * Get purposes * @return purposes **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PartnerEndCustomerCRAPurposes getPurposes() { return purposes; } public void setPurposes(PartnerEndCustomerCRAPurposes purposes) { this.purposes = purposes; } public PartnerEndCustomerCRAQuestionnaire isThirdPartyInvolved(Boolean isThirdPartyInvolved) { this.isThirdPartyInvolved = isThirdPartyInvolved; return this; } /** * Denotes whether the third party is involved. * @return isThirdPartyInvolved **/ @javax.annotation.Nullable @ApiModelProperty(value = "Denotes whether the third party is involved.") public Boolean getIsThirdPartyInvolved() { return isThirdPartyInvolved; } public void setIsThirdPartyInvolved(Boolean isThirdPartyInvolved) { this.isThirdPartyInvolved = isThirdPartyInvolved; } public PartnerEndCustomerCRAQuestionnaire isTechnicalServiceProviderInvolved(Boolean isTechnicalServiceProviderInvolved) { this.isTechnicalServiceProviderInvolved = isTechnicalServiceProviderInvolved; return this; } /** * Denotes whether the technical service provider is involved. * @return isTechnicalServiceProviderInvolved **/ @javax.annotation.Nullable @ApiModelProperty(value = "Denotes whether the technical service provider is involved.") public Boolean getIsTechnicalServiceProviderInvolved() { return isTechnicalServiceProviderInvolved; } public void setIsTechnicalServiceProviderInvolved(Boolean isTechnicalServiceProviderInvolved) { this.isTechnicalServiceProviderInvolved = isTechnicalServiceProviderInvolved; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PartnerEndCustomerCRAQuestionnaire partnerEndCustomerCRAQuestionnaire = (PartnerEndCustomerCRAQuestionnaire) o; return Objects.equals(this.purposes, partnerEndCustomerCRAQuestionnaire.purposes) && Objects.equals(this.isThirdPartyInvolved, partnerEndCustomerCRAQuestionnaire.isThirdPartyInvolved) && Objects.equals(this.isTechnicalServiceProviderInvolved, partnerEndCustomerCRAQuestionnaire.isTechnicalServiceProviderInvolved); } @Override public int hashCode() { return Objects.hash(purposes, isThirdPartyInvolved, isTechnicalServiceProviderInvolved); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PartnerEndCustomerCRAQuestionnaire {\n"); sb.append(" purposes: ").append(toIndentedString(purposes)).append("\n"); sb.append(" isThirdPartyInvolved: ").append(toIndentedString(isThirdPartyInvolved)).append("\n"); sb.append(" isTechnicalServiceProviderInvolved: ").append(toIndentedString(isTechnicalServiceProviderInvolved)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SandboxTransferLedgerDepositSimulateRequest.java
src/main/java/com/plaid/client/model/SandboxTransferLedgerDepositSimulateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.TransferFailure; import com.plaid.client.model.TransferLedgerSweepSimulateEventType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the request schema for &#x60;/sandbox/transfer/ledger/deposit/simulate&#x60; */ @ApiModel(description = "Defines the request schema for `/sandbox/transfer/ledger/deposit/simulate`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SandboxTransferLedgerDepositSimulateRequest { 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 static final String SERIALIZED_NAME_EVENT_TYPE = "event_type"; @SerializedName(SERIALIZED_NAME_EVENT_TYPE) private TransferLedgerSweepSimulateEventType eventType; public static final String SERIALIZED_NAME_FAILURE_REASON = "failure_reason"; @SerializedName(SERIALIZED_NAME_FAILURE_REASON) private TransferFailure failureReason; public SandboxTransferLedgerDepositSimulateRequest 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 SandboxTransferLedgerDepositSimulateRequest 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 SandboxTransferLedgerDepositSimulateRequest sweepId(String sweepId) { this.sweepId = sweepId; return this; } /** * Plaid’s unique identifier for a sweep. * @return sweepId **/ @ApiModelProperty(required = true, value = "Plaid’s unique identifier for a sweep.") public String getSweepId() { return sweepId; } public void setSweepId(String sweepId) { this.sweepId = sweepId; } public SandboxTransferLedgerDepositSimulateRequest eventType(TransferLedgerSweepSimulateEventType eventType) { this.eventType = eventType; return this; } /** * Get eventType * @return eventType **/ @ApiModelProperty(required = true, value = "") public TransferLedgerSweepSimulateEventType getEventType() { return eventType; } public void setEventType(TransferLedgerSweepSimulateEventType eventType) { this.eventType = eventType; } public SandboxTransferLedgerDepositSimulateRequest failureReason(TransferFailure failureReason) { this.failureReason = failureReason; return this; } /** * Get failureReason * @return failureReason **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransferFailure getFailureReason() { return failureReason; } public void setFailureReason(TransferFailure failureReason) { this.failureReason = failureReason; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SandboxTransferLedgerDepositSimulateRequest sandboxTransferLedgerDepositSimulateRequest = (SandboxTransferLedgerDepositSimulateRequest) o; return Objects.equals(this.clientId, sandboxTransferLedgerDepositSimulateRequest.clientId) && Objects.equals(this.secret, sandboxTransferLedgerDepositSimulateRequest.secret) && Objects.equals(this.sweepId, sandboxTransferLedgerDepositSimulateRequest.sweepId) && Objects.equals(this.eventType, sandboxTransferLedgerDepositSimulateRequest.eventType) && Objects.equals(this.failureReason, sandboxTransferLedgerDepositSimulateRequest.failureReason); } @Override public int hashCode() { return Objects.hash(clientId, secret, sweepId, eventType, failureReason); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SandboxTransferLedgerDepositSimulateRequest {\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(" eventType: ").append(toIndentedString(eventType)).append("\n"); sb.append(" failureReason: ").append(toIndentedString(failureReason)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LoanPaymentsCounts.java
src/main/java/com/plaid/client/model/LoanPaymentsCounts.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.math.BigDecimal; /** * Details regarding the number of loan payments */ @ApiModel(description = "Details regarding the number of loan payments") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LoanPaymentsCounts { public static final String SERIALIZED_NAME_BASELINE_COUNT = "baseline_count"; @SerializedName(SERIALIZED_NAME_BASELINE_COUNT) private Double baselineCount; public static final String SERIALIZED_NAME_CURRENT_COUNT = "current_count"; @SerializedName(SERIALIZED_NAME_CURRENT_COUNT) private Double currentCount; public LoanPaymentsCounts baselineCount(Double baselineCount) { this.baselineCount = baselineCount; return this; } /** * The number of loan payments made in the 30 days before the subscription date * @return baselineCount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of loan payments made in the 30 days before the subscription date") public Double getBaselineCount() { return baselineCount; } public void setBaselineCount(Double baselineCount) { this.baselineCount = baselineCount; } public LoanPaymentsCounts currentCount(Double currentCount) { this.currentCount = currentCount; return this; } /** * The current number of loan payments made in the last 30 days * @return currentCount **/ @ApiModelProperty(required = true, value = "The current number of loan payments made in the last 30 days") public Double getCurrentCount() { return currentCount; } public void setCurrentCount(Double currentCount) { this.currentCount = currentCount; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LoanPaymentsCounts loanPaymentsCounts = (LoanPaymentsCounts) o; return Objects.equals(this.baselineCount, loanPaymentsCounts.baselineCount) && Objects.equals(this.currentCount, loanPaymentsCounts.currentCount); } @Override public int hashCode() { return Objects.hash(baselineCount, currentCount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LoanPaymentsCounts {\n"); sb.append(" baselineCount: ").append(toIndentedString(baselineCount)).append("\n"); sb.append(" currentCount: ").append(toIndentedString(currentCount)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TotalReportInflowAmount60d.java
src/main/java/com/plaid/client/model/TotalReportInflowAmount60d.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 last 60 days. 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 last 60 days. This field only takes into account USD transactions from the accounts.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TotalReportInflowAmount60d { 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 TotalReportInflowAmount60d 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 TotalReportInflowAmount60d 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 TotalReportInflowAmount60d 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; } TotalReportInflowAmount60d totalReportInflowAmount60d = (TotalReportInflowAmount60d) o; return Objects.equals(this.amount, totalReportInflowAmount60d.amount) && Objects.equals(this.isoCurrencyCode, totalReportInflowAmount60d.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, totalReportInflowAmount60d.unofficialCurrencyCode); } @Override public int hashCode() { return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TotalReportInflowAmount60d {\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/BankIncomeCompleteWebhook.java
src/main/java/com/plaid/client/model/BankIncomeCompleteWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.BankIncomeCompleteResult; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Fired when a bank income report has finished generating or failed to generate, triggered by calling &#x60;/credit/bank_income/get&#x60; in CRA enabled client. */ @ApiModel(description = "Fired when a bank income report has finished generating or failed to generate, triggered by calling `/credit/bank_income/get` in CRA enabled client.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BankIncomeCompleteWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_RESULT = "result"; @SerializedName(SERIALIZED_NAME_RESULT) private BankIncomeCompleteResult result; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public BankIncomeCompleteWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;INCOME&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`INCOME`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public BankIncomeCompleteWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;BANK_INCOME_COMPLETE&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`BANK_INCOME_COMPLETE`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public BankIncomeCompleteWebhook 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 BankIncomeCompleteWebhook result(BankIncomeCompleteResult result) { this.result = result; return this; } /** * Get result * @return result **/ @ApiModelProperty(required = true, value = "") public BankIncomeCompleteResult getResult() { return result; } public void setResult(BankIncomeCompleteResult result) { this.result = result; } public BankIncomeCompleteWebhook 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; } BankIncomeCompleteWebhook bankIncomeCompleteWebhook = (BankIncomeCompleteWebhook) o; return Objects.equals(this.webhookType, bankIncomeCompleteWebhook.webhookType) && Objects.equals(this.webhookCode, bankIncomeCompleteWebhook.webhookCode) && Objects.equals(this.userId, bankIncomeCompleteWebhook.userId) && Objects.equals(this.result, bankIncomeCompleteWebhook.result) && Objects.equals(this.environment, bankIncomeCompleteWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, userId, result, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BankIncomeCompleteWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" result: ").append(toIndentedString(result)).append("\n"); sb.append(" environment: ").append(toIndentedString(environment)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/DocumentRiskSummary.java
src/main/java/com/plaid/client/model/DocumentRiskSummary.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * A summary across all risk signals associated with a document */ @ApiModel(description = "A summary across all risk signals associated with a document") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class DocumentRiskSummary { public static final String SERIALIZED_NAME_RISK_SCORE = "risk_score"; @SerializedName(SERIALIZED_NAME_RISK_SCORE) private Double riskScore; public DocumentRiskSummary riskScore(Double riskScore) { this.riskScore = riskScore; return this; } /** * A number between 0 and 100, inclusive, where a score closer to 0 indicates a document is likely to be trustworthy and a score closer to 100 indicates a document is likely to be fraudulent. You can automatically reject documents with a high risk score, automatically accept documents with a low risk score, and manually review documents in between. We suggest starting with a threshold of 80 for auto-rejection and 20 for auto-acceptance. As you gather more data points on typical risk scores for your use case, you can tune these parameters to reduce the number of documents undergoing manual review. * @return riskScore **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "A number between 0 and 100, inclusive, where a score closer to 0 indicates a document is likely to be trustworthy and a score closer to 100 indicates a document is likely to be fraudulent. You can automatically reject documents with a high risk score, automatically accept documents with a low risk score, and manually review documents in between. We suggest starting with a threshold of 80 for auto-rejection and 20 for auto-acceptance. As you gather more data points on typical risk scores for your use case, you can tune these parameters to reduce the number of documents undergoing manual review.") public Double getRiskScore() { return riskScore; } public void setRiskScore(Double riskScore) { this.riskScore = riskScore; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } DocumentRiskSummary documentRiskSummary = (DocumentRiskSummary) o; return Objects.equals(this.riskScore, documentRiskSummary.riskScore); } @Override public int hashCode() { return Objects.hash(riskScore); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class DocumentRiskSummary {\n"); sb.append(" riskScore: ").append(toIndentedString(riskScore)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BeaconMatchSummaryCode.java
src/main/java/com/plaid/client/model/BeaconMatchSummaryCode.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 the match type between two Beacon Users. &#x60;match&#x60; indicates that the provided input data was a strong match against the other Beacon User. &#x60;partial_match&#x60; indicates the data approximately matched the other Beacon User. For example, \&quot;Knope\&quot; vs. \&quot;Knope-Wyatt\&quot; for last name. &#x60;no_match&#x60; indicates that Plaid was able to compare this field against the other Beacon User and it did not match the provided input data. &#x60;no_data&#x60; indicates that Plaid was unable to compare this field against the original Beacon User because the field was not present in one of the Beacon Users. */ @JsonAdapter(BeaconMatchSummaryCode.Adapter.class) public enum BeaconMatchSummaryCode { MATCH("match"), PARTIAL_MATCH("partial_match"), NO_MATCH("no_match"), NO_DATA("no_data"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; BeaconMatchSummaryCode(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static BeaconMatchSummaryCode fromValue(String value) { for (BeaconMatchSummaryCode b : BeaconMatchSummaryCode.values()) { if (b.value.equals(value)) { return b; } } return BeaconMatchSummaryCode.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<BeaconMatchSummaryCode> { @Override public void write(final JsonWriter jsonWriter, final BeaconMatchSummaryCode enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public BeaconMatchSummaryCode read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return BeaconMatchSummaryCode.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/BankTransfer.java
src/main/java/com/plaid/client/model/BankTransfer.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.ACHClass; import com.plaid.client.model.BankTransferDirection; import com.plaid.client.model.BankTransferFailure; import com.plaid.client.model.BankTransferNetwork; import com.plaid.client.model.BankTransferStatus; import com.plaid.client.model.BankTransferType; import com.plaid.client.model.BankTransferUser; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; import java.util.HashMap; import java.util.List; import java.util.Map; /** * Represents a bank transfer within the Bank Transfers API. */ @ApiModel(description = "Represents a bank transfer within the Bank Transfers API.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BankTransfer { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) private String id; public static final String SERIALIZED_NAME_ACH_CLASS = "ach_class"; @SerializedName(SERIALIZED_NAME_ACH_CLASS) private ACHClass achClass; public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private BankTransferType type; public static final String SERIALIZED_NAME_USER = "user"; @SerializedName(SERIALIZED_NAME_USER) private BankTransferUser user; public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private String 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_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) private String description; public static final String SERIALIZED_NAME_CREATED = "created"; @SerializedName(SERIALIZED_NAME_CREATED) private OffsetDateTime created; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private BankTransferStatus status; public static final String SERIALIZED_NAME_NETWORK = "network"; @SerializedName(SERIALIZED_NAME_NETWORK) private BankTransferNetwork network; public static final String SERIALIZED_NAME_CANCELLABLE = "cancellable"; @SerializedName(SERIALIZED_NAME_CANCELLABLE) private Boolean cancellable; public static final String SERIALIZED_NAME_FAILURE_REASON = "failure_reason"; @SerializedName(SERIALIZED_NAME_FAILURE_REASON) private BankTransferFailure failureReason; public static final String SERIALIZED_NAME_CUSTOM_TAG = "custom_tag"; @SerializedName(SERIALIZED_NAME_CUSTOM_TAG) private String customTag; public static final String SERIALIZED_NAME_METADATA = "metadata"; @SerializedName(SERIALIZED_NAME_METADATA) private Map<String, String> metadata = new HashMap<>(); public static final String SERIALIZED_NAME_ORIGINATION_ACCOUNT_ID = "origination_account_id"; @SerializedName(SERIALIZED_NAME_ORIGINATION_ACCOUNT_ID) private String originationAccountId; public static final String SERIALIZED_NAME_DIRECTION = "direction"; @SerializedName(SERIALIZED_NAME_DIRECTION) private BankTransferDirection direction; public BankTransfer id(String id) { this.id = id; return this; } /** * Plaid’s unique identifier for a bank transfer. * @return id **/ @ApiModelProperty(required = true, value = "Plaid’s unique identifier for a bank transfer.") public String getId() { return id; } public void setId(String id) { this.id = id; } public BankTransfer achClass(ACHClass achClass) { this.achClass = achClass; return this; } /** * Get achClass * @return achClass **/ @ApiModelProperty(required = true, value = "") public ACHClass getAchClass() { return achClass; } public void setAchClass(ACHClass achClass) { this.achClass = achClass; } public BankTransfer accountId(String accountId) { this.accountId = accountId; return this; } /** * The account ID that should be credited/debited for this bank transfer. * @return accountId **/ @ApiModelProperty(required = true, value = "The account ID that should be credited/debited for this bank transfer.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public BankTransfer type(BankTransferType type) { this.type = type; return this; } /** * Get type * @return type **/ @ApiModelProperty(required = true, value = "") public BankTransferType getType() { return type; } public void setType(BankTransferType type) { this.type = type; } public BankTransfer user(BankTransferUser user) { this.user = user; return this; } /** * Get user * @return user **/ @ApiModelProperty(required = true, value = "") public BankTransferUser getUser() { return user; } public void setUser(BankTransferUser user) { this.user = user; } public BankTransfer amount(String amount) { this.amount = amount; return this; } /** * The amount of the bank transfer (decimal string with two digits of precision e.g. \&quot;10.00\&quot;). * @return amount **/ @ApiModelProperty(required = true, value = "The amount of the bank 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 BankTransfer isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The currency of the transfer amount, e.g. \&quot;USD\&quot; * @return isoCurrencyCode **/ @ApiModelProperty(required = true, value = "The currency of the transfer amount, e.g. \"USD\"") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public BankTransfer description(String description) { this.description = description; return this; } /** * The description of the transfer. * @return description **/ @ApiModelProperty(required = true, value = "The description of the transfer.") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public BankTransfer created(OffsetDateTime created) { this.created = created; return this; } /** * The datetime when this bank transfer was created. This will be of the form &#x60;2006-01-02T15:04:05Z&#x60; * @return created **/ @ApiModelProperty(required = true, value = "The datetime when this bank transfer was created. This will be of the form `2006-01-02T15:04:05Z`") public OffsetDateTime getCreated() { return created; } public void setCreated(OffsetDateTime created) { this.created = created; } public BankTransfer status(BankTransferStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public BankTransferStatus getStatus() { return status; } public void setStatus(BankTransferStatus status) { this.status = status; } public BankTransfer network(BankTransferNetwork network) { this.network = network; return this; } /** * Get network * @return network **/ @ApiModelProperty(required = true, value = "") public BankTransferNetwork getNetwork() { return network; } public void setNetwork(BankTransferNetwork network) { this.network = network; } public BankTransfer cancellable(Boolean cancellable) { this.cancellable = cancellable; return this; } /** * When &#x60;true&#x60;, you can still cancel this bank transfer. * @return cancellable **/ @ApiModelProperty(required = true, value = "When `true`, you can still cancel this bank transfer.") public Boolean getCancellable() { return cancellable; } public void setCancellable(Boolean cancellable) { this.cancellable = cancellable; } public BankTransfer failureReason(BankTransferFailure failureReason) { this.failureReason = failureReason; return this; } /** * Get failureReason * @return failureReason **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public BankTransferFailure getFailureReason() { return failureReason; } public void setFailureReason(BankTransferFailure failureReason) { this.failureReason = failureReason; } public BankTransfer customTag(String customTag) { this.customTag = customTag; return this; } /** * A string containing the custom tag provided by the client in the create request. Will be null if not provided. * @return customTag **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "A string containing the custom tag provided by the client in the create request. Will be null if not provided.") public String getCustomTag() { return customTag; } public void setCustomTag(String customTag) { this.customTag = customTag; } public BankTransfer metadata(Map<String, String> metadata) { this.metadata = metadata; return this; } public BankTransfer putMetadataItem(String key, String metadataItem) { this.metadata.put(key, metadataItem); return this; } /** * The Metadata object is a mapping of client-provided string fields to any string value. The following limitations apply: The JSON values must be Strings (no nested JSON objects allowed) Only ASCII characters may be used Maximum of 50 key/value pairs Maximum key length of 40 characters Maximum value length of 500 characters * @return metadata **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The Metadata object is a mapping of client-provided string fields to any string value. The following limitations apply: The JSON values must be Strings (no nested JSON objects allowed) Only ASCII characters may be used Maximum of 50 key/value pairs Maximum key length of 40 characters Maximum value length of 500 characters ") public Map<String, String> getMetadata() { return metadata; } public void setMetadata(Map<String, String> metadata) { this.metadata = metadata; } public BankTransfer originationAccountId(String originationAccountId) { this.originationAccountId = originationAccountId; return this; } /** * Plaid’s unique identifier for the origination account that was used for this transfer. * @return originationAccountId **/ @ApiModelProperty(required = true, value = "Plaid’s unique identifier for the origination account that was used for this transfer.") public String getOriginationAccountId() { return originationAccountId; } public void setOriginationAccountId(String originationAccountId) { this.originationAccountId = originationAccountId; } public BankTransfer direction(BankTransferDirection direction) { this.direction = direction; return this; } /** * Get direction * @return direction **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public BankTransferDirection getDirection() { return direction; } public void setDirection(BankTransferDirection direction) { this.direction = direction; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BankTransfer bankTransfer = (BankTransfer) o; return Objects.equals(this.id, bankTransfer.id) && Objects.equals(this.achClass, bankTransfer.achClass) && Objects.equals(this.accountId, bankTransfer.accountId) && Objects.equals(this.type, bankTransfer.type) && Objects.equals(this.user, bankTransfer.user) && Objects.equals(this.amount, bankTransfer.amount) && Objects.equals(this.isoCurrencyCode, bankTransfer.isoCurrencyCode) && Objects.equals(this.description, bankTransfer.description) && Objects.equals(this.created, bankTransfer.created) && Objects.equals(this.status, bankTransfer.status) && Objects.equals(this.network, bankTransfer.network) && Objects.equals(this.cancellable, bankTransfer.cancellable) && Objects.equals(this.failureReason, bankTransfer.failureReason) && Objects.equals(this.customTag, bankTransfer.customTag) && Objects.equals(this.metadata, bankTransfer.metadata) && Objects.equals(this.originationAccountId, bankTransfer.originationAccountId) && Objects.equals(this.direction, bankTransfer.direction); } @Override public int hashCode() { return Objects.hash(id, achClass, accountId, type, user, amount, isoCurrencyCode, description, created, status, network, cancellable, failureReason, customTag, metadata, originationAccountId, direction); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BankTransfer {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" achClass: ").append(toIndentedString(achClass)).append("\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" user: ").append(toIndentedString(user)).append("\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append(" description: ").append(toIndentedString(description)).append("\n"); sb.append(" created: ").append(toIndentedString(created)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" network: ").append(toIndentedString(network)).append("\n"); sb.append(" cancellable: ").append(toIndentedString(cancellable)).append("\n"); sb.append(" failureReason: ").append(toIndentedString(failureReason)).append("\n"); sb.append(" customTag: ").append(toIndentedString(customTag)).append("\n"); sb.append(" metadata: ").append(toIndentedString(metadata)).append("\n"); sb.append(" originationAccountId: ").append(toIndentedString(originationAccountId)).append("\n"); sb.append(" direction: ").append(toIndentedString(direction)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WatchlistScreeningEntityGetResponse.java
src/main/java/com/plaid/client/model/WatchlistScreeningEntityGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.EntityWatchlistScreeningSearchTerms; import com.plaid.client.model.WatchlistScreeningAuditTrail; import com.plaid.client.model.WatchlistScreeningStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The entity screening object allows you to represent an entity in your system, update its profile, and search for it on various watchlists. Note: Rejected entity screenings will not receive new hits, regardless of entity program configuration. */ @ApiModel(description = "The entity screening object allows you to represent an entity in your system, update its profile, and search for it on various watchlists. Note: Rejected entity screenings will not receive new hits, regardless of entity program configuration.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WatchlistScreeningEntityGetResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) private String id; public static final String SERIALIZED_NAME_SEARCH_TERMS = "search_terms"; @SerializedName(SERIALIZED_NAME_SEARCH_TERMS) private EntityWatchlistScreeningSearchTerms searchTerms; public static final String SERIALIZED_NAME_ASSIGNEE = "assignee"; @SerializedName(SERIALIZED_NAME_ASSIGNEE) private String assignee; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private WatchlistScreeningStatus status; public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id"; @SerializedName(SERIALIZED_NAME_CLIENT_USER_ID) private String clientUserId; public static final String SERIALIZED_NAME_AUDIT_TRAIL = "audit_trail"; @SerializedName(SERIALIZED_NAME_AUDIT_TRAIL) private WatchlistScreeningAuditTrail auditTrail; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public WatchlistScreeningEntityGetResponse id(String id) { this.id = id; return this; } /** * ID of the associated entity screening. * @return id **/ @ApiModelProperty(example = "entscr_52xR9LKo77r1Np", required = true, value = "ID of the associated entity screening.") public String getId() { return id; } public void setId(String id) { this.id = id; } public WatchlistScreeningEntityGetResponse searchTerms(EntityWatchlistScreeningSearchTerms searchTerms) { this.searchTerms = searchTerms; return this; } /** * Get searchTerms * @return searchTerms **/ @ApiModelProperty(required = true, value = "") public EntityWatchlistScreeningSearchTerms getSearchTerms() { return searchTerms; } public void setSearchTerms(EntityWatchlistScreeningSearchTerms searchTerms) { this.searchTerms = searchTerms; } public WatchlistScreeningEntityGetResponse assignee(String assignee) { this.assignee = assignee; return this; } /** * ID of the associated user. To retrieve the email address or other details of the person corresponding to this id, use &#x60;/dashboard_user/get&#x60;. * @return assignee **/ @javax.annotation.Nullable @ApiModelProperty(example = "54350110fedcbaf01234ffee", required = true, value = "ID of the associated user. To retrieve the email address or other details of the person corresponding to this id, use `/dashboard_user/get`.") public String getAssignee() { return assignee; } public void setAssignee(String assignee) { this.assignee = assignee; } public WatchlistScreeningEntityGetResponse status(WatchlistScreeningStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public WatchlistScreeningStatus getStatus() { return status; } public void setStatus(WatchlistScreeningStatus status) { this.status = status; } public WatchlistScreeningEntityGetResponse 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", 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 WatchlistScreeningEntityGetResponse auditTrail(WatchlistScreeningAuditTrail auditTrail) { this.auditTrail = auditTrail; return this; } /** * Get auditTrail * @return auditTrail **/ @ApiModelProperty(required = true, value = "") public WatchlistScreeningAuditTrail getAuditTrail() { return auditTrail; } public void setAuditTrail(WatchlistScreeningAuditTrail auditTrail) { this.auditTrail = auditTrail; } public WatchlistScreeningEntityGetResponse 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; } WatchlistScreeningEntityGetResponse watchlistScreeningEntityGetResponse = (WatchlistScreeningEntityGetResponse) o; return Objects.equals(this.id, watchlistScreeningEntityGetResponse.id) && Objects.equals(this.searchTerms, watchlistScreeningEntityGetResponse.searchTerms) && Objects.equals(this.assignee, watchlistScreeningEntityGetResponse.assignee) && Objects.equals(this.status, watchlistScreeningEntityGetResponse.status) && Objects.equals(this.clientUserId, watchlistScreeningEntityGetResponse.clientUserId) && Objects.equals(this.auditTrail, watchlistScreeningEntityGetResponse.auditTrail) && Objects.equals(this.requestId, watchlistScreeningEntityGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(id, searchTerms, assignee, status, clientUserId, auditTrail, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WatchlistScreeningEntityGetResponse {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" searchTerms: ").append(toIndentedString(searchTerms)).append("\n"); sb.append(" assignee: ").append(toIndentedString(assignee)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n"); sb.append(" auditTrail: ").append(toIndentedString(auditTrail)).append("\n"); sb.append(" 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/WatchlistScreeningReview.java
src/main/java/com/plaid/client/model/WatchlistScreeningReview.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.WatchlistScreeningAuditTrail; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * A review submitted by a team member for an individual watchlist screening. A review can be either a comment on the current screening state, actions taken against hits attached to the watchlist screening, or both. */ @ApiModel(description = "A review submitted by a team member for an individual watchlist screening. A review can be either a comment on the current screening state, actions taken against hits attached to the watchlist screening, or both.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WatchlistScreeningReview { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) private String id; public static final String SERIALIZED_NAME_CONFIRMED_HITS = "confirmed_hits"; @SerializedName(SERIALIZED_NAME_CONFIRMED_HITS) private List<String> confirmedHits = new ArrayList<>(); public static final String SERIALIZED_NAME_DISMISSED_HITS = "dismissed_hits"; @SerializedName(SERIALIZED_NAME_DISMISSED_HITS) private List<String> dismissedHits = new ArrayList<>(); public static final String SERIALIZED_NAME_COMMENT = "comment"; @SerializedName(SERIALIZED_NAME_COMMENT) private String comment; public static final String SERIALIZED_NAME_AUDIT_TRAIL = "audit_trail"; @SerializedName(SERIALIZED_NAME_AUDIT_TRAIL) private WatchlistScreeningAuditTrail auditTrail; public WatchlistScreeningReview id(String id) { this.id = id; return this; } /** * ID of the associated review. * @return id **/ @ApiModelProperty(example = "rev_aCLNRxK3UVzn2r", required = true, value = "ID of the associated review.") public String getId() { return id; } public void setId(String id) { this.id = id; } public WatchlistScreeningReview confirmedHits(List<String> confirmedHits) { this.confirmedHits = confirmedHits; return this; } public WatchlistScreeningReview addConfirmedHitsItem(String confirmedHitsItem) { this.confirmedHits.add(confirmedHitsItem); return this; } /** * Hits marked as a true positive after thorough manual review. These hits will never recur or be updated once dismissed. In most cases, confirmed hits indicate that the customer should be rejected. * @return confirmedHits **/ @ApiModelProperty(required = true, value = "Hits marked as a true positive after thorough manual review. These hits will never recur or be updated once dismissed. In most cases, confirmed hits indicate that the customer should be rejected.") public List<String> getConfirmedHits() { return confirmedHits; } public void setConfirmedHits(List<String> confirmedHits) { this.confirmedHits = confirmedHits; } public WatchlistScreeningReview dismissedHits(List<String> dismissedHits) { this.dismissedHits = dismissedHits; return this; } public WatchlistScreeningReview addDismissedHitsItem(String dismissedHitsItem) { this.dismissedHits.add(dismissedHitsItem); return this; } /** * Hits marked as a false positive after thorough manual review. These hits will never recur or be updated once dismissed. * @return dismissedHits **/ @ApiModelProperty(required = true, value = "Hits marked as a false positive after thorough manual review. These hits will never recur or be updated once dismissed.") public List<String> getDismissedHits() { return dismissedHits; } public void setDismissedHits(List<String> dismissedHits) { this.dismissedHits = dismissedHits; } public WatchlistScreeningReview comment(String comment) { this.comment = comment; return this; } /** * A comment submitted by a team member as part of reviewing a watchlist screening. * @return comment **/ @javax.annotation.Nullable @ApiModelProperty(example = "These look like legitimate matches, rejecting the customer.", required = true, value = "A comment submitted by a team member as part of reviewing a watchlist screening.") public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; } public WatchlistScreeningReview auditTrail(WatchlistScreeningAuditTrail auditTrail) { this.auditTrail = auditTrail; return this; } /** * Get auditTrail * @return auditTrail **/ @ApiModelProperty(required = true, value = "") public WatchlistScreeningAuditTrail getAuditTrail() { return auditTrail; } public void setAuditTrail(WatchlistScreeningAuditTrail auditTrail) { this.auditTrail = auditTrail; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } WatchlistScreeningReview watchlistScreeningReview = (WatchlistScreeningReview) o; return Objects.equals(this.id, watchlistScreeningReview.id) && Objects.equals(this.confirmedHits, watchlistScreeningReview.confirmedHits) && Objects.equals(this.dismissedHits, watchlistScreeningReview.dismissedHits) && Objects.equals(this.comment, watchlistScreeningReview.comment) && Objects.equals(this.auditTrail, watchlistScreeningReview.auditTrail); } @Override public int hashCode() { return Objects.hash(id, confirmedHits, dismissedHits, comment, auditTrail); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WatchlistScreeningReview {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" confirmedHits: ").append(toIndentedString(confirmedHits)).append("\n"); sb.append(" dismissedHits: ").append(toIndentedString(dismissedHits)).append("\n"); sb.append(" comment: ").append(toIndentedString(comment)).append("\n"); sb.append(" auditTrail: ").append(toIndentedString(auditTrail)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkSessionExit.java
src/main/java/com/plaid/client/model/LinkSessionExit.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.LinkSessionExitMetadata; import com.plaid.client.model.PlaidError; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object representing an [onExit](https://plaid.com/docs/link/web/#onexit) callback from Link. If you are not receiving this field and are instead receiving the deprecated &#x60;on_exit&#x60; field, contact your Account Manager to update your integration. */ @ApiModel(description = "An object representing an [onExit](https://plaid.com/docs/link/web/#onexit) callback from Link. If you are not receiving this field and are instead receiving the deprecated `on_exit` field, contact your Account Manager to update your integration.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkSessionExit { public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private PlaidError error; public static final String SERIALIZED_NAME_METADATA = "metadata"; @SerializedName(SERIALIZED_NAME_METADATA) private LinkSessionExitMetadata metadata; public LinkSessionExit error(PlaidError error) { this.error = error; return this; } /** * Get error * @return error **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public PlaidError getError() { return error; } public void setError(PlaidError error) { this.error = error; } public LinkSessionExit metadata(LinkSessionExitMetadata metadata) { this.metadata = metadata; return this; } /** * Get metadata * @return metadata **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public LinkSessionExitMetadata getMetadata() { return metadata; } public void setMetadata(LinkSessionExitMetadata metadata) { this.metadata = metadata; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkSessionExit linkSessionExit = (LinkSessionExit) o; return Objects.equals(this.error, linkSessionExit.error) && Objects.equals(this.metadata, linkSessionExit.metadata); } @Override public int hashCode() { return Objects.hash(error, metadata); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkSessionExit {\n"); sb.append(" error: ").append(toIndentedString(error)).append("\n"); sb.append(" metadata: ").append(toIndentedString(metadata)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/StatementsRefreshCompleteWebhook.java
src/main/java/com/plaid/client/model/StatementsRefreshCompleteWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.StatementsRefreshCompleteResult; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Fired when refreshed statements extraction is completed or failed to be completed. Triggered by calling &#x60;/statements/refresh&#x60;. */ @ApiModel(description = "Fired when refreshed statements extraction is completed or failed to be completed. Triggered by calling `/statements/refresh`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class StatementsRefreshCompleteWebhook { 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_RESULT = "result"; @SerializedName(SERIALIZED_NAME_RESULT) private StatementsRefreshCompleteResult result; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public StatementsRefreshCompleteWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;STATEMENTS&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`STATEMENTS`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public StatementsRefreshCompleteWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;STATEMENTS_REFRESH_COMPLETE&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`STATEMENTS_REFRESH_COMPLETE`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public StatementsRefreshCompleteWebhook itemId(String itemId) { this.itemId = itemId; return this; } /** * The Plaid Item ID. The &#x60;item_id&#x60; is always unique; linking the same account at the same institution twice will result in two Items with different &#x60;item_id&#x60; values. Like all Plaid identifiers, the &#x60;item_id&#x60; is case-sensitive. * @return itemId **/ @ApiModelProperty(required = true, value = "The Plaid Item ID. The `item_id` is always unique; linking the same account at the same institution twice will result in two Items with different `item_id` values. Like all Plaid identifiers, the `item_id` is case-sensitive.") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public StatementsRefreshCompleteWebhook result(StatementsRefreshCompleteResult result) { this.result = result; return this; } /** * Get result * @return result **/ @ApiModelProperty(required = true, value = "") public StatementsRefreshCompleteResult getResult() { return result; } public void setResult(StatementsRefreshCompleteResult result) { this.result = result; } public StatementsRefreshCompleteWebhook 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; } StatementsRefreshCompleteWebhook statementsRefreshCompleteWebhook = (StatementsRefreshCompleteWebhook) o; return Objects.equals(this.webhookType, statementsRefreshCompleteWebhook.webhookType) && Objects.equals(this.webhookCode, statementsRefreshCompleteWebhook.webhookCode) && Objects.equals(this.itemId, statementsRefreshCompleteWebhook.itemId) && Objects.equals(this.result, statementsRefreshCompleteWebhook.result) && Objects.equals(this.environment, statementsRefreshCompleteWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, itemId, result, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class StatementsRefreshCompleteWebhook {\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(" result: ").append(toIndentedString(result)).append("\n"); sb.append(" environment: ").append(toIndentedString(environment)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraVoaReportAttributes.java
src/main/java/com/plaid/client/model/CraVoaReportAttributes.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.TotalReportInflowAmount; import com.plaid.client.model.TotalReportOutflowAmount; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Attributes for the VOA report. */ @ApiModel(description = "Attributes for the VOA report.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraVoaReportAttributes { public static final String SERIALIZED_NAME_TOTAL_INFLOW_AMOUNT = "total_inflow_amount"; @SerializedName(SERIALIZED_NAME_TOTAL_INFLOW_AMOUNT) private TotalReportInflowAmount totalInflowAmount; public static final String SERIALIZED_NAME_TOTAL_OUTFLOW_AMOUNT = "total_outflow_amount"; @SerializedName(SERIALIZED_NAME_TOTAL_OUTFLOW_AMOUNT) private TotalReportOutflowAmount totalOutflowAmount; public CraVoaReportAttributes totalInflowAmount(TotalReportInflowAmount totalInflowAmount) { this.totalInflowAmount = totalInflowAmount; return this; } /** * Get totalInflowAmount * @return totalInflowAmount **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public TotalReportInflowAmount getTotalInflowAmount() { return totalInflowAmount; } public void setTotalInflowAmount(TotalReportInflowAmount totalInflowAmount) { this.totalInflowAmount = totalInflowAmount; } public CraVoaReportAttributes totalOutflowAmount(TotalReportOutflowAmount totalOutflowAmount) { this.totalOutflowAmount = totalOutflowAmount; return this; } /** * Get totalOutflowAmount * @return totalOutflowAmount **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public TotalReportOutflowAmount getTotalOutflowAmount() { return totalOutflowAmount; } public void setTotalOutflowAmount(TotalReportOutflowAmount totalOutflowAmount) { this.totalOutflowAmount = totalOutflowAmount; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraVoaReportAttributes craVoaReportAttributes = (CraVoaReportAttributes) o; return Objects.equals(this.totalInflowAmount, craVoaReportAttributes.totalInflowAmount) && Objects.equals(this.totalOutflowAmount, craVoaReportAttributes.totalOutflowAmount); } @Override public int hashCode() { return Objects.hash(totalInflowAmount, totalOutflowAmount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraVoaReportAttributes {\n"); sb.append(" totalInflowAmount: ").append(toIndentedString(totalInflowAmount)).append("\n"); sb.append(" totalOutflowAmount: ").append(toIndentedString(totalOutflowAmount)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AccountsGetRequest.java
src/main/java/com/plaid/client/model/AccountsGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.AccountsGetRequestOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * AccountsGetRequest defines the request schema for &#x60;/accounts/get&#x60; */ @ApiModel(description = "AccountsGetRequest defines the request schema for `/accounts/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AccountsGetRequest { 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 AccountsGetRequestOptions options; public AccountsGetRequest 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 AccountsGetRequest 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 AccountsGetRequest 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 AccountsGetRequest options(AccountsGetRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AccountsGetRequestOptions getOptions() { return options; } public void setOptions(AccountsGetRequestOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AccountsGetRequest accountsGetRequest = (AccountsGetRequest) o; return Objects.equals(this.clientId, accountsGetRequest.clientId) && Objects.equals(this.secret, accountsGetRequest.secret) && Objects.equals(this.accessToken, accountsGetRequest.accessToken) && Objects.equals(this.options, accountsGetRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, secret, accessToken, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AccountsGetRequest {\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/OAuthRevokeResponse.java
src/main/java/com/plaid/client/model/OAuthRevokeResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * successful OAuth token revoke response */ @ApiModel(description = "successful OAuth token revoke response") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class OAuthRevokeResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public OAuthRevokeResponse 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; } OAuthRevokeResponse oauthRevokeResponse = (OAuthRevokeResponse) o; return Objects.equals(this.requestId, oauthRevokeResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class OAuthRevokeResponse {\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/MonitoringItemStatusCode.java
src/main/java/com/plaid/client/model/MonitoringItemStatusCode.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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; /** * Enum for the status of the Item&#39;s insights */ @JsonAdapter(MonitoringItemStatusCode.Adapter.class) public enum MonitoringItemStatusCode { AVAILABLE("AVAILABLE"), FAILED("FAILED"), PENDING("PENDING"), // 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; MonitoringItemStatusCode(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static MonitoringItemStatusCode fromValue(String value) { for (MonitoringItemStatusCode b : MonitoringItemStatusCode.values()) { if (b.value.equals(value)) { return b; } } return MonitoringItemStatusCode.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<MonitoringItemStatusCode> { @Override public void write(final JsonWriter jsonWriter, final MonitoringItemStatusCode enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public MonitoringItemStatusCode read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return MonitoringItemStatusCode.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/MonitoringIncomeSource.java
src/main/java/com/plaid/client/model/MonitoringIncomeSource.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CreditBankIncomeCategory; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * An object representing an income source */ @ApiModel(description = "An object representing an income source") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class MonitoringIncomeSource { public static final String SERIALIZED_NAME_INCOME_SOURCE_ID = "income_source_id"; @SerializedName(SERIALIZED_NAME_INCOME_SOURCE_ID) private String incomeSourceId; public static final String SERIALIZED_NAME_INCOME_DESCRIPTION = "income_description"; @SerializedName(SERIALIZED_NAME_INCOME_DESCRIPTION) private String incomeDescription; public static final String SERIALIZED_NAME_INCOME_CATEGORY = "income_category"; @SerializedName(SERIALIZED_NAME_INCOME_CATEGORY) private CreditBankIncomeCategory incomeCategory; public static final String SERIALIZED_NAME_LAST_TRANSACTION_DATE = "last_transaction_date"; @SerializedName(SERIALIZED_NAME_LAST_TRANSACTION_DATE) private LocalDate lastTransactionDate; public MonitoringIncomeSource incomeSourceId(String incomeSourceId) { this.incomeSourceId = incomeSourceId; return this; } /** * A unique identifier for an income source * @return incomeSourceId **/ @ApiModelProperty(required = true, value = "A unique identifier for an income source") public String getIncomeSourceId() { return incomeSourceId; } public void setIncomeSourceId(String incomeSourceId) { this.incomeSourceId = incomeSourceId; } public MonitoringIncomeSource incomeDescription(String incomeDescription) { this.incomeDescription = incomeDescription; return this; } /** * The most common name or original description for the underlying income transactions * @return incomeDescription **/ @ApiModelProperty(required = true, value = "The most common name or original description for the underlying income transactions") public String getIncomeDescription() { return incomeDescription; } public void setIncomeDescription(String incomeDescription) { this.incomeDescription = incomeDescription; } public MonitoringIncomeSource incomeCategory(CreditBankIncomeCategory incomeCategory) { this.incomeCategory = incomeCategory; return this; } /** * Get incomeCategory * @return incomeCategory **/ @ApiModelProperty(required = true, value = "") public CreditBankIncomeCategory getIncomeCategory() { return incomeCategory; } public void setIncomeCategory(CreditBankIncomeCategory incomeCategory) { this.incomeCategory = incomeCategory; } public MonitoringIncomeSource lastTransactionDate(LocalDate lastTransactionDate) { this.lastTransactionDate = lastTransactionDate; return this; } /** * The last detected transaction date for this income source * @return lastTransactionDate **/ @ApiModelProperty(required = true, value = "The last detected transaction date for this income source") public LocalDate getLastTransactionDate() { return lastTransactionDate; } public void setLastTransactionDate(LocalDate lastTransactionDate) { this.lastTransactionDate = lastTransactionDate; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } MonitoringIncomeSource monitoringIncomeSource = (MonitoringIncomeSource) o; return Objects.equals(this.incomeSourceId, monitoringIncomeSource.incomeSourceId) && Objects.equals(this.incomeDescription, monitoringIncomeSource.incomeDescription) && Objects.equals(this.incomeCategory, monitoringIncomeSource.incomeCategory) && Objects.equals(this.lastTransactionDate, monitoringIncomeSource.lastTransactionDate); } @Override public int hashCode() { return Objects.hash(incomeSourceId, incomeDescription, incomeCategory, lastTransactionDate); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class MonitoringIncomeSource {\n"); sb.append(" incomeSourceId: ").append(toIndentedString(incomeSourceId)).append("\n"); sb.append(" incomeDescription: ").append(toIndentedString(incomeDescription)).append("\n"); sb.append(" incomeCategory: ").append(toIndentedString(incomeCategory)).append("\n"); sb.append(" lastTransactionDate: ").append(toIndentedString(lastTransactionDate)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IdentityDocumentsUploadsGetResponse.java
src/main/java/com/plaid/client/model/IdentityDocumentsUploadsGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.AccountIdentityDocumentUpload; import com.plaid.client.model.Item; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * IdentityDocumentsUploadsGetResponse defines the response schema for &#x60;/identity/documents/uploads/get&#x60; */ @ApiModel(description = "IdentityDocumentsUploadsGetResponse defines the response schema for `/identity/documents/uploads/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityDocumentsUploadsGetResponse { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) private List<AccountIdentityDocumentUpload> accounts = new ArrayList<>(); public static final String SERIALIZED_NAME_ITEM = "item"; @SerializedName(SERIALIZED_NAME_ITEM) private Item item; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public IdentityDocumentsUploadsGetResponse accounts(List<AccountIdentityDocumentUpload> accounts) { this.accounts = accounts; return this; } public IdentityDocumentsUploadsGetResponse addAccountsItem(AccountIdentityDocumentUpload accountsItem) { this.accounts.add(accountsItem); return this; } /** * The accounts for which Identity data has been requested * @return accounts **/ @ApiModelProperty(required = true, value = "The accounts for which Identity data has been requested") public List<AccountIdentityDocumentUpload> getAccounts() { return accounts; } public void setAccounts(List<AccountIdentityDocumentUpload> accounts) { this.accounts = accounts; } public IdentityDocumentsUploadsGetResponse item(Item item) { this.item = item; return this; } /** * Get item * @return item **/ @ApiModelProperty(required = true, value = "") public Item getItem() { return item; } public void setItem(Item item) { this.item = item; } public IdentityDocumentsUploadsGetResponse 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; } IdentityDocumentsUploadsGetResponse identityDocumentsUploadsGetResponse = (IdentityDocumentsUploadsGetResponse) o; return Objects.equals(this.accounts, identityDocumentsUploadsGetResponse.accounts) && Objects.equals(this.item, identityDocumentsUploadsGetResponse.item) && Objects.equals(this.requestId, identityDocumentsUploadsGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(accounts, item, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityDocumentsUploadsGetResponse {\n"); sb.append(" accounts: ").append(toIndentedString(accounts)).append("\n"); sb.append(" item: ").append(toIndentedString(item)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/Deductions.java
src/main/java/com/plaid/client/model/Deductions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.DeductionsBreakdown; import com.plaid.client.model.DeductionsTotal; import com.plaid.client.model.Total; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * An object with the deduction information found on a paystub. */ @ApiModel(description = "An object with the deduction information found on a paystub.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Deductions { public static final String SERIALIZED_NAME_SUBTOTALS = "subtotals"; @SerializedName(SERIALIZED_NAME_SUBTOTALS) private List<Total> subtotals = null; public static final String SERIALIZED_NAME_BREAKDOWN = "breakdown"; @SerializedName(SERIALIZED_NAME_BREAKDOWN) private List<DeductionsBreakdown> breakdown = new ArrayList<>(); public static final String SERIALIZED_NAME_TOTALS = "totals"; @SerializedName(SERIALIZED_NAME_TOTALS) private List<Total> totals = null; public static final String SERIALIZED_NAME_TOTAL = "total"; @SerializedName(SERIALIZED_NAME_TOTAL) private DeductionsTotal total; public Deductions subtotals(List<Total> subtotals) { this.subtotals = subtotals; return this; } public Deductions addSubtotalsItem(Total subtotalsItem) { if (this.subtotals == null) { this.subtotals = new ArrayList<>(); } this.subtotals.add(subtotalsItem); return this; } /** * Get subtotals * @return subtotals **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public List<Total> getSubtotals() { return subtotals; } public void setSubtotals(List<Total> subtotals) { this.subtotals = subtotals; } public Deductions breakdown(List<DeductionsBreakdown> breakdown) { this.breakdown = breakdown; return this; } public Deductions addBreakdownItem(DeductionsBreakdown breakdownItem) { this.breakdown.add(breakdownItem); return this; } /** * Get breakdown * @return breakdown **/ @ApiModelProperty(required = true, value = "") public List<DeductionsBreakdown> getBreakdown() { return breakdown; } public void setBreakdown(List<DeductionsBreakdown> breakdown) { this.breakdown = breakdown; } public Deductions totals(List<Total> totals) { this.totals = totals; return this; } public Deductions addTotalsItem(Total totalsItem) { if (this.totals == null) { this.totals = new ArrayList<>(); } this.totals.add(totalsItem); return this; } /** * Get totals * @return totals **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public List<Total> getTotals() { return totals; } public void setTotals(List<Total> totals) { this.totals = totals; } public Deductions total(DeductionsTotal total) { this.total = total; return this; } /** * Get total * @return total **/ @ApiModelProperty(required = true, value = "") public DeductionsTotal getTotal() { return total; } public void setTotal(DeductionsTotal total) { this.total = total; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Deductions deductions = (Deductions) o; return Objects.equals(this.subtotals, deductions.subtotals) && Objects.equals(this.breakdown, deductions.breakdown) && Objects.equals(this.totals, deductions.totals) && Objects.equals(this.total, deductions.total); } @Override public int hashCode() { return Objects.hash(subtotals, breakdown, totals, total); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Deductions {\n"); sb.append(" subtotals: ").append(toIndentedString(subtotals)).append("\n"); sb.append(" breakdown: ").append(toIndentedString(breakdown)).append("\n"); sb.append(" totals: ").append(toIndentedString(totals)).append("\n"); sb.append(" total: ").append(toIndentedString(total)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IncomeVerificationTaxformsGetRequest.java
src/main/java/com/plaid/client/model/IncomeVerificationTaxformsGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * IncomeVerificationTaxformsGetRequest defines the request schema for &#x60;/income/verification/taxforms/get&#x60; */ @ApiModel(description = "IncomeVerificationTaxformsGetRequest defines the request schema for `/income/verification/taxforms/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IncomeVerificationTaxformsGetRequest { 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_INCOME_VERIFICATION_ID = "income_verification_id"; @SerializedName(SERIALIZED_NAME_INCOME_VERIFICATION_ID) private String incomeVerificationId; public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) private String accessToken; public IncomeVerificationTaxformsGetRequest 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 IncomeVerificationTaxformsGetRequest 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 IncomeVerificationTaxformsGetRequest incomeVerificationId(String incomeVerificationId) { this.incomeVerificationId = incomeVerificationId; return this; } /** * The ID of the verification. * @return incomeVerificationId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ID of the verification.") public String getIncomeVerificationId() { return incomeVerificationId; } public void setIncomeVerificationId(String incomeVerificationId) { this.incomeVerificationId = incomeVerificationId; } public IncomeVerificationTaxformsGetRequest accessToken(String accessToken) { this.accessToken = accessToken; return this; } /** * The access token associated with the Item data is being requested for. * @return accessToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "The access token associated with the Item data is being requested for.") public String getAccessToken() { return accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IncomeVerificationTaxformsGetRequest incomeVerificationTaxformsGetRequest = (IncomeVerificationTaxformsGetRequest) o; return Objects.equals(this.clientId, incomeVerificationTaxformsGetRequest.clientId) && Objects.equals(this.secret, incomeVerificationTaxformsGetRequest.secret) && Objects.equals(this.incomeVerificationId, incomeVerificationTaxformsGetRequest.incomeVerificationId) && Objects.equals(this.accessToken, incomeVerificationTaxformsGetRequest.accessToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, incomeVerificationId, accessToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IncomeVerificationTaxformsGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" incomeVerificationId: ").append(toIndentedString(incomeVerificationId)).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/MonitoringInsightsStatus.java
src/main/java/com/plaid/client/model/MonitoringInsightsStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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; /** * Enum for the status of the insights */ @JsonAdapter(MonitoringInsightsStatus.Adapter.class) public enum MonitoringInsightsStatus { AVAILABLE("AVAILABLE"), 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; MonitoringInsightsStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static MonitoringInsightsStatus fromValue(String value) { for (MonitoringInsightsStatus b : MonitoringInsightsStatus.values()) { if (b.value.equals(value)) { return b; } } return MonitoringInsightsStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<MonitoringInsightsStatus> { @Override public void write(final JsonWriter jsonWriter, final MonitoringInsightsStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public MonitoringInsightsStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return MonitoringInsightsStatus.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/CreditBankStatementUploadObject.java
src/main/java/com/plaid/client/model/CreditBankStatementUploadObject.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CreditBankStatementUploadBankAccount; import com.plaid.client.model.CreditBankStatementUploadTransaction; import com.plaid.client.model.CreditDocumentMetadata; 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 data that has been parsed from a user-uploaded bank statement. */ @ApiModel(description = "An object containing data that has been parsed from a user-uploaded bank statement.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditBankStatementUploadObject { public static final String SERIALIZED_NAME_TRANSACTIONS = "transactions"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS) private List<CreditBankStatementUploadTransaction> transactions = new ArrayList<>(); public static final String SERIALIZED_NAME_DOCUMENT_METADATA = "document_metadata"; @SerializedName(SERIALIZED_NAME_DOCUMENT_METADATA) private CreditDocumentMetadata documentMetadata; public static final String SERIALIZED_NAME_DOCUMENT_ID = "document_id"; @SerializedName(SERIALIZED_NAME_DOCUMENT_ID) private String documentId; public static final String SERIALIZED_NAME_BANK_ACCOUNTS = "bank_accounts"; @SerializedName(SERIALIZED_NAME_BANK_ACCOUNTS) private List<CreditBankStatementUploadBankAccount> bankAccounts = new ArrayList<>(); public CreditBankStatementUploadObject transactions(List<CreditBankStatementUploadTransaction> transactions) { this.transactions = transactions; return this; } public CreditBankStatementUploadObject addTransactionsItem(CreditBankStatementUploadTransaction transactionsItem) { this.transactions.add(transactionsItem); return this; } /** * An array of transactions appearing on the bank statement. * @return transactions **/ @ApiModelProperty(required = true, value = "An array of transactions appearing on the bank statement.") public List<CreditBankStatementUploadTransaction> getTransactions() { return transactions; } public void setTransactions(List<CreditBankStatementUploadTransaction> transactions) { this.transactions = transactions; } public CreditBankStatementUploadObject documentMetadata(CreditDocumentMetadata documentMetadata) { this.documentMetadata = documentMetadata; return this; } /** * Get documentMetadata * @return documentMetadata **/ @ApiModelProperty(required = true, value = "") public CreditDocumentMetadata getDocumentMetadata() { return documentMetadata; } public void setDocumentMetadata(CreditDocumentMetadata documentMetadata) { this.documentMetadata = documentMetadata; } public CreditBankStatementUploadObject documentId(String documentId) { this.documentId = documentId; return this; } /** * An identifier of the document referenced by the document metadata. * @return documentId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "An identifier of the document referenced by the document metadata.") public String getDocumentId() { return documentId; } public void setDocumentId(String documentId) { this.documentId = documentId; } public CreditBankStatementUploadObject bankAccounts(List<CreditBankStatementUploadBankAccount> bankAccounts) { this.bankAccounts = bankAccounts; return this; } public CreditBankStatementUploadObject addBankAccountsItem(CreditBankStatementUploadBankAccount bankAccountsItem) { this.bankAccounts.add(bankAccountsItem); return this; } /** * An array of bank accounts associated with the uploaded bank statement. * @return bankAccounts **/ @ApiModelProperty(required = true, value = "An array of bank accounts associated with the uploaded bank statement.") public List<CreditBankStatementUploadBankAccount> getBankAccounts() { return bankAccounts; } public void setBankAccounts(List<CreditBankStatementUploadBankAccount> bankAccounts) { this.bankAccounts = bankAccounts; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditBankStatementUploadObject creditBankStatementUploadObject = (CreditBankStatementUploadObject) o; return Objects.equals(this.transactions, creditBankStatementUploadObject.transactions) && Objects.equals(this.documentMetadata, creditBankStatementUploadObject.documentMetadata) && Objects.equals(this.documentId, creditBankStatementUploadObject.documentId) && Objects.equals(this.bankAccounts, creditBankStatementUploadObject.bankAccounts); } @Override public int hashCode() { return Objects.hash(transactions, documentMetadata, documentId, bankAccounts); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditBankStatementUploadObject {\n"); sb.append(" transactions: ").append(toIndentedString(transactions)).append("\n"); sb.append(" documentMetadata: ").append(toIndentedString(documentMetadata)).append("\n"); sb.append(" documentId: ").append(toIndentedString(documentId)).append("\n"); sb.append(" bankAccounts: ").append(toIndentedString(bankAccounts)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/NumbersACH.java
src/main/java/com/plaid/client/model/NumbersACH.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Identifying information for transferring money to or from a US account via ACH or wire transfer. */ @ApiModel(description = "Identifying information for transferring money to or from a US account via ACH or wire transfer.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class NumbersACH { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) private String account; public static final String SERIALIZED_NAME_IS_TOKENIZED_ACCOUNT_NUMBER = "is_tokenized_account_number"; @SerializedName(SERIALIZED_NAME_IS_TOKENIZED_ACCOUNT_NUMBER) private Boolean isTokenizedAccountNumber; public static final String SERIALIZED_NAME_ROUTING = "routing"; @SerializedName(SERIALIZED_NAME_ROUTING) private String routing; public static final String SERIALIZED_NAME_WIRE_ROUTING = "wire_routing"; @SerializedName(SERIALIZED_NAME_WIRE_ROUTING) private String wireRouting; public static final String SERIALIZED_NAME_CAN_TRANSFER_IN = "can_transfer_in"; @SerializedName(SERIALIZED_NAME_CAN_TRANSFER_IN) private Boolean canTransferIn; public static final String SERIALIZED_NAME_CAN_TRANSFER_OUT = "can_transfer_out"; @SerializedName(SERIALIZED_NAME_CAN_TRANSFER_OUT) private Boolean canTransferOut; public NumbersACH accountId(String accountId) { this.accountId = accountId; return this; } /** * The Plaid account ID associated with the account numbers * @return accountId **/ @ApiModelProperty(required = true, value = "The Plaid account ID associated with the account numbers") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public NumbersACH account(String account) { this.account = account; return this; } /** * The ACH account number for the account. At certain institutions, including Chase, PNC, and (coming May 2025) US Bank, you will receive \&quot;tokenized\&quot; routing and account numbers, which are not the user&#39;s actual account and routing numbers. For important details on how this may impact your integration and on how to avoid fraud, user confusion, and ACH returns, see [Tokenized account numbers](https://plaid.com/docs/auth/#tokenized-account-numbers). * @return account **/ @ApiModelProperty(required = true, value = "The ACH account number for the account. At certain institutions, including Chase, PNC, and (coming May 2025) US Bank, you will receive \"tokenized\" routing and account numbers, which are not the user's actual account and routing numbers. For important details on how this may impact your integration and on how to avoid fraud, user confusion, and ACH returns, see [Tokenized account numbers](https://plaid.com/docs/auth/#tokenized-account-numbers).") public String getAccount() { return account; } public void setAccount(String account) { this.account = account; } public NumbersACH isTokenizedAccountNumber(Boolean isTokenizedAccountNumber) { this.isTokenizedAccountNumber = isTokenizedAccountNumber; return this; } /** * Indicates whether the account number is tokenized by the institution. For important details on how tokenized account numbers may impact your integration, see [Tokenized account numbers](https://plaid.com/docs/auth/#tokenized-account-numbers). * @return isTokenizedAccountNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "Indicates whether the account number is tokenized by the institution. For important details on how tokenized account numbers may impact your integration, see [Tokenized account numbers](https://plaid.com/docs/auth/#tokenized-account-numbers).") public Boolean getIsTokenizedAccountNumber() { return isTokenizedAccountNumber; } public void setIsTokenizedAccountNumber(Boolean isTokenizedAccountNumber) { this.isTokenizedAccountNumber = isTokenizedAccountNumber; } public NumbersACH routing(String routing) { this.routing = routing; return this; } /** * The ACH routing number for the account. This may be a tokenized routing number. For more information, see [Tokenized account numbers](https://plaid.com/docs/auth/#tokenized-account-numbers). * @return routing **/ @ApiModelProperty(required = true, value = "The ACH routing number for the account. This may be a tokenized routing number. For more information, see [Tokenized account numbers](https://plaid.com/docs/auth/#tokenized-account-numbers).") public String getRouting() { return routing; } public void setRouting(String routing) { this.routing = routing; } public NumbersACH wireRouting(String wireRouting) { this.wireRouting = wireRouting; return this; } /** * The wire transfer routing number for the account. This field is only populated if the institution is known to use a separate wire transfer routing number. Many institutions do not have a separate wire routing number and use the ACH routing number for wires instead. It is recommended to have the end user manually confirm their wire routing number before sending any wires to their account, especially if this field is &#x60;null&#x60;. * @return wireRouting **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The wire transfer routing number for the account. This field is only populated if the institution is known to use a separate wire transfer routing number. Many institutions do not have a separate wire routing number and use the ACH routing number for wires instead. It is recommended to have the end user manually confirm their wire routing number before sending any wires to their account, especially if this field is `null`.") public String getWireRouting() { return wireRouting; } public void setWireRouting(String wireRouting) { this.wireRouting = wireRouting; } public NumbersACH canTransferIn(Boolean canTransferIn) { this.canTransferIn = canTransferIn; return this; } /** * Whether the account supports ACH transfers into the account * @return canTransferIn **/ @javax.annotation.Nullable @ApiModelProperty(value = "Whether the account supports ACH transfers into the account") public Boolean getCanTransferIn() { return canTransferIn; } public void setCanTransferIn(Boolean canTransferIn) { this.canTransferIn = canTransferIn; } public NumbersACH canTransferOut(Boolean canTransferOut) { this.canTransferOut = canTransferOut; return this; } /** * Whether the account supports ACH transfers out of the account * @return canTransferOut **/ @javax.annotation.Nullable @ApiModelProperty(value = "Whether the account supports ACH transfers out of the account") public Boolean getCanTransferOut() { return canTransferOut; } public void setCanTransferOut(Boolean canTransferOut) { this.canTransferOut = canTransferOut; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } NumbersACH numbersACH = (NumbersACH) o; return Objects.equals(this.accountId, numbersACH.accountId) && Objects.equals(this.account, numbersACH.account) && Objects.equals(this.isTokenizedAccountNumber, numbersACH.isTokenizedAccountNumber) && Objects.equals(this.routing, numbersACH.routing) && Objects.equals(this.wireRouting, numbersACH.wireRouting) && Objects.equals(this.canTransferIn, numbersACH.canTransferIn) && Objects.equals(this.canTransferOut, numbersACH.canTransferOut); } @Override public int hashCode() { return Objects.hash(accountId, account, isTokenizedAccountNumber, routing, wireRouting, canTransferIn, canTransferOut); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class NumbersACH {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" account: ").append(toIndentedString(account)).append("\n"); sb.append(" isTokenizedAccountNumber: ").append(toIndentedString(isTokenizedAccountNumber)).append("\n"); sb.append(" routing: ").append(toIndentedString(routing)).append("\n"); sb.append(" wireRouting: ").append(toIndentedString(wireRouting)).append("\n"); sb.append(" canTransferIn: ").append(toIndentedString(canTransferIn)).append("\n"); sb.append(" canTransferOut: ").append(toIndentedString(canTransferOut)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferLedgerSweepSimulateEventType.java
src/main/java/com/plaid/client/model/TransferLedgerSweepSimulateEventType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 asynchronous event to be simulated. May be: &#x60;posted&#x60;, &#x60;settled&#x60;, &#x60;failed&#x60;, or &#x60;returned&#x60;. An error will be returned if the event type is incompatible with the current ledger sweep status. Compatible status --&gt; event type transitions include: &#x60;sweep.pending&#x60; --&gt; &#x60;sweep.posted&#x60; &#x60;sweep.pending&#x60; --&gt; &#x60;sweep.failed&#x60; &#x60;sweep.posted&#x60; --&gt; &#x60;sweep.settled&#x60; &#x60;sweep.posted&#x60; --&gt; &#x60;sweep.returned&#x60; &#x60;sweep.settled&#x60; --&gt; &#x60;sweep.returned&#x60; */ @JsonAdapter(TransferLedgerSweepSimulateEventType.Adapter.class) public enum TransferLedgerSweepSimulateEventType { POSTED("sweep.posted"), SETTLED("sweep.settled"), RETURNED("sweep.returned"), FAILED("sweep.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; TransferLedgerSweepSimulateEventType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransferLedgerSweepSimulateEventType fromValue(String value) { for (TransferLedgerSweepSimulateEventType b : TransferLedgerSweepSimulateEventType.values()) { if (b.value.equals(value)) { return b; } } return TransferLedgerSweepSimulateEventType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<TransferLedgerSweepSimulateEventType> { @Override public void write(final JsonWriter jsonWriter, final TransferLedgerSweepSimulateEventType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransferLedgerSweepSimulateEventType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransferLedgerSweepSimulateEventType.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/BankTransferDirection.java
src/main/java/com/plaid/client/model/BankTransferDirection.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * Indicates the direction of the transfer: &#x60;outbound&#x60; for API-initiated transfers, or &#x60;inbound&#x60; for payments received by the FBO account. */ @JsonAdapter(BankTransferDirection.Adapter.class) public enum BankTransferDirection { OUTBOUND("outbound"), INBOUND("inbound"), NULL("null"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; BankTransferDirection(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static BankTransferDirection fromValue(String value) { for (BankTransferDirection b : BankTransferDirection.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<BankTransferDirection> { @Override public void write(final JsonWriter jsonWriter, final BankTransferDirection enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public BankTransferDirection read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return BankTransferDirection.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/EntityDocumentType.java
src/main/java/com/plaid/client/model/EntityDocumentType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 kind of official document represented by this object. &#x60;bik&#x60; - Russian bank code &#x60;business_number&#x60; - A number that uniquely identifies the business within a category of businesses &#x60;imo&#x60; - Number assigned to the entity by the International Maritime Organization &#x60;other&#x60; - Any document not covered by other categories &#x60;swift&#x60; - Number identifying a bank and branch. &#x60;tax_id&#x60; - Identification issued for the purpose of collecting taxes */ @JsonAdapter(EntityDocumentType.Adapter.class) public enum EntityDocumentType { BIK("bik"), BUSINESS_NUMBER("business_number"), IMO("imo"), OTHER("other"), SWIFT("swift"), TAX_ID("tax_id"), // 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; EntityDocumentType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static EntityDocumentType fromValue(String value) { for (EntityDocumentType b : EntityDocumentType.values()) { if (b.value.equals(value)) { return b; } } return EntityDocumentType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<EntityDocumentType> { @Override public void write(final JsonWriter jsonWriter, final EntityDocumentType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public EntityDocumentType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return EntityDocumentType.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/TransactionStream.java
src/main/java/com/plaid/client/model/TransactionStream.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.PersonalFinanceCategory; import com.plaid.client.model.RecurringTransactionFrequency; import com.plaid.client.model.TransactionStreamAmount; import com.plaid.client.model.TransactionStreamStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.List; /** * A grouping of related transactions */ @ApiModel(description = "A grouping of related transactions") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionStream { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_STREAM_ID = "stream_id"; @SerializedName(SERIALIZED_NAME_STREAM_ID) private String streamId; public static final String SERIALIZED_NAME_CATEGORY = "category"; @SerializedName(SERIALIZED_NAME_CATEGORY) private List<String> category = new ArrayList<>(); public static final String SERIALIZED_NAME_CATEGORY_ID = "category_id"; @SerializedName(SERIALIZED_NAME_CATEGORY_ID) private String categoryId; public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) private String description; public static final String SERIALIZED_NAME_MERCHANT_NAME = "merchant_name"; @SerializedName(SERIALIZED_NAME_MERCHANT_NAME) private String merchantName; public static final String SERIALIZED_NAME_FIRST_DATE = "first_date"; @SerializedName(SERIALIZED_NAME_FIRST_DATE) private LocalDate firstDate; public static final String SERIALIZED_NAME_LAST_DATE = "last_date"; @SerializedName(SERIALIZED_NAME_LAST_DATE) private LocalDate lastDate; public static final String SERIALIZED_NAME_PREDICTED_NEXT_DATE = "predicted_next_date"; @SerializedName(SERIALIZED_NAME_PREDICTED_NEXT_DATE) private LocalDate predictedNextDate; public static final String SERIALIZED_NAME_FREQUENCY = "frequency"; @SerializedName(SERIALIZED_NAME_FREQUENCY) private RecurringTransactionFrequency frequency; public static final String SERIALIZED_NAME_TRANSACTION_IDS = "transaction_ids"; @SerializedName(SERIALIZED_NAME_TRANSACTION_IDS) private List<String> transactionIds = new ArrayList<>(); public static final String SERIALIZED_NAME_AVERAGE_AMOUNT = "average_amount"; @SerializedName(SERIALIZED_NAME_AVERAGE_AMOUNT) private TransactionStreamAmount averageAmount; public static final String SERIALIZED_NAME_LAST_AMOUNT = "last_amount"; @SerializedName(SERIALIZED_NAME_LAST_AMOUNT) private TransactionStreamAmount lastAmount; public static final String SERIALIZED_NAME_IS_ACTIVE = "is_active"; @SerializedName(SERIALIZED_NAME_IS_ACTIVE) private Boolean isActive; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private TransactionStreamStatus status; public static final String SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY = "personal_finance_category"; @SerializedName(SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY) private PersonalFinanceCategory personalFinanceCategory; public static final String SERIALIZED_NAME_IS_USER_MODIFIED = "is_user_modified"; @SerializedName(SERIALIZED_NAME_IS_USER_MODIFIED) private Boolean isUserModified; public static final String SERIALIZED_NAME_LAST_USER_MODIFIED_DATETIME = "last_user_modified_datetime"; @SerializedName(SERIALIZED_NAME_LAST_USER_MODIFIED_DATETIME) private OffsetDateTime lastUserModifiedDatetime; public TransactionStream accountId(String accountId) { this.accountId = accountId; return this; } /** * The ID of the account to which the stream belongs * @return accountId **/ @ApiModelProperty(required = true, value = "The ID of the account to which the stream belongs") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public TransactionStream streamId(String streamId) { this.streamId = streamId; return this; } /** * A unique id for the stream * @return streamId **/ @ApiModelProperty(required = true, value = "A unique id for the stream") public String getStreamId() { return streamId; } public void setStreamId(String streamId) { this.streamId = streamId; } public TransactionStream category(List<String> category) { this.category = category; return this; } public TransactionStream addCategoryItem(String categoryItem) { this.category.add(categoryItem); return this; } /** * A hierarchical array of the categories to which this transaction belongs. See [Categories](https://plaid.com/docs/api/products/transactions/#categoriesget). All implementations are encouraged to use the new &#x60;personal_finance_category&#x60; instead of &#x60;category&#x60;. &#x60;personal_finance_category&#x60; provides more meaningful categorization and greater accuracy. * @return category **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "A hierarchical array of the categories to which this transaction belongs. See [Categories](https://plaid.com/docs/api/products/transactions/#categoriesget). All implementations are encouraged to use the new `personal_finance_category` instead of `category`. `personal_finance_category` provides more meaningful categorization and greater accuracy.") public List<String> getCategory() { return category; } public void setCategory(List<String> category) { this.category = category; } public TransactionStream categoryId(String categoryId) { this.categoryId = categoryId; return this; } /** * The ID of the category to which this transaction belongs. See [Categories](https://plaid.com/docs/api/products/transactions/#categoriesget). All implementations are encouraged to use the new &#x60;personal_finance_category&#x60; instead of &#x60;category&#x60;. &#x60;personal_finance_category&#x60; provides more meaningful categorization and greater accuracy. * @return categoryId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ID of the category to which this transaction belongs. See [Categories](https://plaid.com/docs/api/products/transactions/#categoriesget). All implementations are encouraged to use the new `personal_finance_category` instead of `category`. `personal_finance_category` provides more meaningful categorization and greater accuracy.") public String getCategoryId() { return categoryId; } public void setCategoryId(String categoryId) { this.categoryId = categoryId; } public TransactionStream description(String description) { this.description = description; return this; } /** * A description of the transaction stream. * @return description **/ @ApiModelProperty(required = true, value = "A description of the transaction stream.") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public TransactionStream merchantName(String merchantName) { this.merchantName = merchantName; return this; } /** * The merchant associated with the transaction stream. * @return merchantName **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The merchant associated with the transaction stream.") public String getMerchantName() { return merchantName; } public void setMerchantName(String merchantName) { this.merchantName = merchantName; } public TransactionStream firstDate(LocalDate firstDate) { this.firstDate = firstDate; return this; } /** * The posted date of the earliest transaction in the stream. * @return firstDate **/ @ApiModelProperty(required = true, value = "The posted date of the earliest transaction in the stream.") public LocalDate getFirstDate() { return firstDate; } public void setFirstDate(LocalDate firstDate) { this.firstDate = firstDate; } public TransactionStream lastDate(LocalDate lastDate) { this.lastDate = lastDate; return this; } /** * The posted date of the latest transaction in the stream. * @return lastDate **/ @ApiModelProperty(required = true, value = "The posted date of the latest transaction in the stream.") public LocalDate getLastDate() { return lastDate; } public void setLastDate(LocalDate lastDate) { this.lastDate = lastDate; } public TransactionStream predictedNextDate(LocalDate predictedNextDate) { this.predictedNextDate = predictedNextDate; return this; } /** * The predicted date of the next payment. This will only be set if the next payment date can be predicted. * @return predictedNextDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The predicted date of the next payment. This will only be set if the next payment date can be predicted.") public LocalDate getPredictedNextDate() { return predictedNextDate; } public void setPredictedNextDate(LocalDate predictedNextDate) { this.predictedNextDate = predictedNextDate; } public TransactionStream frequency(RecurringTransactionFrequency frequency) { this.frequency = frequency; return this; } /** * Get frequency * @return frequency **/ @ApiModelProperty(required = true, value = "") public RecurringTransactionFrequency getFrequency() { return frequency; } public void setFrequency(RecurringTransactionFrequency frequency) { this.frequency = frequency; } public TransactionStream transactionIds(List<String> transactionIds) { this.transactionIds = transactionIds; return this; } public TransactionStream addTransactionIdsItem(String transactionIdsItem) { this.transactionIds.add(transactionIdsItem); return this; } /** * An array of Plaid transaction IDs belonging to the stream, sorted by posted date. * @return transactionIds **/ @ApiModelProperty(required = true, value = "An array of Plaid transaction IDs belonging to the stream, sorted by posted date.") public List<String> getTransactionIds() { return transactionIds; } public void setTransactionIds(List<String> transactionIds) { this.transactionIds = transactionIds; } public TransactionStream averageAmount(TransactionStreamAmount averageAmount) { this.averageAmount = averageAmount; return this; } /** * Get averageAmount * @return averageAmount **/ @ApiModelProperty(required = true, value = "") public TransactionStreamAmount getAverageAmount() { return averageAmount; } public void setAverageAmount(TransactionStreamAmount averageAmount) { this.averageAmount = averageAmount; } public TransactionStream lastAmount(TransactionStreamAmount lastAmount) { this.lastAmount = lastAmount; return this; } /** * Get lastAmount * @return lastAmount **/ @ApiModelProperty(required = true, value = "") public TransactionStreamAmount getLastAmount() { return lastAmount; } public void setLastAmount(TransactionStreamAmount lastAmount) { this.lastAmount = lastAmount; } public TransactionStream isActive(Boolean isActive) { this.isActive = isActive; return this; } /** * Indicates whether the transaction stream is still live. * @return isActive **/ @ApiModelProperty(required = true, value = "Indicates whether the transaction stream is still live.") public Boolean getIsActive() { return isActive; } public void setIsActive(Boolean isActive) { this.isActive = isActive; } public TransactionStream status(TransactionStreamStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public TransactionStreamStatus getStatus() { return status; } public void setStatus(TransactionStreamStatus status) { this.status = status; } public TransactionStream personalFinanceCategory(PersonalFinanceCategory personalFinanceCategory) { this.personalFinanceCategory = personalFinanceCategory; return this; } /** * Get personalFinanceCategory * @return personalFinanceCategory **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PersonalFinanceCategory getPersonalFinanceCategory() { return personalFinanceCategory; } public void setPersonalFinanceCategory(PersonalFinanceCategory personalFinanceCategory) { this.personalFinanceCategory = personalFinanceCategory; } public TransactionStream isUserModified(Boolean isUserModified) { this.isUserModified = isUserModified; return this; } /** * As the ability to modify transactions streams has been discontinued, this field will always be &#x60;false&#x60;. * @return isUserModified **/ @ApiModelProperty(required = true, value = "As the ability to modify transactions streams has been discontinued, this field will always be `false`.") public Boolean getIsUserModified() { return isUserModified; } public void setIsUserModified(Boolean isUserModified) { this.isUserModified = isUserModified; } public TransactionStream lastUserModifiedDatetime(OffsetDateTime lastUserModifiedDatetime) { this.lastUserModifiedDatetime = lastUserModifiedDatetime; return this; } /** * The date and time of the most recent user modification. This will only be set if &#x60;is_user_modified&#x60; is &#x60;true&#x60;. * @return lastUserModifiedDatetime **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date and time of the most recent user modification. This will only be set if `is_user_modified` is `true`.") public OffsetDateTime getLastUserModifiedDatetime() { return lastUserModifiedDatetime; } public void setLastUserModifiedDatetime(OffsetDateTime lastUserModifiedDatetime) { this.lastUserModifiedDatetime = lastUserModifiedDatetime; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransactionStream transactionStream = (TransactionStream) o; return Objects.equals(this.accountId, transactionStream.accountId) && Objects.equals(this.streamId, transactionStream.streamId) && Objects.equals(this.category, transactionStream.category) && Objects.equals(this.categoryId, transactionStream.categoryId) && Objects.equals(this.description, transactionStream.description) && Objects.equals(this.merchantName, transactionStream.merchantName) && Objects.equals(this.firstDate, transactionStream.firstDate) && Objects.equals(this.lastDate, transactionStream.lastDate) && Objects.equals(this.predictedNextDate, transactionStream.predictedNextDate) && Objects.equals(this.frequency, transactionStream.frequency) && Objects.equals(this.transactionIds, transactionStream.transactionIds) && Objects.equals(this.averageAmount, transactionStream.averageAmount) && Objects.equals(this.lastAmount, transactionStream.lastAmount) && Objects.equals(this.isActive, transactionStream.isActive) && Objects.equals(this.status, transactionStream.status) && Objects.equals(this.personalFinanceCategory, transactionStream.personalFinanceCategory) && Objects.equals(this.isUserModified, transactionStream.isUserModified) && Objects.equals(this.lastUserModifiedDatetime, transactionStream.lastUserModifiedDatetime); } @Override public int hashCode() { return Objects.hash(accountId, streamId, category, categoryId, description, merchantName, firstDate, lastDate, predictedNextDate, frequency, transactionIds, averageAmount, lastAmount, isActive, status, personalFinanceCategory, isUserModified, lastUserModifiedDatetime); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionStream {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" streamId: ").append(toIndentedString(streamId)).append("\n"); sb.append(" category: ").append(toIndentedString(category)).append("\n"); sb.append(" categoryId: ").append(toIndentedString(categoryId)).append("\n"); sb.append(" description: ").append(toIndentedString(description)).append("\n"); sb.append(" merchantName: ").append(toIndentedString(merchantName)).append("\n"); sb.append(" firstDate: ").append(toIndentedString(firstDate)).append("\n"); sb.append(" lastDate: ").append(toIndentedString(lastDate)).append("\n"); sb.append(" predictedNextDate: ").append(toIndentedString(predictedNextDate)).append("\n"); sb.append(" frequency: ").append(toIndentedString(frequency)).append("\n"); sb.append(" transactionIds: ").append(toIndentedString(transactionIds)).append("\n"); sb.append(" averageAmount: ").append(toIndentedString(averageAmount)).append("\n"); sb.append(" lastAmount: ").append(toIndentedString(lastAmount)).append("\n"); sb.append(" isActive: ").append(toIndentedString(isActive)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" personalFinanceCategory: ").append(toIndentedString(personalFinanceCategory)).append("\n"); sb.append(" isUserModified: ").append(toIndentedString(isUserModified)).append("\n"); sb.append(" lastUserModifiedDatetime: ").append(toIndentedString(lastUserModifiedDatetime)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IdentityMatchRequest.java
src/main/java/com/plaid/client/model/IdentityMatchRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.IdentityMatchRequestOptions; import com.plaid.client.model.IdentityMatchUser; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * IdentityMatchRequest defines the request schema for &#x60;/identity/match&#x60; */ @ApiModel(description = "IdentityMatchRequest defines the request schema for `/identity/match`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityMatchRequest { 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_USER = "user"; @SerializedName(SERIALIZED_NAME_USER) private IdentityMatchUser user; public static final String SERIALIZED_NAME_OPTIONS = "options"; @SerializedName(SERIALIZED_NAME_OPTIONS) private IdentityMatchRequestOptions options; public IdentityMatchRequest 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 IdentityMatchRequest 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 IdentityMatchRequest 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 IdentityMatchRequest user(IdentityMatchUser user) { this.user = user; return this; } /** * Get user * @return user **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public IdentityMatchUser getUser() { return user; } public void setUser(IdentityMatchUser user) { this.user = user; } public IdentityMatchRequest options(IdentityMatchRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public IdentityMatchRequestOptions getOptions() { return options; } public void setOptions(IdentityMatchRequestOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IdentityMatchRequest identityMatchRequest = (IdentityMatchRequest) o; return Objects.equals(this.clientId, identityMatchRequest.clientId) && Objects.equals(this.secret, identityMatchRequest.secret) && Objects.equals(this.accessToken, identityMatchRequest.accessToken) && Objects.equals(this.user, identityMatchRequest.user) && Objects.equals(this.options, identityMatchRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, secret, accessToken, user, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityMatchRequest {\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(" user: ").append(toIndentedString(user)).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/InvestmentsAuthDataSources.java
src/main/java/com/plaid/client/model/InvestmentsAuthDataSources.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.DataSources; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Object with metadata pertaining to the source of data for the account numbers, owners, and holdings that are returned. */ @ApiModel(description = "Object with metadata pertaining to the source of data for the account numbers, owners, and holdings that are returned.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InvestmentsAuthDataSources { public static final String SERIALIZED_NAME_NUMBERS = "numbers"; @SerializedName(SERIALIZED_NAME_NUMBERS) private DataSources numbers; public static final String SERIALIZED_NAME_OWNERS = "owners"; @SerializedName(SERIALIZED_NAME_OWNERS) private DataSources owners; public static final String SERIALIZED_NAME_HOLDINGS = "holdings"; @SerializedName(SERIALIZED_NAME_HOLDINGS) private DataSources holdings; public InvestmentsAuthDataSources numbers(DataSources numbers) { this.numbers = numbers; return this; } /** * Get numbers * @return numbers **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public DataSources getNumbers() { return numbers; } public void setNumbers(DataSources numbers) { this.numbers = numbers; } public InvestmentsAuthDataSources owners(DataSources owners) { this.owners = owners; return this; } /** * Get owners * @return owners **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public DataSources getOwners() { return owners; } public void setOwners(DataSources owners) { this.owners = owners; } public InvestmentsAuthDataSources holdings(DataSources holdings) { this.holdings = holdings; return this; } /** * Get holdings * @return holdings **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public DataSources getHoldings() { return holdings; } public void setHoldings(DataSources holdings) { this.holdings = holdings; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } InvestmentsAuthDataSources investmentsAuthDataSources = (InvestmentsAuthDataSources) o; return Objects.equals(this.numbers, investmentsAuthDataSources.numbers) && Objects.equals(this.owners, investmentsAuthDataSources.owners) && Objects.equals(this.holdings, investmentsAuthDataSources.holdings); } @Override public int hashCode() { return Objects.hash(numbers, owners, holdings); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InvestmentsAuthDataSources {\n"); sb.append(" numbers: ").append(toIndentedString(numbers)).append("\n"); sb.append(" owners: ").append(toIndentedString(owners)).append("\n"); sb.append(" holdings: ").append(toIndentedString(holdings)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/InvestmentsHoldingsGetRequest.java
src/main/java/com/plaid/client/model/InvestmentsHoldingsGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.InvestmentHoldingsGetRequestOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * InvestmentsHoldingsGetRequest defines the request schema for &#x60;/investments/holdings/get&#x60; */ @ApiModel(description = "InvestmentsHoldingsGetRequest defines the request schema for `/investments/holdings/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InvestmentsHoldingsGetRequest { 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 InvestmentHoldingsGetRequestOptions options; public InvestmentsHoldingsGetRequest 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 InvestmentsHoldingsGetRequest 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 InvestmentsHoldingsGetRequest 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 InvestmentsHoldingsGetRequest options(InvestmentHoldingsGetRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public InvestmentHoldingsGetRequestOptions getOptions() { return options; } public void setOptions(InvestmentHoldingsGetRequestOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } InvestmentsHoldingsGetRequest investmentsHoldingsGetRequest = (InvestmentsHoldingsGetRequest) o; return Objects.equals(this.clientId, investmentsHoldingsGetRequest.clientId) && Objects.equals(this.secret, investmentsHoldingsGetRequest.secret) && Objects.equals(this.accessToken, investmentsHoldingsGetRequest.accessToken) && Objects.equals(this.options, investmentsHoldingsGetRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, secret, accessToken, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InvestmentsHoldingsGetRequest {\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/CreditRelayGetRequest.java
src/main/java/com/plaid/client/model/CreditRelayGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.ReportType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * CreditRelayGetRequest defines the request schema for &#x60;/credit/relay/get&#x60; */ @ApiModel(description = "CreditRelayGetRequest defines the request schema for `/credit/relay/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditRelayGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_RELAY_TOKEN = "relay_token"; @SerializedName(SERIALIZED_NAME_RELAY_TOKEN) private String relayToken; public static final String SERIALIZED_NAME_REPORT_TYPE = "report_type"; @SerializedName(SERIALIZED_NAME_REPORT_TYPE) private ReportType reportType; public static final String SERIALIZED_NAME_INCLUDE_INSIGHTS = "include_insights"; @SerializedName(SERIALIZED_NAME_INCLUDE_INSIGHTS) private Boolean includeInsights = false; public CreditRelayGetRequest 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 CreditRelayGetRequest 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 CreditRelayGetRequest relayToken(String relayToken) { this.relayToken = relayToken; return this; } /** * The &#x60;relay_token&#x60; granting access to the report you would like to get. * @return relayToken **/ @ApiModelProperty(required = true, value = "The `relay_token` granting access to the report you would like to get.") public String getRelayToken() { return relayToken; } public void setRelayToken(String relayToken) { this.relayToken = relayToken; } public CreditRelayGetRequest reportType(ReportType reportType) { this.reportType = reportType; return this; } /** * Get reportType * @return reportType **/ @ApiModelProperty(required = true, value = "") public ReportType getReportType() { return reportType; } public void setReportType(ReportType reportType) { this.reportType = reportType; } public CreditRelayGetRequest includeInsights(Boolean includeInsights) { this.includeInsights = includeInsights; return this; } /** * &#x60;true&#x60; if you would like to retrieve the Asset Report with Insights, &#x60;false&#x60; otherwise. This field defaults to &#x60;false&#x60; if omitted. * @return includeInsights **/ @javax.annotation.Nullable @ApiModelProperty(value = "`true` if you would like to retrieve the Asset Report with Insights, `false` otherwise. This field defaults to `false` if omitted.") public Boolean getIncludeInsights() { return includeInsights; } public void setIncludeInsights(Boolean includeInsights) { this.includeInsights = includeInsights; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditRelayGetRequest creditRelayGetRequest = (CreditRelayGetRequest) o; return Objects.equals(this.clientId, creditRelayGetRequest.clientId) && Objects.equals(this.secret, creditRelayGetRequest.secret) && Objects.equals(this.relayToken, creditRelayGetRequest.relayToken) && Objects.equals(this.reportType, creditRelayGetRequest.reportType) && Objects.equals(this.includeInsights, creditRelayGetRequest.includeInsights); } @Override public int hashCode() { return Objects.hash(clientId, secret, relayToken, reportType, includeInsights); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditRelayGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" relayToken: ").append(toIndentedString(relayToken)).append("\n"); sb.append(" reportType: ").append(toIndentedString(reportType)).append("\n"); sb.append(" includeInsights: ").append(toIndentedString(includeInsights)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetReportAuditCopyPdfGetRequest.java
src/main/java/com/plaid/client/model/AssetReportAuditCopyPdfGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.AssetReportPDFGetRequestOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * AssetReportAuditCopyPDFGetRequest defines the request schema for &#x60;/asset_report/audit_copy/pdf/get&#x60; */ @ApiModel(description = "AssetReportAuditCopyPDFGetRequest defines the request schema for `/asset_report/audit_copy/pdf/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AssetReportAuditCopyPdfGetRequest { 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_AUDIT_COPY_TOKEN = "audit_copy_token"; @SerializedName(SERIALIZED_NAME_AUDIT_COPY_TOKEN) private String auditCopyToken; public static final String SERIALIZED_NAME_OPTIONS = "options"; @SerializedName(SERIALIZED_NAME_OPTIONS) private AssetReportPDFGetRequestOptions options; public AssetReportAuditCopyPdfGetRequest 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 AssetReportAuditCopyPdfGetRequest 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 AssetReportAuditCopyPdfGetRequest auditCopyToken(String auditCopyToken) { this.auditCopyToken = auditCopyToken; return this; } /** * The &#x60;audit_copy_token&#x60; granting access to the Audit Copy you would like to get as a PDF. * @return auditCopyToken **/ @ApiModelProperty(required = true, value = "The `audit_copy_token` granting access to the Audit Copy you would like to get as a PDF.") public String getAuditCopyToken() { return auditCopyToken; } public void setAuditCopyToken(String auditCopyToken) { this.auditCopyToken = auditCopyToken; } public AssetReportAuditCopyPdfGetRequest options(AssetReportPDFGetRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AssetReportPDFGetRequestOptions getOptions() { return options; } public void setOptions(AssetReportPDFGetRequestOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AssetReportAuditCopyPdfGetRequest assetReportAuditCopyPdfGetRequest = (AssetReportAuditCopyPdfGetRequest) o; return Objects.equals(this.clientId, assetReportAuditCopyPdfGetRequest.clientId) && Objects.equals(this.secret, assetReportAuditCopyPdfGetRequest.secret) && Objects.equals(this.auditCopyToken, assetReportAuditCopyPdfGetRequest.auditCopyToken) && Objects.equals(this.options, assetReportAuditCopyPdfGetRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, secret, auditCopyToken, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetReportAuditCopyPdfGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" auditCopyToken: ").append(toIndentedString(auditCopyToken)).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/SandboxPaymentProfileResetLoginRequest.java
src/main/java/com/plaid/client/model/SandboxPaymentProfileResetLoginRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * SandboxPaymentProfileResetLoginRequest defines the request schema for &#x60;/sandbox/payment_profile/reset_login&#x60; */ @ApiModel(description = "SandboxPaymentProfileResetLoginRequest defines the request schema for `/sandbox/payment_profile/reset_login`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SandboxPaymentProfileResetLoginRequest { 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_PAYMENT_PROFILE_TOKEN = "payment_profile_token"; @SerializedName(SERIALIZED_NAME_PAYMENT_PROFILE_TOKEN) private String paymentProfileToken; public SandboxPaymentProfileResetLoginRequest 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 SandboxPaymentProfileResetLoginRequest 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 SandboxPaymentProfileResetLoginRequest paymentProfileToken(String paymentProfileToken) { this.paymentProfileToken = paymentProfileToken; return this; } /** * A payment profile token associated with the Payment Profile data that is being requested. * @return paymentProfileToken **/ @ApiModelProperty(required = true, value = "A payment profile token associated with the Payment Profile data that is being requested.") public String getPaymentProfileToken() { return paymentProfileToken; } public void setPaymentProfileToken(String paymentProfileToken) { this.paymentProfileToken = paymentProfileToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SandboxPaymentProfileResetLoginRequest sandboxPaymentProfileResetLoginRequest = (SandboxPaymentProfileResetLoginRequest) o; return Objects.equals(this.clientId, sandboxPaymentProfileResetLoginRequest.clientId) && Objects.equals(this.secret, sandboxPaymentProfileResetLoginRequest.secret) && Objects.equals(this.paymentProfileToken, sandboxPaymentProfileResetLoginRequest.paymentProfileToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, paymentProfileToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SandboxPaymentProfileResetLoginRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" paymentProfileToken: ").append(toIndentedString(paymentProfileToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BetaPartnerCustomerV1GetRequest.java
src/main/java/com/plaid/client/model/BetaPartnerCustomerV1GetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Request schema for &#x60;/beta/partner/customer/v1/get&#x60;. */ @ApiModel(description = "Request schema for `/beta/partner/customer/v1/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BetaPartnerCustomerV1GetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_END_CUSTOMER_CLIENT_ID = "end_customer_client_id"; @SerializedName(SERIALIZED_NAME_END_CUSTOMER_CLIENT_ID) private String endCustomerClientId; public BetaPartnerCustomerV1GetRequest 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 BetaPartnerCustomerV1GetRequest 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 BetaPartnerCustomerV1GetRequest endCustomerClientId(String endCustomerClientId) { this.endCustomerClientId = endCustomerClientId; return this; } /** * Get endCustomerClientId * @return endCustomerClientId **/ @ApiModelProperty(required = true, value = "") public String getEndCustomerClientId() { return endCustomerClientId; } public void setEndCustomerClientId(String endCustomerClientId) { this.endCustomerClientId = endCustomerClientId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BetaPartnerCustomerV1GetRequest betaPartnerCustomerV1GetRequest = (BetaPartnerCustomerV1GetRequest) o; return Objects.equals(this.clientId, betaPartnerCustomerV1GetRequest.clientId) && Objects.equals(this.secret, betaPartnerCustomerV1GetRequest.secret) && Objects.equals(this.endCustomerClientId, betaPartnerCustomerV1GetRequest.endCustomerClientId); } @Override public int hashCode() { return Objects.hash(clientId, secret, endCustomerClientId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BetaPartnerCustomerV1GetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" endCustomerClientId: ").append(toIndentedString(endCustomerClientId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/RiskCheckEmailDomainIsFreeProvider.java
src/main/java/com/plaid/client/model/RiskCheckEmailDomainIsFreeProvider.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * Indicates whether the email address domain is a free provider such as Gmail or Hotmail if known. */ @JsonAdapter(RiskCheckEmailDomainIsFreeProvider.Adapter.class) public enum RiskCheckEmailDomainIsFreeProvider { YES("yes"), NO("no"), NO_DATA("no_data"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; RiskCheckEmailDomainIsFreeProvider(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static RiskCheckEmailDomainIsFreeProvider fromValue(String value) { for (RiskCheckEmailDomainIsFreeProvider b : RiskCheckEmailDomainIsFreeProvider.values()) { if (b.value.equals(value)) { return b; } } return RiskCheckEmailDomainIsFreeProvider.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<RiskCheckEmailDomainIsFreeProvider> { @Override public void write(final JsonWriter jsonWriter, final RiskCheckEmailDomainIsFreeProvider enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public RiskCheckEmailDomainIsFreeProvider read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return RiskCheckEmailDomainIsFreeProvider.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/Owner.java
src/main/java/com/plaid/client/model/Owner.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.Address; import com.plaid.client.model.Email; import com.plaid.client.model.PhoneNumber; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Data returned from the financial institution about the owner or owners of an account. Only the &#x60;names&#x60; array must be non-empty. */ @ApiModel(description = "Data returned from the financial institution about the owner or owners of an account. Only the `names` array must be non-empty.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Owner { public static final String SERIALIZED_NAME_NAMES = "names"; @SerializedName(SERIALIZED_NAME_NAMES) private List<String> names = new ArrayList<>(); public static final String SERIALIZED_NAME_PHONE_NUMBERS = "phone_numbers"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBERS) private List<PhoneNumber> phoneNumbers = new ArrayList<>(); public static final String SERIALIZED_NAME_EMAILS = "emails"; @SerializedName(SERIALIZED_NAME_EMAILS) private List<Email> emails = new ArrayList<>(); public static final String SERIALIZED_NAME_ADDRESSES = "addresses"; @SerializedName(SERIALIZED_NAME_ADDRESSES) private List<Address> addresses = new ArrayList<>(); public Owner names(List<String> names) { this.names = names; return this; } public Owner addNamesItem(String namesItem) { this.names.add(namesItem); return this; } /** * A list of names associated with the account by the financial institution. In the case of a joint account, Plaid will make a best effort to report the names of all account holders. If an Item contains multiple accounts with different owner names, some institutions will report all names associated with the Item in each account&#39;s &#x60;names&#x60; array. * @return names **/ @ApiModelProperty(required = true, value = "A list of names associated with the account by the financial institution. In the case of a joint account, Plaid will make a best effort to report the names of all account holders. If an Item contains multiple accounts with different owner names, some institutions will report all names associated with the Item in each account's `names` array.") public List<String> getNames() { return names; } public void setNames(List<String> names) { this.names = names; } public Owner phoneNumbers(List<PhoneNumber> phoneNumbers) { this.phoneNumbers = phoneNumbers; return this; } public Owner addPhoneNumbersItem(PhoneNumber phoneNumbersItem) { this.phoneNumbers.add(phoneNumbersItem); return this; } /** * A list of phone numbers associated with the account by the financial institution. May be an empty array if no relevant information is returned from the financial institution. * @return phoneNumbers **/ @ApiModelProperty(required = true, value = "A list of phone numbers associated with the account by the financial institution. May be an empty array if no relevant information is returned from the financial institution.") public List<PhoneNumber> getPhoneNumbers() { return phoneNumbers; } public void setPhoneNumbers(List<PhoneNumber> phoneNumbers) { this.phoneNumbers = phoneNumbers; } public Owner emails(List<Email> emails) { this.emails = emails; return this; } public Owner addEmailsItem(Email emailsItem) { this.emails.add(emailsItem); return this; } /** * A list of email addresses associated with the account by the financial institution. May be an empty array if no relevant information is returned from the financial institution. * @return emails **/ @ApiModelProperty(required = true, value = "A list of email addresses associated with the account by the financial institution. May be an empty array if no relevant information is returned from the financial institution.") public List<Email> getEmails() { return emails; } public void setEmails(List<Email> emails) { this.emails = emails; } public Owner addresses(List<Address> addresses) { this.addresses = addresses; return this; } public Owner addAddressesItem(Address addressesItem) { this.addresses.add(addressesItem); return this; } /** * Data about the various addresses associated with the account by the financial institution. May be an empty array if no relevant information is returned from the financial institution. * @return addresses **/ @ApiModelProperty(required = true, value = "Data about the various addresses associated with the account by the financial institution. May be an empty array if no relevant information is returned from the financial institution.") public List<Address> getAddresses() { return addresses; } public void setAddresses(List<Address> addresses) { this.addresses = addresses; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Owner owner = (Owner) o; return Objects.equals(this.names, owner.names) && Objects.equals(this.phoneNumbers, owner.phoneNumbers) && Objects.equals(this.emails, owner.emails) && Objects.equals(this.addresses, owner.addresses); } @Override public int hashCode() { return Objects.hash(names, phoneNumbers, emails, addresses); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Owner {\n"); sb.append(" names: ").append(toIndentedString(names)).append("\n"); sb.append(" phoneNumbers: ").append(toIndentedString(phoneNumbers)).append("\n"); sb.append(" emails: ").append(toIndentedString(emails)).append("\n"); sb.append(" addresses: ").append(toIndentedString(addresses)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetReportRefreshRequestOptions.java
src/main/java/com/plaid/client/model/AssetReportRefreshRequestOptions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.AssetReportUser; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An optional object to filter &#x60;/asset_report/refresh&#x60; results. If provided, cannot be &#x60;null&#x60;. If not specified, the &#x60;options&#x60; from the original call to &#x60;/asset_report/create&#x60; will be used. */ @ApiModel(description = "An optional object to filter `/asset_report/refresh` results. If provided, cannot be `null`. If not specified, the `options` from the original call to `/asset_report/create` will be used.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AssetReportRefreshRequestOptions { 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_WEBHOOK = "webhook"; @SerializedName(SERIALIZED_NAME_WEBHOOK) private String webhook; public static final String SERIALIZED_NAME_USER = "user"; @SerializedName(SERIALIZED_NAME_USER) private AssetReportUser user; public AssetReportRefreshRequestOptions 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 AssetReportRefreshRequestOptions webhook(String webhook) { this.webhook = webhook; return this; } /** * URL to which Plaid will send Assets webhooks, for example when the requested Asset Report is ready. * @return webhook **/ @javax.annotation.Nullable @ApiModelProperty(value = "URL to which Plaid will send Assets webhooks, for example when the requested Asset Report is ready.") public String getWebhook() { return webhook; } public void setWebhook(String webhook) { this.webhook = webhook; } public AssetReportRefreshRequestOptions user(AssetReportUser user) { this.user = user; return this; } /** * Get user * @return user **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AssetReportUser getUser() { return user; } public void setUser(AssetReportUser user) { this.user = user; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AssetReportRefreshRequestOptions assetReportRefreshRequestOptions = (AssetReportRefreshRequestOptions) o; return Objects.equals(this.clientReportId, assetReportRefreshRequestOptions.clientReportId) && Objects.equals(this.webhook, assetReportRefreshRequestOptions.webhook) && Objects.equals(this.user, assetReportRefreshRequestOptions.user); } @Override public int hashCode() { return Objects.hash(clientReportId, webhook, user); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetReportRefreshRequestOptions {\n"); sb.append(" clientReportId: ").append(toIndentedString(clientReportId)).append("\n"); sb.append(" webhook: ").append(toIndentedString(webhook)).append("\n"); sb.append(" user: ").append(toIndentedString(user)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ExternalPaymentInitiationConsentOptions.java
src/main/java/com/plaid/client/model/ExternalPaymentInitiationConsentOptions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.PaymentInitiationOptionalRestrictionBacs; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * (Deprecated) Additional payment consent options. Please use &#x60;payer_details&#x60; to specify the account. */ @ApiModel(description = "(Deprecated) Additional payment consent options. Please use `payer_details` to specify the account.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ExternalPaymentInitiationConsentOptions { public static final String SERIALIZED_NAME_REQUEST_REFUND_DETAILS = "request_refund_details"; @SerializedName(SERIALIZED_NAME_REQUEST_REFUND_DETAILS) private Boolean requestRefundDetails; public static final String SERIALIZED_NAME_IBAN = "iban"; @SerializedName(SERIALIZED_NAME_IBAN) private String iban; public static final String SERIALIZED_NAME_BACS = "bacs"; @SerializedName(SERIALIZED_NAME_BACS) private PaymentInitiationOptionalRestrictionBacs bacs; public ExternalPaymentInitiationConsentOptions requestRefundDetails(Boolean requestRefundDetails) { this.requestRefundDetails = requestRefundDetails; return this; } /** * When &#x60;true&#x60;, Plaid will attempt to request refund details from the payee&#39;s financial institution. Support varies between financial institutions and will not always be available. If refund details could be retrieved, they will be available in the &#x60;/payment_initiation/payment/get&#x60; response. * @return requestRefundDetails **/ @javax.annotation.Nullable @ApiModelProperty(value = "When `true`, Plaid will attempt to request refund details from the payee's financial institution. Support varies between financial institutions and will not always be available. If refund details could be retrieved, they will be available in the `/payment_initiation/payment/get` response.") public Boolean getRequestRefundDetails() { return requestRefundDetails; } public void setRequestRefundDetails(Boolean requestRefundDetails) { this.requestRefundDetails = requestRefundDetails; } public ExternalPaymentInitiationConsentOptions iban(String iban) { this.iban = iban; return this; } /** * The International Bank Account Number (IBAN) for the payer&#39;s account. Where possible, the end user will be able to set up payment consent using only the specified bank account if provided. * @return iban **/ @javax.annotation.Nullable @ApiModelProperty(value = "The International Bank Account Number (IBAN) for the payer's account. Where possible, the end user will be able to set up payment consent using only the specified bank account if provided.") public String getIban() { return iban; } public void setIban(String iban) { this.iban = iban; } public ExternalPaymentInitiationConsentOptions bacs(PaymentInitiationOptionalRestrictionBacs bacs) { this.bacs = bacs; return this; } /** * Get bacs * @return bacs **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaymentInitiationOptionalRestrictionBacs getBacs() { return bacs; } public void setBacs(PaymentInitiationOptionalRestrictionBacs bacs) { this.bacs = bacs; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ExternalPaymentInitiationConsentOptions externalPaymentInitiationConsentOptions = (ExternalPaymentInitiationConsentOptions) o; return Objects.equals(this.requestRefundDetails, externalPaymentInitiationConsentOptions.requestRefundDetails) && Objects.equals(this.iban, externalPaymentInitiationConsentOptions.iban) && Objects.equals(this.bacs, externalPaymentInitiationConsentOptions.bacs); } @Override public int hashCode() { return Objects.hash(requestRefundDetails, iban, bacs); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ExternalPaymentInitiationConsentOptions {\n"); sb.append(" requestRefundDetails: ").append(toIndentedString(requestRefundDetails)).append("\n"); sb.append(" iban: ").append(toIndentedString(iban)).append("\n"); sb.append(" bacs: ").append(toIndentedString(bacs)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditSessionBankEmploymentResult.java
src/main/java/com/plaid/client/model/CreditSessionBankEmploymentResult.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CreditSessionBankEmploymentStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The details of a bank employment verification in Link. */ @ApiModel(description = "The details of a bank employment verification in Link.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditSessionBankEmploymentResult { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private CreditSessionBankEmploymentStatus status; public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_ID) private String institutionId; public CreditSessionBankEmploymentResult status(CreditSessionBankEmploymentStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CreditSessionBankEmploymentStatus getStatus() { return status; } public void setStatus(CreditSessionBankEmploymentStatus status) { this.status = status; } public CreditSessionBankEmploymentResult itemId(String itemId) { this.itemId = itemId; return this; } /** * The Plaid Item ID. The &#x60;item_id&#x60; is always unique; linking the same account at the same institution twice will result in two Items with different &#x60;item_id&#x60; values. Like all Plaid identifiers, the &#x60;item_id&#x60; is case-sensitive. * @return itemId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The Plaid Item ID. The `item_id` is always unique; linking the same account at the same institution twice will result in two Items with different `item_id` values. Like all Plaid identifiers, the `item_id` is case-sensitive.") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public CreditSessionBankEmploymentResult institutionId(String institutionId) { this.institutionId = institutionId; return this; } /** * The Plaid Institution ID associated with the Item. * @return institutionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The Plaid Institution ID associated with the Item.") public String getInstitutionId() { return institutionId; } public void setInstitutionId(String institutionId) { this.institutionId = institutionId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditSessionBankEmploymentResult creditSessionBankEmploymentResult = (CreditSessionBankEmploymentResult) o; return Objects.equals(this.status, creditSessionBankEmploymentResult.status) && Objects.equals(this.itemId, creditSessionBankEmploymentResult.itemId) && Objects.equals(this.institutionId, creditSessionBankEmploymentResult.institutionId); } @Override public int hashCode() { return Objects.hash(status, itemId, institutionId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditSessionBankEmploymentResult {\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).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/TransferUserInRequestDeprecated.java
src/main/java/com/plaid/client/model/TransferUserInRequestDeprecated.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.TransferUserAddressInRequest; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The legal name and other information for the account holder. */ @ApiModel(description = "The legal name and other information for the account holder.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferUserInRequestDeprecated { public static final String SERIALIZED_NAME_LEGAL_NAME = "legal_name"; @SerializedName(SERIALIZED_NAME_LEGAL_NAME) private String legalName; public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBER) private String phoneNumber; public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) private String emailAddress; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private TransferUserAddressInRequest address; public TransferUserInRequestDeprecated legalName(String legalName) { this.legalName = legalName; return this; } /** * The user&#39;s legal name. * @return legalName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's legal name.") public String getLegalName() { return legalName; } public void setLegalName(String legalName) { this.legalName = legalName; } public TransferUserInRequestDeprecated phoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; return this; } /** * The user&#39;s phone number. * @return phoneNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's phone number.") public String getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } public TransferUserInRequestDeprecated emailAddress(String emailAddress) { this.emailAddress = emailAddress; return this; } /** * The user&#39;s email address. * @return emailAddress **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's email address.") public String getEmailAddress() { return emailAddress; } public void setEmailAddress(String emailAddress) { this.emailAddress = emailAddress; } public TransferUserInRequestDeprecated address(TransferUserAddressInRequest address) { this.address = address; return this; } /** * Get address * @return address **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransferUserAddressInRequest getAddress() { return address; } public void setAddress(TransferUserAddressInRequest address) { this.address = address; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferUserInRequestDeprecated transferUserInRequestDeprecated = (TransferUserInRequestDeprecated) o; return Objects.equals(this.legalName, transferUserInRequestDeprecated.legalName) && Objects.equals(this.phoneNumber, transferUserInRequestDeprecated.phoneNumber) && Objects.equals(this.emailAddress, transferUserInRequestDeprecated.emailAddress) && Objects.equals(this.address, transferUserInRequestDeprecated.address); } @Override public int hashCode() { return Objects.hash(legalName, phoneNumber, emailAddress, address); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferUserInRequestDeprecated {\n"); sb.append(" legalName: ").append(toIndentedString(legalName)).append("\n"); sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n"); sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferCreateResponse.java
src/main/java/com/plaid/client/model/TransferCreateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.Transfer; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the response schema for &#x60;/transfer/create&#x60; */ @ApiModel(description = "Defines the response schema for `/transfer/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferCreateResponse { public static final String SERIALIZED_NAME_TRANSFER = "transfer"; @SerializedName(SERIALIZED_NAME_TRANSFER) private Transfer transfer; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public TransferCreateResponse transfer(Transfer transfer) { this.transfer = transfer; return this; } /** * Get transfer * @return transfer **/ @ApiModelProperty(required = true, value = "") public Transfer getTransfer() { return transfer; } public void setTransfer(Transfer transfer) { this.transfer = transfer; } public TransferCreateResponse 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; } TransferCreateResponse transferCreateResponse = (TransferCreateResponse) o; return Objects.equals(this.transfer, transferCreateResponse.transfer) && Objects.equals(this.requestId, transferCreateResponse.requestId); } @Override public int hashCode() { return Objects.hash(transfer, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferCreateResponse {\n"); sb.append(" transfer: ").append(toIndentedString(transfer)).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/LinkDeliveryCreateResponse.java
src/main/java/com/plaid/client/model/LinkDeliveryCreateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * LinkDeliveryCreateResponse defines the response schema for &#x60;/link_delivery/create&#x60; */ @ApiModel(description = "LinkDeliveryCreateResponse defines the response schema for `/link_delivery/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkDeliveryCreateResponse { public static final String SERIALIZED_NAME_LINK_DELIVERY_URL = "link_delivery_url"; @SerializedName(SERIALIZED_NAME_LINK_DELIVERY_URL) private String linkDeliveryUrl; public static final String SERIALIZED_NAME_LINK_DELIVERY_SESSION_ID = "link_delivery_session_id"; @SerializedName(SERIALIZED_NAME_LINK_DELIVERY_SESSION_ID) private String linkDeliverySessionId; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public LinkDeliveryCreateResponse linkDeliveryUrl(String linkDeliveryUrl) { this.linkDeliveryUrl = linkDeliveryUrl; return this; } /** * The URL to the Hosted Link session, which will be delivered by the specified delivery method. * @return linkDeliveryUrl **/ @ApiModelProperty(required = true, value = "The URL to the Hosted Link session, which will be delivered by the specified delivery method.") public String getLinkDeliveryUrl() { return linkDeliveryUrl; } public void setLinkDeliveryUrl(String linkDeliveryUrl) { this.linkDeliveryUrl = linkDeliveryUrl; } public LinkDeliveryCreateResponse linkDeliverySessionId(String linkDeliverySessionId) { this.linkDeliverySessionId = linkDeliverySessionId; return this; } /** * The ID for the Hosted Link session. Same as the &#x60;link_token&#x60; string excluding the \&quot;link-{env}-\&quot; prefix. * @return linkDeliverySessionId **/ @ApiModelProperty(required = true, value = "The ID for the Hosted Link session. Same as the `link_token` string excluding the \"link-{env}-\" prefix.") public String getLinkDeliverySessionId() { return linkDeliverySessionId; } public void setLinkDeliverySessionId(String linkDeliverySessionId) { this.linkDeliverySessionId = linkDeliverySessionId; } public LinkDeliveryCreateResponse 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; } LinkDeliveryCreateResponse linkDeliveryCreateResponse = (LinkDeliveryCreateResponse) o; return Objects.equals(this.linkDeliveryUrl, linkDeliveryCreateResponse.linkDeliveryUrl) && Objects.equals(this.linkDeliverySessionId, linkDeliveryCreateResponse.linkDeliverySessionId) && Objects.equals(this.requestId, linkDeliveryCreateResponse.requestId); } @Override public int hashCode() { return Objects.hash(linkDeliveryUrl, linkDeliverySessionId, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkDeliveryCreateResponse {\n"); sb.append(" linkDeliveryUrl: ").append(toIndentedString(linkDeliveryUrl)).append("\n"); sb.append(" linkDeliverySessionId: ").append(toIndentedString(linkDeliverySessionId)).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/DocumentAnalysis.java
src/main/java/com/plaid/client/model/DocumentAnalysis.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.AAMVAAnalysis; import com.plaid.client.model.DocumentAuthenticityMatchCode; import com.plaid.client.model.FraudAnalysisDetails; import com.plaid.client.model.HumanReview; import com.plaid.client.model.ImageQuality; import com.plaid.client.model.ImageQualityDetails; import com.plaid.client.model.PhysicalDocumentExtractedDataAnalysis; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * High level descriptions of how the associated document was processed. If a document fails verification, the details in the &#x60;analysis&#x60; object should help clarify why the document was rejected. */ @ApiModel(description = "High level descriptions of how the associated document was processed. If a document fails verification, the details in the `analysis` object should help clarify why the document was rejected.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class DocumentAnalysis { public static final String SERIALIZED_NAME_AUTHENTICITY = "authenticity"; @SerializedName(SERIALIZED_NAME_AUTHENTICITY) private DocumentAuthenticityMatchCode authenticity; public static final String SERIALIZED_NAME_IMAGE_QUALITY = "image_quality"; @SerializedName(SERIALIZED_NAME_IMAGE_QUALITY) private ImageQuality imageQuality; public static final String SERIALIZED_NAME_EXTRACTED_DATA = "extracted_data"; @SerializedName(SERIALIZED_NAME_EXTRACTED_DATA) private PhysicalDocumentExtractedDataAnalysis extractedData; public static final String SERIALIZED_NAME_FRAUD_ANALYSIS_DETAILS = "fraud_analysis_details"; @SerializedName(SERIALIZED_NAME_FRAUD_ANALYSIS_DETAILS) private FraudAnalysisDetails fraudAnalysisDetails; public static final String SERIALIZED_NAME_IMAGE_QUALITY_DETAILS = "image_quality_details"; @SerializedName(SERIALIZED_NAME_IMAGE_QUALITY_DETAILS) private ImageQualityDetails imageQualityDetails; public static final String SERIALIZED_NAME_HUMAN_REVIEW = "human_review"; @SerializedName(SERIALIZED_NAME_HUMAN_REVIEW) private HumanReview humanReview; public static final String SERIALIZED_NAME_AAMVA_VERIFICATION = "aamva_verification"; @SerializedName(SERIALIZED_NAME_AAMVA_VERIFICATION) private AAMVAAnalysis aamvaVerification; public DocumentAnalysis authenticity(DocumentAuthenticityMatchCode authenticity) { this.authenticity = authenticity; return this; } /** * Get authenticity * @return authenticity **/ @ApiModelProperty(required = true, value = "") public DocumentAuthenticityMatchCode getAuthenticity() { return authenticity; } public void setAuthenticity(DocumentAuthenticityMatchCode authenticity) { this.authenticity = authenticity; } public DocumentAnalysis imageQuality(ImageQuality imageQuality) { this.imageQuality = imageQuality; return this; } /** * Get imageQuality * @return imageQuality **/ @ApiModelProperty(required = true, value = "") public ImageQuality getImageQuality() { return imageQuality; } public void setImageQuality(ImageQuality imageQuality) { this.imageQuality = imageQuality; } public DocumentAnalysis extractedData(PhysicalDocumentExtractedDataAnalysis extractedData) { this.extractedData = extractedData; return this; } /** * Get extractedData * @return extractedData **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public PhysicalDocumentExtractedDataAnalysis getExtractedData() { return extractedData; } public void setExtractedData(PhysicalDocumentExtractedDataAnalysis extractedData) { this.extractedData = extractedData; } public DocumentAnalysis fraudAnalysisDetails(FraudAnalysisDetails fraudAnalysisDetails) { this.fraudAnalysisDetails = fraudAnalysisDetails; return this; } /** * Get fraudAnalysisDetails * @return fraudAnalysisDetails **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public FraudAnalysisDetails getFraudAnalysisDetails() { return fraudAnalysisDetails; } public void setFraudAnalysisDetails(FraudAnalysisDetails fraudAnalysisDetails) { this.fraudAnalysisDetails = fraudAnalysisDetails; } public DocumentAnalysis imageQualityDetails(ImageQualityDetails imageQualityDetails) { this.imageQualityDetails = imageQualityDetails; return this; } /** * Get imageQualityDetails * @return imageQualityDetails **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ImageQualityDetails getImageQualityDetails() { return imageQualityDetails; } public void setImageQualityDetails(ImageQualityDetails imageQualityDetails) { this.imageQualityDetails = imageQualityDetails; } public DocumentAnalysis humanReview(HumanReview humanReview) { this.humanReview = humanReview; return this; } /** * Get humanReview * @return humanReview **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public HumanReview getHumanReview() { return humanReview; } public void setHumanReview(HumanReview humanReview) { this.humanReview = humanReview; } public DocumentAnalysis aamvaVerification(AAMVAAnalysis aamvaVerification) { this.aamvaVerification = aamvaVerification; return this; } /** * Get aamvaVerification * @return aamvaVerification **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public AAMVAAnalysis getAamvaVerification() { return aamvaVerification; } public void setAamvaVerification(AAMVAAnalysis aamvaVerification) { this.aamvaVerification = aamvaVerification; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } DocumentAnalysis documentAnalysis = (DocumentAnalysis) o; return Objects.equals(this.authenticity, documentAnalysis.authenticity) && Objects.equals(this.imageQuality, documentAnalysis.imageQuality) && Objects.equals(this.extractedData, documentAnalysis.extractedData) && Objects.equals(this.fraudAnalysisDetails, documentAnalysis.fraudAnalysisDetails) && Objects.equals(this.imageQualityDetails, documentAnalysis.imageQualityDetails) && Objects.equals(this.humanReview, documentAnalysis.humanReview) && Objects.equals(this.aamvaVerification, documentAnalysis.aamvaVerification); } @Override public int hashCode() { return Objects.hash(authenticity, imageQuality, extractedData, fraudAnalysisDetails, imageQualityDetails, humanReview, aamvaVerification); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class DocumentAnalysis {\n"); sb.append(" authenticity: ").append(toIndentedString(authenticity)).append("\n"); sb.append(" imageQuality: ").append(toIndentedString(imageQuality)).append("\n"); sb.append(" extractedData: ").append(toIndentedString(extractedData)).append("\n"); sb.append(" fraudAnalysisDetails: ").append(toIndentedString(fraudAnalysisDetails)).append("\n"); sb.append(" imageQualityDetails: ").append(toIndentedString(imageQualityDetails)).append("\n"); sb.append(" humanReview: ").append(toIndentedString(humanReview)).append("\n"); sb.append(" aamvaVerification: ").append(toIndentedString(aamvaVerification)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/VerificationOfAsset.java
src/main/java/com/plaid/client/model/VerificationOfAsset.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.ReportingInformation; import com.plaid.client.model.ServiceProductFulfillment; import com.plaid.client.model.VerificationOfAssetResponse; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Documentation not found in the MISMO model viewer and not provided by Freddie Mac. */ @ApiModel(description = "Documentation not found in the MISMO model viewer and not provided by Freddie Mac.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class VerificationOfAsset { public static final String SERIALIZED_NAME_R_E_P_O_R_T_I_N_G_I_N_F_O_R_M_A_T_I_O_N = "REPORTING_INFORMATION"; @SerializedName(SERIALIZED_NAME_R_E_P_O_R_T_I_N_G_I_N_F_O_R_M_A_T_I_O_N) private ReportingInformation REPORTING_INFORMATION; public static final String SERIALIZED_NAME_S_E_R_V_I_C_E_P_R_O_D_U_C_T_F_U_L_F_I_L_L_M_E_N_T = "SERVICE_PRODUCT_FULFILLMENT"; @SerializedName(SERIALIZED_NAME_S_E_R_V_I_C_E_P_R_O_D_U_C_T_F_U_L_F_I_L_L_M_E_N_T) private ServiceProductFulfillment SERVICE_PRODUCT_FULFILLMENT; public static final String SERIALIZED_NAME_V_E_R_I_F_I_C_A_T_I_O_N_O_F_A_S_S_E_T_R_E_S_P_O_N_S_E = "VERIFICATION_OF_ASSET_RESPONSE"; @SerializedName(SERIALIZED_NAME_V_E_R_I_F_I_C_A_T_I_O_N_O_F_A_S_S_E_T_R_E_S_P_O_N_S_E) private VerificationOfAssetResponse VERIFICATION_OF_ASSET_RESPONSE; public VerificationOfAsset REPORTING_INFORMATION(ReportingInformation REPORTING_INFORMATION) { this.REPORTING_INFORMATION = REPORTING_INFORMATION; return this; } /** * Get REPORTING_INFORMATION * @return REPORTING_INFORMATION **/ @ApiModelProperty(required = true, value = "") public ReportingInformation getREPORTINGINFORMATION() { return REPORTING_INFORMATION; } public void setREPORTINGINFORMATION(ReportingInformation REPORTING_INFORMATION) { this.REPORTING_INFORMATION = REPORTING_INFORMATION; } public VerificationOfAsset SERVICE_PRODUCT_FULFILLMENT(ServiceProductFulfillment SERVICE_PRODUCT_FULFILLMENT) { this.SERVICE_PRODUCT_FULFILLMENT = SERVICE_PRODUCT_FULFILLMENT; return this; } /** * Get SERVICE_PRODUCT_FULFILLMENT * @return SERVICE_PRODUCT_FULFILLMENT **/ @ApiModelProperty(required = true, value = "") public ServiceProductFulfillment getSERVICEPRODUCTFULFILLMENT() { return SERVICE_PRODUCT_FULFILLMENT; } public void setSERVICEPRODUCTFULFILLMENT(ServiceProductFulfillment SERVICE_PRODUCT_FULFILLMENT) { this.SERVICE_PRODUCT_FULFILLMENT = SERVICE_PRODUCT_FULFILLMENT; } public VerificationOfAsset VERIFICATION_OF_ASSET_RESPONSE(VerificationOfAssetResponse VERIFICATION_OF_ASSET_RESPONSE) { this.VERIFICATION_OF_ASSET_RESPONSE = VERIFICATION_OF_ASSET_RESPONSE; return this; } /** * Get VERIFICATION_OF_ASSET_RESPONSE * @return VERIFICATION_OF_ASSET_RESPONSE **/ @ApiModelProperty(required = true, value = "") public VerificationOfAssetResponse getVERIFICATIONOFASSETRESPONSE() { return VERIFICATION_OF_ASSET_RESPONSE; } public void setVERIFICATIONOFASSETRESPONSE(VerificationOfAssetResponse VERIFICATION_OF_ASSET_RESPONSE) { this.VERIFICATION_OF_ASSET_RESPONSE = VERIFICATION_OF_ASSET_RESPONSE; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } VerificationOfAsset verificationOfAsset = (VerificationOfAsset) o; return Objects.equals(this.REPORTING_INFORMATION, verificationOfAsset.REPORTING_INFORMATION) && Objects.equals(this.SERVICE_PRODUCT_FULFILLMENT, verificationOfAsset.SERVICE_PRODUCT_FULFILLMENT) && Objects.equals(this.VERIFICATION_OF_ASSET_RESPONSE, verificationOfAsset.VERIFICATION_OF_ASSET_RESPONSE); } @Override public int hashCode() { return Objects.hash(REPORTING_INFORMATION, SERVICE_PRODUCT_FULFILLMENT, VERIFICATION_OF_ASSET_RESPONSE); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class VerificationOfAsset {\n"); sb.append(" REPORTING_INFORMATION: ").append(toIndentedString(REPORTING_INFORMATION)).append("\n"); sb.append(" SERVICE_PRODUCT_FULFILLMENT: ").append(toIndentedString(SERVICE_PRODUCT_FULFILLMENT)).append("\n"); sb.append(" VERIFICATION_OF_ASSET_RESPONSE: ").append(toIndentedString(VERIFICATION_OF_ASSET_RESPONSE)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckRequest.java
src/main/java/com/plaid/client/model/IncomeVerificationPrecheckRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.IncomeVerificationPrecheckEmployer; import com.plaid.client.model.IncomeVerificationPrecheckMilitaryInfo; import com.plaid.client.model.IncomeVerificationPrecheckPayrollInstitution; import com.plaid.client.model.IncomeVerificationPrecheckUser; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * IncomeVerificationPrecheckRequest defines the request schema for &#x60;/income/verification/precheck&#x60; */ @ApiModel(description = "IncomeVerificationPrecheckRequest defines the request schema for `/income/verification/precheck`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IncomeVerificationPrecheckRequest { 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 IncomeVerificationPrecheckUser user; public static final String SERIALIZED_NAME_EMPLOYER = "employer"; @SerializedName(SERIALIZED_NAME_EMPLOYER) private IncomeVerificationPrecheckEmployer employer; public static final String SERIALIZED_NAME_PAYROLL_INSTITUTION = "payroll_institution"; @SerializedName(SERIALIZED_NAME_PAYROLL_INSTITUTION) private IncomeVerificationPrecheckPayrollInstitution payrollInstitution; public static final String SERIALIZED_NAME_TRANSACTIONS_ACCESS_TOKEN = "transactions_access_token"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS_ACCESS_TOKEN) private String transactionsAccessToken; public static final String SERIALIZED_NAME_TRANSACTIONS_ACCESS_TOKENS = "transactions_access_tokens"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS_ACCESS_TOKENS) private List<String> transactionsAccessTokens = null; public static final String SERIALIZED_NAME_US_MILITARY_INFO = "us_military_info"; @SerializedName(SERIALIZED_NAME_US_MILITARY_INFO) private IncomeVerificationPrecheckMilitaryInfo usMilitaryInfo; public IncomeVerificationPrecheckRequest 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 IncomeVerificationPrecheckRequest 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 IncomeVerificationPrecheckRequest user(IncomeVerificationPrecheckUser user) { this.user = user; return this; } /** * Get user * @return user **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public IncomeVerificationPrecheckUser getUser() { return user; } public void setUser(IncomeVerificationPrecheckUser user) { this.user = user; } public IncomeVerificationPrecheckRequest employer(IncomeVerificationPrecheckEmployer employer) { this.employer = employer; return this; } /** * Get employer * @return employer **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public IncomeVerificationPrecheckEmployer getEmployer() { return employer; } public void setEmployer(IncomeVerificationPrecheckEmployer employer) { this.employer = employer; } public IncomeVerificationPrecheckRequest payrollInstitution(IncomeVerificationPrecheckPayrollInstitution payrollInstitution) { this.payrollInstitution = payrollInstitution; return this; } /** * Get payrollInstitution * @return payrollInstitution **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public IncomeVerificationPrecheckPayrollInstitution getPayrollInstitution() { return payrollInstitution; } public void setPayrollInstitution(IncomeVerificationPrecheckPayrollInstitution payrollInstitution) { this.payrollInstitution = payrollInstitution; } public IncomeVerificationPrecheckRequest transactionsAccessToken(String transactionsAccessToken) { this.transactionsAccessToken = transactionsAccessToken; return this; } /** * Get transactionsAccessToken * @return transactionsAccessToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getTransactionsAccessToken() { return transactionsAccessToken; } public void setTransactionsAccessToken(String transactionsAccessToken) { this.transactionsAccessToken = transactionsAccessToken; } public IncomeVerificationPrecheckRequest transactionsAccessTokens(List<String> transactionsAccessTokens) { this.transactionsAccessTokens = transactionsAccessTokens; return this; } public IncomeVerificationPrecheckRequest addTransactionsAccessTokensItem(String transactionsAccessTokensItem) { if (this.transactionsAccessTokens == null) { this.transactionsAccessTokens = new ArrayList<>(); } this.transactionsAccessTokens.add(transactionsAccessTokensItem); return this; } /** * An array of access tokens corresponding to Items belonging to the user whose eligibility is being checked. Note that if the Items specified here are not already initialized with &#x60;transactions&#x60;, providing them in this field will cause these Items to be initialized with (and billed for) the Transactions product. * @return transactionsAccessTokens **/ @javax.annotation.Nullable @ApiModelProperty(value = "An array of access tokens corresponding to Items belonging to the user whose eligibility is being checked. Note that if the Items specified here are not already initialized with `transactions`, providing them in this field will cause these Items to be initialized with (and billed for) the Transactions product.") public List<String> getTransactionsAccessTokens() { return transactionsAccessTokens; } public void setTransactionsAccessTokens(List<String> transactionsAccessTokens) { this.transactionsAccessTokens = transactionsAccessTokens; } public IncomeVerificationPrecheckRequest usMilitaryInfo(IncomeVerificationPrecheckMilitaryInfo usMilitaryInfo) { this.usMilitaryInfo = usMilitaryInfo; return this; } /** * Get usMilitaryInfo * @return usMilitaryInfo **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public IncomeVerificationPrecheckMilitaryInfo getUsMilitaryInfo() { return usMilitaryInfo; } public void setUsMilitaryInfo(IncomeVerificationPrecheckMilitaryInfo usMilitaryInfo) { this.usMilitaryInfo = usMilitaryInfo; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IncomeVerificationPrecheckRequest incomeVerificationPrecheckRequest = (IncomeVerificationPrecheckRequest) o; return Objects.equals(this.clientId, incomeVerificationPrecheckRequest.clientId) && Objects.equals(this.secret, incomeVerificationPrecheckRequest.secret) && Objects.equals(this.user, incomeVerificationPrecheckRequest.user) && Objects.equals(this.employer, incomeVerificationPrecheckRequest.employer) && Objects.equals(this.payrollInstitution, incomeVerificationPrecheckRequest.payrollInstitution) && Objects.equals(this.transactionsAccessToken, incomeVerificationPrecheckRequest.transactionsAccessToken) && Objects.equals(this.transactionsAccessTokens, incomeVerificationPrecheckRequest.transactionsAccessTokens) && Objects.equals(this.usMilitaryInfo, incomeVerificationPrecheckRequest.usMilitaryInfo); } @Override public int hashCode() { return Objects.hash(clientId, secret, user, employer, payrollInstitution, transactionsAccessToken, transactionsAccessTokens, usMilitaryInfo); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IncomeVerificationPrecheckRequest {\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(" employer: ").append(toIndentedString(employer)).append("\n"); sb.append(" payrollInstitution: ").append(toIndentedString(payrollInstitution)).append("\n"); sb.append(" transactionsAccessToken: ").append(toIndentedString(transactionsAccessToken)).append("\n"); sb.append(" transactionsAccessTokens: ").append(toIndentedString(transactionsAccessTokens)).append("\n"); sb.append(" usMilitaryInfo: ").append(toIndentedString(usMilitaryInfo)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/RefreshResult.java
src/main/java/com/plaid/client/model/RefreshResult.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * RefreshResult represents the result status of a user refresh for a specific item. */ @ApiModel(description = "RefreshResult represents the result status of a user refresh for a specific item.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class RefreshResult { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_PRODUCT = "product"; @SerializedName(SERIALIZED_NAME_PRODUCT) private String product; public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private PlaidError error; public RefreshResult 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 RefreshResult product(String product) { this.product = product; return this; } /** * The product for which the refresh was attempted. * @return product **/ @javax.annotation.Nullable @ApiModelProperty(value = "The product for which the refresh was attempted.") public String getProduct() { return product; } public void setProduct(String product) { this.product = product; } public RefreshResult error(PlaidError error) { this.error = error; return this; } /** * Get error * @return error **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PlaidError getError() { return error; } public void setError(PlaidError error) { this.error = error; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } RefreshResult refreshResult = (RefreshResult) o; return Objects.equals(this.itemId, refreshResult.itemId) && Objects.equals(this.product, refreshResult.product) && Objects.equals(this.error, refreshResult.error); } @Override public int hashCode() { return Objects.hash(itemId, product, error); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class RefreshResult {\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" product: ").append(toIndentedString(product)).append("\n"); sb.append(" error: ").append(toIndentedString(error)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditBankIncomeItem.java
src/main/java/com/plaid/client/model/CreditBankIncomeItem.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CreditBankIncomeAccount; import com.plaid.client.model.CreditBankIncomeSource; 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 details and metadata for an end user&#39;s Item. */ @ApiModel(description = "The details and metadata for an end user's Item.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditBankIncomeItem { public static final String SERIALIZED_NAME_BANK_INCOME_ACCOUNTS = "bank_income_accounts"; @SerializedName(SERIALIZED_NAME_BANK_INCOME_ACCOUNTS) private List<CreditBankIncomeAccount> bankIncomeAccounts = null; public static final String SERIALIZED_NAME_BANK_INCOME_SOURCES = "bank_income_sources"; @SerializedName(SERIALIZED_NAME_BANK_INCOME_SOURCES) private List<CreditBankIncomeSource> bankIncomeSources = null; public static final String SERIALIZED_NAME_LAST_UPDATED_TIME = "last_updated_time"; @SerializedName(SERIALIZED_NAME_LAST_UPDATED_TIME) private OffsetDateTime lastUpdatedTime; public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_ID) private String institutionId; public static final String SERIALIZED_NAME_INSTITUTION_NAME = "institution_name"; @SerializedName(SERIALIZED_NAME_INSTITUTION_NAME) private String institutionName; public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public CreditBankIncomeItem bankIncomeAccounts(List<CreditBankIncomeAccount> bankIncomeAccounts) { this.bankIncomeAccounts = bankIncomeAccounts; return this; } public CreditBankIncomeItem addBankIncomeAccountsItem(CreditBankIncomeAccount bankIncomeAccountsItem) { if (this.bankIncomeAccounts == null) { this.bankIncomeAccounts = new ArrayList<>(); } this.bankIncomeAccounts.add(bankIncomeAccountsItem); return this; } /** * The Item&#39;s accounts that have Bank Income data. * @return bankIncomeAccounts **/ @javax.annotation.Nullable @ApiModelProperty(value = "The Item's accounts that have Bank Income data.") public List<CreditBankIncomeAccount> getBankIncomeAccounts() { return bankIncomeAccounts; } public void setBankIncomeAccounts(List<CreditBankIncomeAccount> bankIncomeAccounts) { this.bankIncomeAccounts = bankIncomeAccounts; } public CreditBankIncomeItem bankIncomeSources(List<CreditBankIncomeSource> bankIncomeSources) { this.bankIncomeSources = bankIncomeSources; return this; } public CreditBankIncomeItem addBankIncomeSourcesItem(CreditBankIncomeSource bankIncomeSourcesItem) { if (this.bankIncomeSources == null) { this.bankIncomeSources = new ArrayList<>(); } this.bankIncomeSources.add(bankIncomeSourcesItem); return this; } /** * The income sources for this Item. Each entry in the array is a single income source. * @return bankIncomeSources **/ @javax.annotation.Nullable @ApiModelProperty(value = "The income sources for this Item. Each entry in the array is a single income source.") public List<CreditBankIncomeSource> getBankIncomeSources() { return bankIncomeSources; } public void setBankIncomeSources(List<CreditBankIncomeSource> bankIncomeSources) { this.bankIncomeSources = bankIncomeSources; } public CreditBankIncomeItem lastUpdatedTime(OffsetDateTime lastUpdatedTime) { this.lastUpdatedTime = lastUpdatedTime; return this; } /** * The time when this Item&#39;s data was last retrieved from the financial institution. * @return lastUpdatedTime **/ @javax.annotation.Nullable @ApiModelProperty(value = "The time when this Item's data was last retrieved from the financial institution.") public OffsetDateTime getLastUpdatedTime() { return lastUpdatedTime; } public void setLastUpdatedTime(OffsetDateTime lastUpdatedTime) { this.lastUpdatedTime = lastUpdatedTime; } public CreditBankIncomeItem institutionId(String institutionId) { this.institutionId = institutionId; return this; } /** * The unique identifier of the institution associated with the Item. * @return institutionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The unique identifier of the institution associated with the Item.") public String getInstitutionId() { return institutionId; } public void setInstitutionId(String institutionId) { this.institutionId = institutionId; } public CreditBankIncomeItem institutionName(String institutionName) { this.institutionName = institutionName; return this; } /** * The name of the institution associated with the Item. * @return institutionName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The name of the institution associated with the Item.") public String getInstitutionName() { return institutionName; } public void setInstitutionName(String institutionName) { this.institutionName = institutionName; } public CreditBankIncomeItem itemId(String itemId) { this.itemId = itemId; return this; } /** * The unique identifier for the Item. * @return itemId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The unique identifier for the Item.") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditBankIncomeItem creditBankIncomeItem = (CreditBankIncomeItem) o; return Objects.equals(this.bankIncomeAccounts, creditBankIncomeItem.bankIncomeAccounts) && Objects.equals(this.bankIncomeSources, creditBankIncomeItem.bankIncomeSources) && Objects.equals(this.lastUpdatedTime, creditBankIncomeItem.lastUpdatedTime) && Objects.equals(this.institutionId, creditBankIncomeItem.institutionId) && Objects.equals(this.institutionName, creditBankIncomeItem.institutionName) && Objects.equals(this.itemId, creditBankIncomeItem.itemId); } @Override public int hashCode() { return Objects.hash(bankIncomeAccounts, bankIncomeSources, lastUpdatedTime, institutionId, institutionName, itemId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditBankIncomeItem {\n"); sb.append(" bankIncomeAccounts: ").append(toIndentedString(bankIncomeAccounts)).append("\n"); sb.append(" bankIncomeSources: ").append(toIndentedString(bankIncomeSources)).append("\n"); sb.append(" lastUpdatedTime: ").append(toIndentedString(lastUpdatedTime)).append("\n"); sb.append(" institutionId: ").append(toIndentedString(institutionId)).append("\n"); sb.append(" institutionName: ").append(toIndentedString(institutionName)).append("\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferRecurringCancelResponse.java
src/main/java/com/plaid/client/model/TransferRecurringCancelResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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;/transfer/recurring/cancel&#x60; */ @ApiModel(description = "Defines the response schema for `/transfer/recurring/cancel`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferRecurringCancelResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public TransferRecurringCancelResponse 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; } TransferRecurringCancelResponse transferRecurringCancelResponse = (TransferRecurringCancelResponse) o; return Objects.equals(this.requestId, transferRecurringCancelResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferRecurringCancelResponse {\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/IdentityRefreshResponse.java
src/main/java/com/plaid/client/model/IdentityRefreshResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * IdentityRefreshResponse defines the response schema for &#x60;/identity/refresh&#x60; */ @ApiModel(description = "IdentityRefreshResponse defines the response schema for `/identity/refresh`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityRefreshResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public IdentityRefreshResponse 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; } IdentityRefreshResponse identityRefreshResponse = (IdentityRefreshResponse) o; return Objects.equals(this.requestId, identityRefreshResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityRefreshResponse {\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/BeaconUserAccountInsightsGetResponse.java
src/main/java/com/plaid/client/model/BeaconUserAccountInsightsGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.BeaconBankAccounts; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * The response schema for &#x60;/beacon/user/account/insights/get&#x60; */ @ApiModel(description = "The response schema for `/beacon/user/account/insights/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconUserAccountInsightsGetResponse { public static final String SERIALIZED_NAME_BEACON_USER_ID = "beacon_user_id"; @SerializedName(SERIALIZED_NAME_BEACON_USER_ID) private String beaconUserId; public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) private java.sql.Timestamp createdAt; public static final String SERIALIZED_NAME_UPDATED_AT = "updated_at"; @SerializedName(SERIALIZED_NAME_UPDATED_AT) private OffsetDateTime updatedAt; public static final String SERIALIZED_NAME_BANK_ACCOUNT_INSIGHTS = "bank_account_insights"; @SerializedName(SERIALIZED_NAME_BANK_ACCOUNT_INSIGHTS) private BeaconBankAccounts bankAccountInsights; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public BeaconUserAccountInsightsGetResponse 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 BeaconUserAccountInsightsGetResponse 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 BeaconUserAccountInsightsGetResponse updatedAt(OffsetDateTime updatedAt) { this.updatedAt = updatedAt; return this; } /** * An ISO8601 formatted timestamp. This field indicates the last time the resource was modified. * @return updatedAt **/ @ApiModelProperty(example = "2020-07-24T03:26:02Z", required = true, value = "An ISO8601 formatted timestamp. This field indicates the last time the resource was modified.") public OffsetDateTime getUpdatedAt() { return updatedAt; } public void setUpdatedAt(OffsetDateTime updatedAt) { this.updatedAt = updatedAt; } public BeaconUserAccountInsightsGetResponse bankAccountInsights(BeaconBankAccounts bankAccountInsights) { this.bankAccountInsights = bankAccountInsights; return this; } /** * Get bankAccountInsights * @return bankAccountInsights **/ @ApiModelProperty(required = true, value = "") public BeaconBankAccounts getBankAccountInsights() { return bankAccountInsights; } public void setBankAccountInsights(BeaconBankAccounts bankAccountInsights) { this.bankAccountInsights = bankAccountInsights; } public BeaconUserAccountInsightsGetResponse 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; } BeaconUserAccountInsightsGetResponse beaconUserAccountInsightsGetResponse = (BeaconUserAccountInsightsGetResponse) o; return Objects.equals(this.beaconUserId, beaconUserAccountInsightsGetResponse.beaconUserId) && Objects.equals(this.createdAt, beaconUserAccountInsightsGetResponse.createdAt) && Objects.equals(this.updatedAt, beaconUserAccountInsightsGetResponse.updatedAt) && Objects.equals(this.bankAccountInsights, beaconUserAccountInsightsGetResponse.bankAccountInsights) && Objects.equals(this.requestId, beaconUserAccountInsightsGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(beaconUserId, createdAt, updatedAt, bankAccountInsights, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconUserAccountInsightsGetResponse {\n"); sb.append(" beaconUserId: ").append(toIndentedString(beaconUserId)).append("\n"); sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n"); sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).append("\n"); sb.append(" bankAccountInsights: ").append(toIndentedString(bankAccountInsights)).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/Assets.java
src/main/java/com/plaid/client/model/Assets.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.Asset; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Documentation not found in the MISMO model viewer and not provided by Freddie Mac. */ @ApiModel(description = "Documentation not found in the MISMO model viewer and not provided by Freddie Mac.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Assets { public static final String SERIALIZED_NAME_A_S_S_E_T = "ASSET"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T) private List<Asset> ASSET = new ArrayList<>(); public Assets ASSET(List<Asset> ASSET) { this.ASSET = ASSET; return this; } public Assets addASSETItem(Asset ASSETItem) { this.ASSET.add(ASSETItem); return this; } /** * Documentation not found in the MISMO model viewer and not provided by Freddie Mac. * @return ASSET **/ @ApiModelProperty(required = true, value = "Documentation not found in the MISMO model viewer and not provided by Freddie Mac.") public List<Asset> getASSET() { return ASSET; } public void setASSET(List<Asset> ASSET) { this.ASSET = ASSET; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Assets assets = (Assets) o; return Objects.equals(this.ASSET, assets.ASSET); } @Override public int hashCode() { return Objects.hash(ASSET); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Assets {\n"); sb.append(" ASSET: ").append(toIndentedString(ASSET)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/MultiDocumentRiskSignal.java
src/main/java/com/plaid/client/model/MultiDocumentRiskSignal.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.DocumentRiskSignal; import com.plaid.client.model.RiskSignalDocumentReference; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Object containing risk signals and relevant metadata for a set of uploaded documents */ @ApiModel(description = "Object containing risk signals and relevant metadata for a set of uploaded documents") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class MultiDocumentRiskSignal { public static final String SERIALIZED_NAME_DOCUMENT_REFERENCES = "document_references"; @SerializedName(SERIALIZED_NAME_DOCUMENT_REFERENCES) private List<RiskSignalDocumentReference> documentReferences = new ArrayList<>(); public static final String SERIALIZED_NAME_RISK_SIGNALS = "risk_signals"; @SerializedName(SERIALIZED_NAME_RISK_SIGNALS) private List<DocumentRiskSignal> riskSignals = new ArrayList<>(); public MultiDocumentRiskSignal documentReferences(List<RiskSignalDocumentReference> documentReferences) { this.documentReferences = documentReferences; return this; } public MultiDocumentRiskSignal addDocumentReferencesItem(RiskSignalDocumentReference documentReferencesItem) { this.documentReferences.add(documentReferencesItem); return this; } /** * Array of objects containing attributes that could indicate if a document is fraudulent * @return documentReferences **/ @ApiModelProperty(required = true, value = "Array of objects containing attributes that could indicate if a document is fraudulent") public List<RiskSignalDocumentReference> getDocumentReferences() { return documentReferences; } public void setDocumentReferences(List<RiskSignalDocumentReference> documentReferences) { this.documentReferences = documentReferences; } public MultiDocumentRiskSignal riskSignals(List<DocumentRiskSignal> riskSignals) { this.riskSignals = riskSignals; return this; } public MultiDocumentRiskSignal addRiskSignalsItem(DocumentRiskSignal riskSignalsItem) { this.riskSignals.add(riskSignalsItem); return this; } /** * Array of attributes that indicate whether or not there is fraud risk with a set of documents * @return riskSignals **/ @ApiModelProperty(required = true, value = "Array of attributes that indicate whether or not there is fraud risk with a set of documents") public List<DocumentRiskSignal> getRiskSignals() { return riskSignals; } public void setRiskSignals(List<DocumentRiskSignal> riskSignals) { this.riskSignals = riskSignals; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } MultiDocumentRiskSignal multiDocumentRiskSignal = (MultiDocumentRiskSignal) o; return Objects.equals(this.documentReferences, multiDocumentRiskSignal.documentReferences) && Objects.equals(this.riskSignals, multiDocumentRiskSignal.riskSignals); } @Override public int hashCode() { return Objects.hash(documentReferences, riskSignals); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class MultiDocumentRiskSignal {\n"); sb.append(" documentReferences: ").append(toIndentedString(documentReferences)).append("\n"); sb.append(" riskSignals: ").append(toIndentedString(riskSignals)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BaseReportTransaction.java
src/main/java/com/plaid/client/model/BaseReportTransaction.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.BaseReportTransactionType; import com.plaid.client.model.CreditCategory; import com.plaid.client.model.Location; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; import java.util.ArrayList; import java.util.List; /** * A transaction on the Base Report */ @ApiModel(description = "A transaction on the Base Report") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BaseReportTransaction { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; 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 static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_ORIGINAL_DESCRIPTION = "original_description"; @SerializedName(SERIALIZED_NAME_ORIGINAL_DESCRIPTION) private String originalDescription; public static final String SERIALIZED_NAME_CREDIT_CATEGORY = "credit_category"; @SerializedName(SERIALIZED_NAME_CREDIT_CATEGORY) private CreditCategory creditCategory; public static final String SERIALIZED_NAME_CHECK_NUMBER = "check_number"; @SerializedName(SERIALIZED_NAME_CHECK_NUMBER) private String checkNumber; public static final String SERIALIZED_NAME_DATE = "date"; @SerializedName(SERIALIZED_NAME_DATE) private LocalDate date; public static final String SERIALIZED_NAME_DATE_TRANSACTED = "date_transacted"; @SerializedName(SERIALIZED_NAME_DATE_TRANSACTED) private String dateTransacted; public static final String SERIALIZED_NAME_LOCATION = "location"; @SerializedName(SERIALIZED_NAME_LOCATION) private Location location; public static final String SERIALIZED_NAME_MERCHANT_NAME = "merchant_name"; @SerializedName(SERIALIZED_NAME_MERCHANT_NAME) private String merchantName; public static final String SERIALIZED_NAME_PENDING = "pending"; @SerializedName(SERIALIZED_NAME_PENDING) private Boolean pending; public static final String SERIALIZED_NAME_ACCOUNT_OWNER = "account_owner"; @SerializedName(SERIALIZED_NAME_ACCOUNT_OWNER) private String accountOwner; public static final String SERIALIZED_NAME_TRANSACTION_ID = "transaction_id"; @SerializedName(SERIALIZED_NAME_TRANSACTION_ID) private String transactionId; public static final String SERIALIZED_NAME_TRANSACTION_TYPE = "transaction_type"; @SerializedName(SERIALIZED_NAME_TRANSACTION_TYPE) private BaseReportTransactionType transactionType; public static final String SERIALIZED_NAME_CATEGORY = "category"; @SerializedName(SERIALIZED_NAME_CATEGORY) private List<String> category = null; public static final String SERIALIZED_NAME_CATEGORY_ID = "category_id"; @SerializedName(SERIALIZED_NAME_CATEGORY_ID) private String categoryId; public BaseReportTransaction accountId(String accountId) { this.accountId = accountId; return this; } /** * The ID of the account in which this transaction occurred. * @return accountId **/ @ApiModelProperty(required = true, value = "The ID of the account in which this transaction occurred.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public BaseReportTransaction amount(Double amount) { this.amount = amount; return this; } /** * The settled value of the transaction, denominated in the transaction&#39;s currency, as stated in &#x60;iso_currency_code&#x60; or &#x60;unofficial_currency_code&#x60;. Positive values when money moves out of the account; negative values when money moves in. For example, debit card purchases are positive; credit card payments, direct deposits, and refunds are negative. * @return amount **/ @ApiModelProperty(required = true, value = "The settled value of the transaction, denominated in the transaction's currency, as stated in `iso_currency_code` or `unofficial_currency_code`. Positive values when money moves out of the account; negative values when money moves in. For example, debit card purchases are positive; credit card payments, direct deposits, and refunds are negative.") public Double getAmount() { return amount; } public void setAmount(Double amount) { this.amount = amount; } public BaseReportTransaction isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO-4217 currency code of the transaction. Always &#x60;null&#x60; if &#x60;unofficial_currency_code&#x60; is non-null. * @return isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ISO-4217 currency code of the transaction. Always `null` if `unofficial_currency_code` is non-null.") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public BaseReportTransaction unofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; return this; } /** * The unofficial currency code associated with the transaction. Always &#x60;null&#x60; if &#x60;iso_currency_code&#x60; is non-&#x60;null&#x60;. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported &#x60;unofficial_currency_code&#x60;s. * @return unofficialCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The unofficial currency code associated with the transaction. Always `null` if `iso_currency_code` is non-`null`. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported `unofficial_currency_code`s.") public String getUnofficialCurrencyCode() { return unofficialCurrencyCode; } public void setUnofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; } public BaseReportTransaction name(String name) { this.name = name; return this; } /** * The merchant name or transaction description. Note: This is a legacy field that is not actively maintained. Use &#x60;merchant_name&#x60; instead for the merchant name. * @return name **/ @javax.annotation.Nullable @ApiModelProperty(value = "The merchant name or transaction description. Note: This is a legacy field that is not actively maintained. Use `merchant_name` instead for the merchant name.") public String getName() { return name; } public void setName(String name) { this.name = name; } public BaseReportTransaction originalDescription(String originalDescription) { this.originalDescription = originalDescription; return this; } /** * The string returned by the financial institution to describe the transaction. * @return originalDescription **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The string returned by the financial institution to describe the transaction.") public String getOriginalDescription() { return originalDescription; } public void setOriginalDescription(String originalDescription) { this.originalDescription = originalDescription; } public BaseReportTransaction creditCategory(CreditCategory creditCategory) { this.creditCategory = creditCategory; return this; } /** * Get creditCategory * @return creditCategory **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CreditCategory getCreditCategory() { return creditCategory; } public void setCreditCategory(CreditCategory creditCategory) { this.creditCategory = creditCategory; } public BaseReportTransaction checkNumber(String checkNumber) { this.checkNumber = checkNumber; return this; } /** * The check number of the transaction. This field is only populated for check transactions. * @return checkNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "The check number of the transaction. This field is only populated for check transactions.") public String getCheckNumber() { return checkNumber; } public void setCheckNumber(String checkNumber) { this.checkNumber = checkNumber; } public BaseReportTransaction date(LocalDate date) { this.date = date; return this; } /** * For pending transactions, the date that the transaction occurred; for posted transactions, the date that the transaction posted. Both dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format ( &#x60;YYYY-MM-DD&#x60; ). * @return date **/ @ApiModelProperty(required = true, value = "For pending transactions, the date that the transaction occurred; for posted transactions, the date that the transaction posted. Both dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format ( `YYYY-MM-DD` ).") public LocalDate getDate() { return date; } public void setDate(LocalDate date) { this.date = date; } public BaseReportTransaction dateTransacted(String dateTransacted) { this.dateTransacted = dateTransacted; return this; } /** * The date on which the transaction took place, in IS0 8601 format. * @return dateTransacted **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date on which the transaction took place, in IS0 8601 format.") public String getDateTransacted() { return dateTransacted; } public void setDateTransacted(String dateTransacted) { this.dateTransacted = dateTransacted; } public BaseReportTransaction location(Location location) { this.location = location; return this; } /** * Get location * @return location **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public Location getLocation() { return location; } public void setLocation(Location location) { this.location = location; } public BaseReportTransaction merchantName(String merchantName) { this.merchantName = merchantName; return this; } /** * The merchant name, as enriched by Plaid from the &#x60;name&#x60; field. This is typically a more human-readable version of the merchant counterparty in the transaction. For some bank transactions (such as checks or account transfers) where there is no meaningful merchant name, this value will be &#x60;null&#x60;. * @return merchantName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The merchant name, as enriched by Plaid from the `name` field. This is typically a more human-readable version of the merchant counterparty in the transaction. For some bank transactions (such as checks or account transfers) where there is no meaningful merchant name, this value will be `null`.") public String getMerchantName() { return merchantName; } public void setMerchantName(String merchantName) { this.merchantName = merchantName; } public BaseReportTransaction pending(Boolean pending) { this.pending = pending; return this; } /** * When &#x60;true&#x60;, identifies the transaction as pending or unsettled. Pending transaction details (name, type, amount, category ID) may change before they are settled. * @return pending **/ @ApiModelProperty(required = true, value = "When `true`, identifies the transaction as pending or unsettled. Pending transaction details (name, type, amount, category ID) may change before they are settled.") public Boolean getPending() { return pending; } public void setPending(Boolean pending) { this.pending = pending; } public BaseReportTransaction accountOwner(String accountOwner) { this.accountOwner = accountOwner; return this; } /** * The name of the account owner. This field is not typically populated and only relevant when dealing with sub-accounts. * @return accountOwner **/ @javax.annotation.Nullable @ApiModelProperty(value = "The name of the account owner. This field is not typically populated and only relevant when dealing with sub-accounts.") public String getAccountOwner() { return accountOwner; } public void setAccountOwner(String accountOwner) { this.accountOwner = accountOwner; } public BaseReportTransaction transactionId(String transactionId) { this.transactionId = transactionId; return this; } /** * The unique ID of the transaction. Like all Plaid identifiers, the &#x60;transaction_id&#x60; is case sensitive. * @return transactionId **/ @ApiModelProperty(required = true, value = "The unique ID of the transaction. Like all Plaid identifiers, the `transaction_id` is case sensitive.") public String getTransactionId() { return transactionId; } public void setTransactionId(String transactionId) { this.transactionId = transactionId; } public BaseReportTransaction transactionType(BaseReportTransactionType transactionType) { this.transactionType = transactionType; return this; } /** * Get transactionType * @return transactionType **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public BaseReportTransactionType getTransactionType() { return transactionType; } public void setTransactionType(BaseReportTransactionType transactionType) { this.transactionType = transactionType; } public BaseReportTransaction category(List<String> category) { this.category = category; return this; } public BaseReportTransaction addCategoryItem(String categoryItem) { if (this.category == null) { this.category = new ArrayList<>(); } this.category.add(categoryItem); return this; } /** * A hierarchical array of the categories to which this transaction belongs. For a full list of categories, see [&#x60;/categories/get&#x60;](https://plaid.com/docs/api/products/transactions/#categoriesget). * @return category **/ @javax.annotation.Nullable @ApiModelProperty(value = "A hierarchical array of the categories to which this transaction belongs. For a full list of categories, see [`/categories/get`](https://plaid.com/docs/api/products/transactions/#categoriesget).") public List<String> getCategory() { return category; } public void setCategory(List<String> category) { this.category = category; } public BaseReportTransaction categoryId(String categoryId) { this.categoryId = categoryId; return this; } /** * The ID of the category to which this transaction belongs. For a full list of categories, see [&#x60;/categories/get&#x60;](https://plaid.com/docs/api/products/transactions/#categoriesget). * @return categoryId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ID of the category to which this transaction belongs. For a full list of categories, see [`/categories/get`](https://plaid.com/docs/api/products/transactions/#categoriesget).") public String getCategoryId() { return categoryId; } public void setCategoryId(String categoryId) { this.categoryId = categoryId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BaseReportTransaction baseReportTransaction = (BaseReportTransaction) o; return Objects.equals(this.accountId, baseReportTransaction.accountId) && Objects.equals(this.amount, baseReportTransaction.amount) && Objects.equals(this.isoCurrencyCode, baseReportTransaction.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, baseReportTransaction.unofficialCurrencyCode) && Objects.equals(this.name, baseReportTransaction.name) && Objects.equals(this.originalDescription, baseReportTransaction.originalDescription) && Objects.equals(this.creditCategory, baseReportTransaction.creditCategory) && Objects.equals(this.checkNumber, baseReportTransaction.checkNumber) && Objects.equals(this.date, baseReportTransaction.date) && Objects.equals(this.dateTransacted, baseReportTransaction.dateTransacted) && Objects.equals(this.location, baseReportTransaction.location) && Objects.equals(this.merchantName, baseReportTransaction.merchantName) && Objects.equals(this.pending, baseReportTransaction.pending) && Objects.equals(this.accountOwner, baseReportTransaction.accountOwner) && Objects.equals(this.transactionId, baseReportTransaction.transactionId) && Objects.equals(this.transactionType, baseReportTransaction.transactionType) && Objects.equals(this.category, baseReportTransaction.category) && Objects.equals(this.categoryId, baseReportTransaction.categoryId); } @Override public int hashCode() { return Objects.hash(accountId, amount, isoCurrencyCode, unofficialCurrencyCode, name, originalDescription, creditCategory, checkNumber, date, dateTransacted, location, merchantName, pending, accountOwner, transactionId, transactionType, category, categoryId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BaseReportTransaction {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\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(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" originalDescription: ").append(toIndentedString(originalDescription)).append("\n"); sb.append(" creditCategory: ").append(toIndentedString(creditCategory)).append("\n"); sb.append(" checkNumber: ").append(toIndentedString(checkNumber)).append("\n"); sb.append(" date: ").append(toIndentedString(date)).append("\n"); sb.append(" dateTransacted: ").append(toIndentedString(dateTransacted)).append("\n"); sb.append(" location: ").append(toIndentedString(location)).append("\n"); sb.append(" merchantName: ").append(toIndentedString(merchantName)).append("\n"); sb.append(" pending: ").append(toIndentedString(pending)).append("\n"); sb.append(" accountOwner: ").append(toIndentedString(accountOwner)).append("\n"); sb.append(" transactionId: ").append(toIndentedString(transactionId)).append("\n"); sb.append(" transactionType: ").append(toIndentedString(transactionType)).append("\n"); sb.append(" category: ").append(toIndentedString(category)).append("\n"); sb.append(" categoryId: ").append(toIndentedString(categoryId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PayrollRiskSignalsItem.java
src/main/java/com/plaid/client/model/PayrollRiskSignalsItem.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.DocumentRiskSignalsObject; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Object containing fraud risk data pertaining to the Item linked as part of the verification. */ @ApiModel(description = "Object containing fraud risk data pertaining to the Item linked as part of the verification.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PayrollRiskSignalsItem { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_VERIFICATION_RISK_SIGNALS = "verification_risk_signals"; @SerializedName(SERIALIZED_NAME_VERIFICATION_RISK_SIGNALS) private List<DocumentRiskSignalsObject> verificationRiskSignals = new ArrayList<>(); public PayrollRiskSignalsItem 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 PayrollRiskSignalsItem verificationRiskSignals(List<DocumentRiskSignalsObject> verificationRiskSignals) { this.verificationRiskSignals = verificationRiskSignals; return this; } public PayrollRiskSignalsItem addVerificationRiskSignalsItem(DocumentRiskSignalsObject verificationRiskSignalsItem) { this.verificationRiskSignals.add(verificationRiskSignalsItem); return this; } /** * Array of payroll income document authenticity data retrieved for each of the user&#39;s accounts. * @return verificationRiskSignals **/ @ApiModelProperty(required = true, value = "Array of payroll income document authenticity data retrieved for each of the user's accounts.") public List<DocumentRiskSignalsObject> getVerificationRiskSignals() { return verificationRiskSignals; } public void setVerificationRiskSignals(List<DocumentRiskSignalsObject> verificationRiskSignals) { this.verificationRiskSignals = verificationRiskSignals; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PayrollRiskSignalsItem payrollRiskSignalsItem = (PayrollRiskSignalsItem) o; return Objects.equals(this.itemId, payrollRiskSignalsItem.itemId) && Objects.equals(this.verificationRiskSignals, payrollRiskSignalsItem.verificationRiskSignals); } @Override public int hashCode() { return Objects.hash(itemId, verificationRiskSignals); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PayrollRiskSignalsItem {\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" verificationRiskSignals: ").append(toIndentedString(verificationRiskSignals)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferCancelRequest.java
src/main/java/com/plaid/client/model/TransferCancelRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.ReasonCode; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the request schema for &#x60;/transfer/cancel&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/cancel`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferCancelRequest { 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_ORIGINATOR_CLIENT_ID = "originator_client_id"; @SerializedName(SERIALIZED_NAME_ORIGINATOR_CLIENT_ID) private String originatorClientId; public static final String SERIALIZED_NAME_REASON_CODE = "reason_code"; @SerializedName(SERIALIZED_NAME_REASON_CODE) private ReasonCode reasonCode; public TransferCancelRequest 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 TransferCancelRequest 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 TransferCancelRequest transferId(String transferId) { this.transferId = transferId; return this; } /** * Plaid’s unique identifier for a transfer. * @return transferId **/ @ApiModelProperty(required = true, value = "Plaid’s unique identifier for a transfer.") public String getTransferId() { return transferId; } public void setTransferId(String transferId) { this.transferId = transferId; } public TransferCancelRequest originatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; return this; } /** * The Plaid client ID of the transfer originator. Should only be present if &#x60;client_id&#x60; is a third-party sender (TPS). * @return originatorClientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The Plaid client ID of the transfer originator. Should only be present if `client_id` is a third-party sender (TPS).") public String getOriginatorClientId() { return originatorClientId; } public void setOriginatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; } public TransferCancelRequest reasonCode(ReasonCode reasonCode) { this.reasonCode = reasonCode; return this; } /** * Get reasonCode * @return reasonCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ReasonCode getReasonCode() { return reasonCode; } public void setReasonCode(ReasonCode reasonCode) { this.reasonCode = reasonCode; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferCancelRequest transferCancelRequest = (TransferCancelRequest) o; return Objects.equals(this.clientId, transferCancelRequest.clientId) && Objects.equals(this.secret, transferCancelRequest.secret) && Objects.equals(this.transferId, transferCancelRequest.transferId) && Objects.equals(this.originatorClientId, transferCancelRequest.originatorClientId) && Objects.equals(this.reasonCode, transferCancelRequest.reasonCode); } @Override public int hashCode() { return Objects.hash(clientId, secret, transferId, originatorClientId, reasonCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferCancelRequest {\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(" originatorClientId: ").append(toIndentedString(originatorClientId)).append("\n"); sb.append(" reasonCode: ").append(toIndentedString(reasonCode)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IdentityVerificationStepSummary.java
src/main/java/com/plaid/client/model/IdentityVerificationStepSummary.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.IdentityVerificationStepStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Each step will be one of the following values: &#x60;active&#x60; - This step is the user&#39;s current step. They are either in the process of completing this step, or they recently closed their Identity Verification attempt while in the middle of this step. Only one step will be marked as &#x60;active&#x60; at any given point. &#x60;success&#x60; - The Identity Verification attempt has completed this step. &#x60;failed&#x60; - The user failed this step. This can either call the user to fail the session as a whole, or cause them to fallback to another step depending on how the Identity Verification template is configured. A failed step does not imply a failed session. &#x60;waiting_for_prerequisite&#x60; - The user needs to complete another step first, before they progress to this step. This step may never run, depending on if the user fails an earlier step or if the step is only run as a fallback. &#x60;not_applicable&#x60; - This step will not be run for this session. &#x60;skipped&#x60; - The retry instructions that created this Identity Verification attempt specified that this step should be skipped. &#x60;expired&#x60; - This step had not yet been completed when the Identity Verification attempt as a whole expired. &#x60;canceled&#x60; - The Identity Verification attempt was canceled before the user completed this step. &#x60;pending_review&#x60; - The Identity Verification attempt template was configured to perform a screening that had one or more hits needing review. &#x60;manually_approved&#x60; - The step was manually overridden to pass by a team member in the dashboard. &#x60;manually_rejected&#x60; - The step was manually overridden to fail by a team member in the dashboard. */ @ApiModel(description = "Each step will be one of the following values: `active` - This step is the user's current step. They are either in the process of completing this step, or they recently closed their Identity Verification attempt while in the middle of this step. Only one step will be marked as `active` at any given point. `success` - The Identity Verification attempt has completed this step. `failed` - The user failed this step. This can either call the user to fail the session as a whole, or cause them to fallback to another step depending on how the Identity Verification template is configured. A failed step does not imply a failed session. `waiting_for_prerequisite` - The user needs to complete another step first, before they progress to this step. This step may never run, depending on if the user fails an earlier step or if the step is only run as a fallback. `not_applicable` - This step will not be run for this session. `skipped` - The retry instructions that created this Identity Verification attempt specified that this step should be skipped. `expired` - This step had not yet been completed when the Identity Verification attempt as a whole expired. `canceled` - The Identity Verification attempt was canceled before the user completed this step. `pending_review` - The Identity Verification attempt template was configured to perform a screening that had one or more hits needing review. `manually_approved` - The step was manually overridden to pass by a team member in the dashboard. `manually_rejected` - The step was manually overridden to fail by a team member in the dashboard.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityVerificationStepSummary { public static final String SERIALIZED_NAME_ACCEPT_TOS = "accept_tos"; @SerializedName(SERIALIZED_NAME_ACCEPT_TOS) private IdentityVerificationStepStatus acceptTos; public static final String SERIALIZED_NAME_VERIFY_SMS = "verify_sms"; @SerializedName(SERIALIZED_NAME_VERIFY_SMS) private IdentityVerificationStepStatus verifySms; public static final String SERIALIZED_NAME_KYC_CHECK = "kyc_check"; @SerializedName(SERIALIZED_NAME_KYC_CHECK) private IdentityVerificationStepStatus kycCheck; public static final String SERIALIZED_NAME_DOCUMENTARY_VERIFICATION = "documentary_verification"; @SerializedName(SERIALIZED_NAME_DOCUMENTARY_VERIFICATION) private IdentityVerificationStepStatus documentaryVerification; public static final String SERIALIZED_NAME_SELFIE_CHECK = "selfie_check"; @SerializedName(SERIALIZED_NAME_SELFIE_CHECK) private IdentityVerificationStepStatus selfieCheck; public static final String SERIALIZED_NAME_WATCHLIST_SCREENING = "watchlist_screening"; @SerializedName(SERIALIZED_NAME_WATCHLIST_SCREENING) private IdentityVerificationStepStatus watchlistScreening; public static final String SERIALIZED_NAME_RISK_CHECK = "risk_check"; @SerializedName(SERIALIZED_NAME_RISK_CHECK) private IdentityVerificationStepStatus riskCheck; public IdentityVerificationStepSummary acceptTos(IdentityVerificationStepStatus acceptTos) { this.acceptTos = acceptTos; return this; } /** * Get acceptTos * @return acceptTos **/ @ApiModelProperty(required = true, value = "") public IdentityVerificationStepStatus getAcceptTos() { return acceptTos; } public void setAcceptTos(IdentityVerificationStepStatus acceptTos) { this.acceptTos = acceptTos; } public IdentityVerificationStepSummary verifySms(IdentityVerificationStepStatus verifySms) { this.verifySms = verifySms; return this; } /** * Get verifySms * @return verifySms **/ @ApiModelProperty(required = true, value = "") public IdentityVerificationStepStatus getVerifySms() { return verifySms; } public void setVerifySms(IdentityVerificationStepStatus verifySms) { this.verifySms = verifySms; } public IdentityVerificationStepSummary kycCheck(IdentityVerificationStepStatus kycCheck) { this.kycCheck = kycCheck; return this; } /** * Get kycCheck * @return kycCheck **/ @ApiModelProperty(required = true, value = "") public IdentityVerificationStepStatus getKycCheck() { return kycCheck; } public void setKycCheck(IdentityVerificationStepStatus kycCheck) { this.kycCheck = kycCheck; } public IdentityVerificationStepSummary documentaryVerification(IdentityVerificationStepStatus documentaryVerification) { this.documentaryVerification = documentaryVerification; return this; } /** * Get documentaryVerification * @return documentaryVerification **/ @ApiModelProperty(required = true, value = "") public IdentityVerificationStepStatus getDocumentaryVerification() { return documentaryVerification; } public void setDocumentaryVerification(IdentityVerificationStepStatus documentaryVerification) { this.documentaryVerification = documentaryVerification; } public IdentityVerificationStepSummary selfieCheck(IdentityVerificationStepStatus selfieCheck) { this.selfieCheck = selfieCheck; return this; } /** * Get selfieCheck * @return selfieCheck **/ @ApiModelProperty(required = true, value = "") public IdentityVerificationStepStatus getSelfieCheck() { return selfieCheck; } public void setSelfieCheck(IdentityVerificationStepStatus selfieCheck) { this.selfieCheck = selfieCheck; } public IdentityVerificationStepSummary watchlistScreening(IdentityVerificationStepStatus watchlistScreening) { this.watchlistScreening = watchlistScreening; return this; } /** * Get watchlistScreening * @return watchlistScreening **/ @ApiModelProperty(required = true, value = "") public IdentityVerificationStepStatus getWatchlistScreening() { return watchlistScreening; } public void setWatchlistScreening(IdentityVerificationStepStatus watchlistScreening) { this.watchlistScreening = watchlistScreening; } public IdentityVerificationStepSummary riskCheck(IdentityVerificationStepStatus riskCheck) { this.riskCheck = riskCheck; return this; } /** * Get riskCheck * @return riskCheck **/ @ApiModelProperty(required = true, value = "") public IdentityVerificationStepStatus getRiskCheck() { return riskCheck; } public void setRiskCheck(IdentityVerificationStepStatus riskCheck) { this.riskCheck = riskCheck; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IdentityVerificationStepSummary identityVerificationStepSummary = (IdentityVerificationStepSummary) o; return Objects.equals(this.acceptTos, identityVerificationStepSummary.acceptTos) && Objects.equals(this.verifySms, identityVerificationStepSummary.verifySms) && Objects.equals(this.kycCheck, identityVerificationStepSummary.kycCheck) && Objects.equals(this.documentaryVerification, identityVerificationStepSummary.documentaryVerification) && Objects.equals(this.selfieCheck, identityVerificationStepSummary.selfieCheck) && Objects.equals(this.watchlistScreening, identityVerificationStepSummary.watchlistScreening) && Objects.equals(this.riskCheck, identityVerificationStepSummary.riskCheck); } @Override public int hashCode() { return Objects.hash(acceptTos, verifySms, kycCheck, documentaryVerification, selfieCheck, watchlistScreening, riskCheck); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityVerificationStepSummary {\n"); sb.append(" acceptTos: ").append(toIndentedString(acceptTos)).append("\n"); sb.append(" verifySms: ").append(toIndentedString(verifySms)).append("\n"); sb.append(" kycCheck: ").append(toIndentedString(kycCheck)).append("\n"); sb.append(" documentaryVerification: ").append(toIndentedString(documentaryVerification)).append("\n"); sb.append(" selfieCheck: ").append(toIndentedString(selfieCheck)).append("\n"); sb.append(" watchlistScreening: ").append(toIndentedString(watchlistScreening)).append("\n"); sb.append(" riskCheck: ").append(toIndentedString(riskCheck)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferEventListTransferType.java
src/main/java/com/plaid/client/model/TransferEventListTransferType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The type of transfer. This will be either &#x60;debit&#x60; or &#x60;credit&#x60;. A &#x60;debit&#x60; indicates a transfer of money into your origination account; a &#x60;credit&#x60; indicates a transfer of money out of your origination account. */ @JsonAdapter(TransferEventListTransferType.Adapter.class) public enum TransferEventListTransferType { DEBIT("debit"), CREDIT("credit"), NULL("null"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; TransferEventListTransferType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransferEventListTransferType fromValue(String value) { for (TransferEventListTransferType b : TransferEventListTransferType.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<TransferEventListTransferType> { @Override public void write(final JsonWriter jsonWriter, final TransferEventListTransferType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransferEventListTransferType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransferEventListTransferType.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/BeaconUserData.java
src/main/java/com/plaid/client/model/BeaconUserData.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.BeaconUserAddress; import com.plaid.client.model.BeaconUserDepositoryAccount; import com.plaid.client.model.BeaconUserIDNumber; import com.plaid.client.model.BeaconUserName; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; import java.util.ArrayList; import java.util.List; /** * A Beacon User&#39;s data and resulting analysis when checked against duplicate records and the Beacon Fraud Network. */ @ApiModel(description = "A Beacon User's data and resulting analysis when checked against duplicate records and the Beacon Fraud Network.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconUserData { public static final String SERIALIZED_NAME_DATE_OF_BIRTH = "date_of_birth"; @SerializedName(SERIALIZED_NAME_DATE_OF_BIRTH) private LocalDate dateOfBirth; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private BeaconUserName name; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private BeaconUserAddress address; public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) private String emailAddress; public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBER) private String phoneNumber; public static final String SERIALIZED_NAME_ID_NUMBER = "id_number"; @SerializedName(SERIALIZED_NAME_ID_NUMBER) private BeaconUserIDNumber idNumber; public static final String SERIALIZED_NAME_IP_ADDRESS = "ip_address"; @SerializedName(SERIALIZED_NAME_IP_ADDRESS) private String ipAddress; public static final String SERIALIZED_NAME_DEPOSITORY_ACCOUNTS = "depository_accounts"; @SerializedName(SERIALIZED_NAME_DEPOSITORY_ACCOUNTS) private List<BeaconUserDepositoryAccount> depositoryAccounts = new ArrayList<>(); public BeaconUserData dateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; return this; } /** * A date in the format YYYY-MM-DD (RFC 3339 Section 5.6). * @return dateOfBirth **/ @ApiModelProperty(example = "Tue May 29 00:00:00 UTC 1990", required = true, value = "A date in the format YYYY-MM-DD (RFC 3339 Section 5.6).") public LocalDate getDateOfBirth() { return dateOfBirth; } public void setDateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; } public BeaconUserData name(BeaconUserName name) { this.name = name; return this; } /** * Get name * @return name **/ @ApiModelProperty(required = true, value = "") public BeaconUserName getName() { return name; } public void setName(BeaconUserName name) { this.name = name; } public BeaconUserData address(BeaconUserAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @ApiModelProperty(required = true, value = "") public BeaconUserAddress getAddress() { return address; } public void setAddress(BeaconUserAddress address) { this.address = address; } public BeaconUserData emailAddress(String emailAddress) { this.emailAddress = emailAddress; return this; } /** * A valid email address. Must not have leading or trailing spaces and address must be RFC compliant. For more information, see [RFC 3696](https://datatracker.ietf.org/doc/html/rfc3696). * @return emailAddress **/ @javax.annotation.Nullable @ApiModelProperty(example = "user@example.com", required = true, value = "A valid email address. Must not have leading or trailing spaces and address must be RFC compliant. For more information, see [RFC 3696](https://datatracker.ietf.org/doc/html/rfc3696).") public String getEmailAddress() { return emailAddress; } public void setEmailAddress(String emailAddress) { this.emailAddress = emailAddress; } public BeaconUserData phoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; return this; } /** * A phone number in E.164 format. * @return phoneNumber **/ @javax.annotation.Nullable @ApiModelProperty(example = "+19876543212", required = true, value = "A phone number in E.164 format.") public String getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } public BeaconUserData idNumber(BeaconUserIDNumber idNumber) { this.idNumber = idNumber; return this; } /** * Get idNumber * @return idNumber **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public BeaconUserIDNumber getIdNumber() { return idNumber; } public void setIdNumber(BeaconUserIDNumber idNumber) { this.idNumber = idNumber; } public BeaconUserData ipAddress(String ipAddress) { this.ipAddress = ipAddress; return this; } /** * An IPv4 or IPV6 address. * @return ipAddress **/ @javax.annotation.Nullable @ApiModelProperty(example = "192.0.2.42", required = true, value = "An IPv4 or IPV6 address.") public String getIpAddress() { return ipAddress; } public void setIpAddress(String ipAddress) { this.ipAddress = ipAddress; } public BeaconUserData depositoryAccounts(List<BeaconUserDepositoryAccount> depositoryAccounts) { this.depositoryAccounts = depositoryAccounts; return this; } public BeaconUserData addDepositoryAccountsItem(BeaconUserDepositoryAccount depositoryAccountsItem) { this.depositoryAccounts.add(depositoryAccountsItem); return this; } /** * Get depositoryAccounts * @return depositoryAccounts **/ @ApiModelProperty(required = true, value = "") public List<BeaconUserDepositoryAccount> getDepositoryAccounts() { return depositoryAccounts; } public void setDepositoryAccounts(List<BeaconUserDepositoryAccount> depositoryAccounts) { this.depositoryAccounts = depositoryAccounts; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BeaconUserData beaconUserData = (BeaconUserData) o; return Objects.equals(this.dateOfBirth, beaconUserData.dateOfBirth) && Objects.equals(this.name, beaconUserData.name) && Objects.equals(this.address, beaconUserData.address) && Objects.equals(this.emailAddress, beaconUserData.emailAddress) && Objects.equals(this.phoneNumber, beaconUserData.phoneNumber) && Objects.equals(this.idNumber, beaconUserData.idNumber) && Objects.equals(this.ipAddress, beaconUserData.ipAddress) && Objects.equals(this.depositoryAccounts, beaconUserData.depositoryAccounts); } @Override public int hashCode() { return Objects.hash(dateOfBirth, name, address, emailAddress, phoneNumber, idNumber, ipAddress, depositoryAccounts); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconUserData {\n"); sb.append(" dateOfBirth: ").append(toIndentedString(dateOfBirth)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n"); sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n"); sb.append(" idNumber: ").append(toIndentedString(idNumber)).append("\n"); sb.append(" ipAddress: ").append(toIndentedString(ipAddress)).append("\n"); sb.append(" depositoryAccounts: ").append(toIndentedString(depositoryAccounts)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/RiskCheckStolenIdentity.java
src/main/java/com/plaid/client/model/RiskCheckStolenIdentity.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.RiskLevel; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Field containing the data used in determining the outcome of the stolen identity risk check. Contains the following fields: &#x60;score&#x60; - A score from 0 to 100 indicating the likelihood that the user is a stolen identity. */ @ApiModel(description = "Field containing the data used in determining the outcome of the stolen identity risk check. Contains the following fields: `score` - A score from 0 to 100 indicating the likelihood that the user is a stolen identity.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class RiskCheckStolenIdentity { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) private Integer score; public static final String SERIALIZED_NAME_RISK_LEVEL = "risk_level"; @SerializedName(SERIALIZED_NAME_RISK_LEVEL) private RiskLevel riskLevel; public RiskCheckStolenIdentity score(Integer score) { this.score = score; return this; } /** * A score from 0 to 100 indicating the likelihood that the user is a stolen identity. * @return score **/ @ApiModelProperty(example = "0", required = true, value = "A score from 0 to 100 indicating the likelihood that the user is a stolen identity.") public Integer getScore() { return score; } public void setScore(Integer score) { this.score = score; } public RiskCheckStolenIdentity riskLevel(RiskLevel riskLevel) { this.riskLevel = riskLevel; return this; } /** * Get riskLevel * @return riskLevel **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public RiskLevel getRiskLevel() { return riskLevel; } public void setRiskLevel(RiskLevel riskLevel) { this.riskLevel = riskLevel; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } RiskCheckStolenIdentity riskCheckStolenIdentity = (RiskCheckStolenIdentity) o; return Objects.equals(this.score, riskCheckStolenIdentity.score) && Objects.equals(this.riskLevel, riskCheckStolenIdentity.riskLevel); } @Override public int hashCode() { return Objects.hash(score, riskLevel); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class RiskCheckStolenIdentity {\n"); sb.append(" score: ").append(toIndentedString(score)).append("\n"); sb.append(" riskLevel: ").append(toIndentedString(riskLevel)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IncomeBreakdownType.java
src/main/java/com/plaid/client/model/IncomeBreakdownType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The type of income. Possible values include: &#x60;\&quot;regular\&quot;&#x60;: regular income &#x60;\&quot;overtime\&quot;&#x60;: overtime income &#x60;\&quot;bonus\&quot;&#x60;: bonus income */ @JsonAdapter(IncomeBreakdownType.Adapter.class) public enum IncomeBreakdownType { BONUS("bonus"), OVERTIME("overtime"), REGULAR("regular"), NULL("null"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; IncomeBreakdownType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static IncomeBreakdownType fromValue(String value) { for (IncomeBreakdownType b : IncomeBreakdownType.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<IncomeBreakdownType> { @Override public void write(final JsonWriter jsonWriter, final IncomeBreakdownType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public IncomeBreakdownType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return IncomeBreakdownType.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/BankTransferSweep.java
src/main/java/com/plaid/client/model/BankTransferSweep.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * BankTransferSweep describes a sweep transfer. */ @ApiModel(description = "BankTransferSweep describes a sweep transfer.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BankTransferSweep { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) private String id; public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) private OffsetDateTime createdAt; public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private String amount; public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code"; @SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE) private String isoCurrencyCode; public BankTransferSweep id(String id) { this.id = id; return this; } /** * Identifier of the sweep. * @return id **/ @ApiModelProperty(required = true, value = "Identifier of the sweep.") public String getId() { return id; } public void setId(String id) { this.id = id; } public BankTransferSweep createdAt(OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** * The datetime when the sweep occurred, in RFC 3339 format. * @return createdAt **/ @ApiModelProperty(required = true, value = "The datetime when the sweep occurred, in RFC 3339 format.") public OffsetDateTime getCreatedAt() { return createdAt; } public void setCreatedAt(OffsetDateTime createdAt) { this.createdAt = createdAt; } public BankTransferSweep amount(String amount) { this.amount = amount; return this; } /** * The amount of the sweep. * @return amount **/ @ApiModelProperty(required = true, value = "The amount of the sweep.") public String getAmount() { return amount; } public void setAmount(String amount) { this.amount = amount; } public BankTransferSweep isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The currency of the sweep, e.g. \&quot;USD\&quot;. * @return isoCurrencyCode **/ @ApiModelProperty(required = true, value = "The currency of the sweep, e.g. \"USD\".") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BankTransferSweep bankTransferSweep = (BankTransferSweep) o; return Objects.equals(this.id, bankTransferSweep.id) && Objects.equals(this.createdAt, bankTransferSweep.createdAt) && Objects.equals(this.amount, bankTransferSweep.amount) && Objects.equals(this.isoCurrencyCode, bankTransferSweep.isoCurrencyCode); } @Override public int hashCode() { return Objects.hash(id, createdAt, amount, isoCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BankTransferSweep {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditSessionResults.java
src/main/java/com/plaid/client/model/CreditSessionResults.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CreditSessionBankEmploymentResult; import com.plaid.client.model.CreditSessionBankIncomeResult; import com.plaid.client.model.CreditSessionDocumentIncomeResult; import com.plaid.client.model.CreditSessionItemAddResult; import com.plaid.client.model.CreditSessionPayrollIncomeResult; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * The set of results for a Link session. */ @ApiModel(description = "The set of results for a Link session.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditSessionResults { public static final String SERIALIZED_NAME_ITEM_ADD_RESULTS = "item_add_results"; @SerializedName(SERIALIZED_NAME_ITEM_ADD_RESULTS) private List<CreditSessionItemAddResult> itemAddResults = null; public static final String SERIALIZED_NAME_BANK_INCOME_RESULTS = "bank_income_results"; @SerializedName(SERIALIZED_NAME_BANK_INCOME_RESULTS) private List<CreditSessionBankIncomeResult> bankIncomeResults = null; public static final String SERIALIZED_NAME_BANK_EMPLOYMENT_RESULTS = "bank_employment_results"; @SerializedName(SERIALIZED_NAME_BANK_EMPLOYMENT_RESULTS) private List<CreditSessionBankEmploymentResult> bankEmploymentResults = null; public static final String SERIALIZED_NAME_PAYROLL_INCOME_RESULTS = "payroll_income_results"; @SerializedName(SERIALIZED_NAME_PAYROLL_INCOME_RESULTS) private List<CreditSessionPayrollIncomeResult> payrollIncomeResults = null; public static final String SERIALIZED_NAME_DOCUMENT_INCOME_RESULTS = "document_income_results"; @SerializedName(SERIALIZED_NAME_DOCUMENT_INCOME_RESULTS) private CreditSessionDocumentIncomeResult documentIncomeResults; public CreditSessionResults itemAddResults(List<CreditSessionItemAddResult> itemAddResults) { this.itemAddResults = itemAddResults; return this; } public CreditSessionResults addItemAddResultsItem(CreditSessionItemAddResult itemAddResultsItem) { if (this.itemAddResults == null) { this.itemAddResults = new ArrayList<>(); } this.itemAddResults.add(itemAddResultsItem); return this; } /** * The set of Item adds for the Link session. * @return itemAddResults **/ @javax.annotation.Nullable @ApiModelProperty(value = "The set of Item adds for the Link session.") public List<CreditSessionItemAddResult> getItemAddResults() { return itemAddResults; } public void setItemAddResults(List<CreditSessionItemAddResult> itemAddResults) { this.itemAddResults = itemAddResults; } public CreditSessionResults bankIncomeResults(List<CreditSessionBankIncomeResult> bankIncomeResults) { this.bankIncomeResults = bankIncomeResults; return this; } public CreditSessionResults addBankIncomeResultsItem(CreditSessionBankIncomeResult bankIncomeResultsItem) { if (this.bankIncomeResults == null) { this.bankIncomeResults = new ArrayList<>(); } this.bankIncomeResults.add(bankIncomeResultsItem); return this; } /** * The set of bank income verifications for the Link session. * @return bankIncomeResults **/ @javax.annotation.Nullable @ApiModelProperty(value = "The set of bank income verifications for the Link session.") public List<CreditSessionBankIncomeResult> getBankIncomeResults() { return bankIncomeResults; } public void setBankIncomeResults(List<CreditSessionBankIncomeResult> bankIncomeResults) { this.bankIncomeResults = bankIncomeResults; } public CreditSessionResults bankEmploymentResults(List<CreditSessionBankEmploymentResult> bankEmploymentResults) { this.bankEmploymentResults = bankEmploymentResults; return this; } public CreditSessionResults addBankEmploymentResultsItem(CreditSessionBankEmploymentResult bankEmploymentResultsItem) { if (this.bankEmploymentResults == null) { this.bankEmploymentResults = new ArrayList<>(); } this.bankEmploymentResults.add(bankEmploymentResultsItem); return this; } /** * The set of bank employment verifications for the Link session. * @return bankEmploymentResults **/ @javax.annotation.Nullable @ApiModelProperty(value = "The set of bank employment verifications for the Link session.") public List<CreditSessionBankEmploymentResult> getBankEmploymentResults() { return bankEmploymentResults; } public void setBankEmploymentResults(List<CreditSessionBankEmploymentResult> bankEmploymentResults) { this.bankEmploymentResults = bankEmploymentResults; } public CreditSessionResults payrollIncomeResults(List<CreditSessionPayrollIncomeResult> payrollIncomeResults) { this.payrollIncomeResults = payrollIncomeResults; return this; } public CreditSessionResults addPayrollIncomeResultsItem(CreditSessionPayrollIncomeResult payrollIncomeResultsItem) { if (this.payrollIncomeResults == null) { this.payrollIncomeResults = new ArrayList<>(); } this.payrollIncomeResults.add(payrollIncomeResultsItem); return this; } /** * The set of payroll income verifications for the Link session. * @return payrollIncomeResults **/ @javax.annotation.Nullable @ApiModelProperty(value = "The set of payroll income verifications for the Link session.") public List<CreditSessionPayrollIncomeResult> getPayrollIncomeResults() { return payrollIncomeResults; } public void setPayrollIncomeResults(List<CreditSessionPayrollIncomeResult> payrollIncomeResults) { this.payrollIncomeResults = payrollIncomeResults; } public CreditSessionResults documentIncomeResults(CreditSessionDocumentIncomeResult documentIncomeResults) { this.documentIncomeResults = documentIncomeResults; return this; } /** * Get documentIncomeResults * @return documentIncomeResults **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CreditSessionDocumentIncomeResult getDocumentIncomeResults() { return documentIncomeResults; } public void setDocumentIncomeResults(CreditSessionDocumentIncomeResult documentIncomeResults) { this.documentIncomeResults = documentIncomeResults; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditSessionResults creditSessionResults = (CreditSessionResults) o; return Objects.equals(this.itemAddResults, creditSessionResults.itemAddResults) && Objects.equals(this.bankIncomeResults, creditSessionResults.bankIncomeResults) && Objects.equals(this.bankEmploymentResults, creditSessionResults.bankEmploymentResults) && Objects.equals(this.payrollIncomeResults, creditSessionResults.payrollIncomeResults) && Objects.equals(this.documentIncomeResults, creditSessionResults.documentIncomeResults); } @Override public int hashCode() { return Objects.hash(itemAddResults, bankIncomeResults, bankEmploymentResults, payrollIncomeResults, documentIncomeResults); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditSessionResults {\n"); sb.append(" itemAddResults: ").append(toIndentedString(itemAddResults)).append("\n"); sb.append(" bankIncomeResults: ").append(toIndentedString(bankIncomeResults)).append("\n"); sb.append(" bankEmploymentResults: ").append(toIndentedString(bankEmploymentResults)).append("\n"); sb.append(" payrollIncomeResults: ").append(toIndentedString(payrollIncomeResults)).append("\n"); sb.append(" documentIncomeResults: ").append(toIndentedString(documentIncomeResults)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/Originator.java
src/main/java/com/plaid/client/model/Originator.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.TransferDiligenceStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Originator and their status. */ @ApiModel(description = "Originator and their status.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Originator { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_TRANSFER_DILIGENCE_STATUS = "transfer_diligence_status"; @SerializedName(SERIALIZED_NAME_TRANSFER_DILIGENCE_STATUS) private TransferDiligenceStatus transferDiligenceStatus; public Originator clientId(String clientId) { this.clientId = clientId; return this; } /** * Originator’s client ID. * @return clientId **/ @ApiModelProperty(required = true, value = "Originator’s client ID.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public Originator transferDiligenceStatus(TransferDiligenceStatus transferDiligenceStatus) { this.transferDiligenceStatus = transferDiligenceStatus; return this; } /** * Get transferDiligenceStatus * @return transferDiligenceStatus **/ @ApiModelProperty(required = true, value = "") public TransferDiligenceStatus getTransferDiligenceStatus() { return transferDiligenceStatus; } public void setTransferDiligenceStatus(TransferDiligenceStatus transferDiligenceStatus) { this.transferDiligenceStatus = transferDiligenceStatus; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Originator originator = (Originator) o; return Objects.equals(this.clientId, originator.clientId) && Objects.equals(this.transferDiligenceStatus, originator.transferDiligenceStatus); } @Override public int hashCode() { return Objects.hash(clientId, transferDiligenceStatus); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Originator {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" transferDiligenceStatus: ").append(toIndentedString(transferDiligenceStatus)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferAuthorizationRiskLevel.java
src/main/java/com/plaid/client/model/TransferAuthorizationRiskLevel.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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; /** * Comprises five risk categories (high risk, medium-high risk, medium risk, medium-low risk, low risk) based on the probability of return */ @JsonAdapter(TransferAuthorizationRiskLevel.Adapter.class) public enum TransferAuthorizationRiskLevel { HIGH_RISK("HIGH_RISK"), MEDIUM_HIGH_RISK("MEDIUM_HIGH_RISK"), MEDIUM_RISK("MEDIUM_RISK"), MEDIUM_LOW_RISK("MEDIUM_LOW_RISK"), LOW_RISK("LOW_RISK"), // 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; TransferAuthorizationRiskLevel(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransferAuthorizationRiskLevel fromValue(String value) { for (TransferAuthorizationRiskLevel b : TransferAuthorizationRiskLevel.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<TransferAuthorizationRiskLevel> { @Override public void write(final JsonWriter jsonWriter, final TransferAuthorizationRiskLevel enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransferAuthorizationRiskLevel read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransferAuthorizationRiskLevel.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/IdentityDocumentUploadMetadata.java
src/main/java/com/plaid/client/model/IdentityDocumentUploadMetadata.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * Metadata pertaining to the document. */ @ApiModel(description = "Metadata pertaining to the document.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityDocumentUploadMetadata { public static final String SERIALIZED_NAME_DOCUMENT_TYPE = "document_type"; @SerializedName(SERIALIZED_NAME_DOCUMENT_TYPE) private String documentType; public static final String SERIALIZED_NAME_IS_ACCOUNT_NUMBER_MATCH = "is_account_number_match"; @SerializedName(SERIALIZED_NAME_IS_ACCOUNT_NUMBER_MATCH) private Boolean isAccountNumberMatch; public static final String SERIALIZED_NAME_PAGE_COUNT = "page_count"; @SerializedName(SERIALIZED_NAME_PAGE_COUNT) private Integer pageCount; public static final String SERIALIZED_NAME_LAST_UPDATED = "last_updated"; @SerializedName(SERIALIZED_NAME_LAST_UPDATED) private OffsetDateTime lastUpdated; public static final String SERIALIZED_NAME_UPLOADED_AT = "uploaded_at"; @SerializedName(SERIALIZED_NAME_UPLOADED_AT) private OffsetDateTime uploadedAt; public IdentityDocumentUploadMetadata documentType(String documentType) { this.documentType = documentType; return this; } /** * The submitted document type. Currently, this will always be &#x60;BANK_STATEMENT&#x60;. * @return documentType **/ @javax.annotation.Nullable @ApiModelProperty(value = "The submitted document type. Currently, this will always be `BANK_STATEMENT`.") public String getDocumentType() { return documentType; } public void setDocumentType(String documentType) { this.documentType = documentType; } public IdentityDocumentUploadMetadata isAccountNumberMatch(Boolean isAccountNumberMatch) { this.isAccountNumberMatch = isAccountNumberMatch; return this; } /** * Boolean field indicating whether the uploaded document&#39;s account number matches the account number we have on file. If &#x60;false&#x60;, it is not recommended to accept the uploaded identity data as accurate without further verification. * @return isAccountNumberMatch **/ @javax.annotation.Nullable @ApiModelProperty(value = "Boolean field indicating whether the uploaded document's account number matches the account number we have on file. If `false`, it is not recommended to accept the uploaded identity data as accurate without further verification.") public Boolean getIsAccountNumberMatch() { return isAccountNumberMatch; } public void setIsAccountNumberMatch(Boolean isAccountNumberMatch) { this.isAccountNumberMatch = isAccountNumberMatch; } public IdentityDocumentUploadMetadata pageCount(Integer pageCount) { this.pageCount = pageCount; return this; } /** * The number of pages in the uploaded document. * @return pageCount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of pages in the uploaded document.") public Integer getPageCount() { return pageCount; } public void setPageCount(Integer pageCount) { this.pageCount = pageCount; } public IdentityDocumentUploadMetadata lastUpdated(OffsetDateTime lastUpdated) { this.lastUpdated = lastUpdated; return this; } /** * The timestamp when the document was last updated. * @return lastUpdated **/ @javax.annotation.Nullable @ApiModelProperty(value = "The timestamp when the document was last updated.") public OffsetDateTime getLastUpdated() { return lastUpdated; } public void setLastUpdated(OffsetDateTime lastUpdated) { this.lastUpdated = lastUpdated; } public IdentityDocumentUploadMetadata uploadedAt(OffsetDateTime uploadedAt) { this.uploadedAt = uploadedAt; return this; } /** * The timestamp when the document was originally uploaded. * @return uploadedAt **/ @javax.annotation.Nullable @ApiModelProperty(value = "The timestamp when the document was originally uploaded.") public OffsetDateTime getUploadedAt() { return uploadedAt; } public void setUploadedAt(OffsetDateTime uploadedAt) { this.uploadedAt = uploadedAt; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IdentityDocumentUploadMetadata identityDocumentUploadMetadata = (IdentityDocumentUploadMetadata) o; return Objects.equals(this.documentType, identityDocumentUploadMetadata.documentType) && Objects.equals(this.isAccountNumberMatch, identityDocumentUploadMetadata.isAccountNumberMatch) && Objects.equals(this.pageCount, identityDocumentUploadMetadata.pageCount) && Objects.equals(this.lastUpdated, identityDocumentUploadMetadata.lastUpdated) && Objects.equals(this.uploadedAt, identityDocumentUploadMetadata.uploadedAt); } @Override public int hashCode() { return Objects.hash(documentType, isAccountNumberMatch, pageCount, lastUpdated, uploadedAt); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityDocumentUploadMetadata {\n"); sb.append(" documentType: ").append(toIndentedString(documentType)).append("\n"); sb.append(" isAccountNumberMatch: ").append(toIndentedString(isAccountNumberMatch)).append("\n"); sb.append(" pageCount: ").append(toIndentedString(pageCount)).append("\n"); sb.append(" lastUpdated: ").append(toIndentedString(lastUpdated)).append("\n"); sb.append(" uploadedAt: ").append(toIndentedString(uploadedAt)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckEmployer.java
src/main/java/com/plaid/client/model/IncomeVerificationPrecheckEmployer.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.IncomeVerificationPrecheckEmployerAddress; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Information about the end user&#39;s employer */ @ApiModel(description = "Information about the end user's employer") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IncomeVerificationPrecheckEmployer { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private IncomeVerificationPrecheckEmployerAddress address; public static final String SERIALIZED_NAME_TAX_ID = "tax_id"; @SerializedName(SERIALIZED_NAME_TAX_ID) private String taxId; public static final String SERIALIZED_NAME_URL = "url"; @SerializedName(SERIALIZED_NAME_URL) private String url; public IncomeVerificationPrecheckEmployer name(String name) { this.name = name; return this; } /** * The employer&#39;s name * @return name **/ @javax.annotation.Nullable @ApiModelProperty(value = "The employer's name") public String getName() { return name; } public void setName(String name) { this.name = name; } public IncomeVerificationPrecheckEmployer address(IncomeVerificationPrecheckEmployerAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public IncomeVerificationPrecheckEmployerAddress getAddress() { return address; } public void setAddress(IncomeVerificationPrecheckEmployerAddress address) { this.address = address; } public IncomeVerificationPrecheckEmployer taxId(String taxId) { this.taxId = taxId; return this; } /** * The employer&#39;s tax id * @return taxId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The employer's tax id") public String getTaxId() { return taxId; } public void setTaxId(String taxId) { this.taxId = taxId; } public IncomeVerificationPrecheckEmployer url(String url) { this.url = url; return this; } /** * The URL for the employer&#39;s public website * @return url **/ @javax.annotation.Nullable @ApiModelProperty(value = "The URL for the employer's public website") public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IncomeVerificationPrecheckEmployer incomeVerificationPrecheckEmployer = (IncomeVerificationPrecheckEmployer) o; return Objects.equals(this.name, incomeVerificationPrecheckEmployer.name) && Objects.equals(this.address, incomeVerificationPrecheckEmployer.address) && Objects.equals(this.taxId, incomeVerificationPrecheckEmployer.taxId) && Objects.equals(this.url, incomeVerificationPrecheckEmployer.url); } @Override public int hashCode() { return Objects.hash(name, address, taxId, url); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IncomeVerificationPrecheckEmployer {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" taxId: ").append(toIndentedString(taxId)).append("\n"); sb.append(" url: ").append(toIndentedString(url)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkTokenCreateRequestUser.java
src/main/java/com/plaid/client/model/LinkTokenCreateRequestUser.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.IdentityVerificationRequestUserName; import com.plaid.client.model.UserAddress; import com.plaid.client.model.UserIDNumber; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; import java.time.OffsetDateTime; /** * An object specifying information about the end user who will be linking their account. **Required** if &#x60;user_id&#x60; isn&#39;t included. */ @ApiModel(description = "An object specifying information about the end user who will be linking their account. **Required** if `user_id` isn't included.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkTokenCreateRequestUser { 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_LEGAL_NAME = "legal_name"; @SerializedName(SERIALIZED_NAME_LEGAL_NAME) private String legalName; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private IdentityVerificationRequestUserName name; public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBER) private String phoneNumber; public static final String SERIALIZED_NAME_PHONE_NUMBER_VERIFIED_TIME = "phone_number_verified_time"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBER_VERIFIED_TIME) private OffsetDateTime phoneNumberVerifiedTime; public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) private String emailAddress; public static final String SERIALIZED_NAME_EMAIL_ADDRESS_VERIFIED_TIME = "email_address_verified_time"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS_VERIFIED_TIME) private OffsetDateTime emailAddressVerifiedTime; public static final String SERIALIZED_NAME_SSN = "ssn"; @SerializedName(SERIALIZED_NAME_SSN) private String ssn; 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_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private UserAddress address; public static final String SERIALIZED_NAME_ID_NUMBER = "id_number"; @SerializedName(SERIALIZED_NAME_ID_NUMBER) private UserIDNumber idNumber; public LinkTokenCreateRequestUser clientUserId(String clientUserId) { this.clientUserId = clientUserId; return this; } /** * A unique ID representing the end user. Typically this will be a user ID number from your application. Personally identifiable information, such as an email address or phone number, should not be used in the &#x60;client_user_id&#x60;. It is currently used as a means of searching logs for the given user in the Plaid Dashboard. * @return clientUserId **/ @ApiModelProperty(required = true, value = "A unique ID representing the end user. Typically this will be a user ID number from your application. Personally identifiable information, such as an email address or phone number, should not be used in the `client_user_id`. It is currently used as a means of searching logs for the given user in the Plaid Dashboard.") public String getClientUserId() { return clientUserId; } public void setClientUserId(String clientUserId) { this.clientUserId = clientUserId; } public LinkTokenCreateRequestUser legalName(String legalName) { this.legalName = legalName; return this; } /** * The user&#39;s full legal name, used for [micro-deposit based verification flows](https://plaid.com/docs/auth/coverage/). For a small number of customers on legacy flows, providing this field is required to enable micro-deposit-based flows. For all other customers, this field is optional. Providing the user&#39;s name in this field when using micro-deposit-based verification will streamline the end user experience, as the user will not be prompted to enter their name during the Link flow; Plaid will use the provided legal name instead. * @return legalName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's full legal name, used for [micro-deposit based verification flows](https://plaid.com/docs/auth/coverage/). For a small number of customers on legacy flows, providing this field is required to enable micro-deposit-based flows. For all other customers, this field is optional. Providing the user's name in this field when using micro-deposit-based verification will streamline the end user experience, as the user will not be prompted to enter their name during the Link flow; Plaid will use the provided legal name instead.") public String getLegalName() { return legalName; } public void setLegalName(String legalName) { this.legalName = legalName; } public LinkTokenCreateRequestUser name(IdentityVerificationRequestUserName name) { this.name = name; return this; } /** * Get name * @return name **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public IdentityVerificationRequestUserName getName() { return name; } public void setName(IdentityVerificationRequestUserName name) { this.name = name; } public LinkTokenCreateRequestUser phoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; return this; } /** * The user&#39;s phone number in [E.164](https://en.wikipedia.org/wiki/E.164) format. If supplied, will be used when applicable to prefill phone number fields in Link for the [returning user flow](https://plaid.com/docs/link/returning-user) and the [Identity Verification flow](https://plaid.com/docs/identity-verification). Phone number input is validated against valid number ranges; number strings that do not match a real-world phone numbering scheme may cause the request to fail, even in the Sandbox test environment. * @return phoneNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's phone number in [E.164](https://en.wikipedia.org/wiki/E.164) format. If supplied, will be used when applicable to prefill phone number fields in Link for the [returning user flow](https://plaid.com/docs/link/returning-user) and the [Identity Verification flow](https://plaid.com/docs/identity-verification). Phone number input is validated against valid number ranges; number strings that do not match a real-world phone numbering scheme may cause the request to fail, even in the Sandbox test environment.") public String getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } public LinkTokenCreateRequestUser phoneNumberVerifiedTime(OffsetDateTime phoneNumberVerifiedTime) { this.phoneNumberVerifiedTime = phoneNumberVerifiedTime; return this; } /** * The date and time the phone number was verified in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (&#x60;YYYY-MM-DDThh:mm:ssZ&#x60;). This was previously an optional field used in the [returning user experience](https://plaid.com/docs/link/returning-user). This field is no longer required to enable the returning user experience. Only pass a verification time for a phone number that you have verified. If you have performed verification but don’t have the time, you may supply a signal value of the start of the UNIX epoch. Example: &#x60;2020-01-01T00:00:00Z&#x60; * @return phoneNumberVerifiedTime **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date and time the phone number was verified in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDThh:mm:ssZ`). This was previously an optional field used in the [returning user experience](https://plaid.com/docs/link/returning-user). This field is no longer required to enable the returning user experience. Only pass a verification time for a phone number that you have verified. If you have performed verification but don’t have the time, you may supply a signal value of the start of the UNIX epoch. Example: `2020-01-01T00:00:00Z` ") public OffsetDateTime getPhoneNumberVerifiedTime() { return phoneNumberVerifiedTime; } public void setPhoneNumberVerifiedTime(OffsetDateTime phoneNumberVerifiedTime) { this.phoneNumberVerifiedTime = phoneNumberVerifiedTime; } public LinkTokenCreateRequestUser emailAddress(String emailAddress) { this.emailAddress = emailAddress; return this; } /** * The user&#39;s email address. Can be used to prefill Link fields when used with [Identity Verification](https://plaid.com/docs/identity-verification). * @return emailAddress **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's email address. Can be used to prefill Link fields when used with [Identity Verification](https://plaid.com/docs/identity-verification).") public String getEmailAddress() { return emailAddress; } public void setEmailAddress(String emailAddress) { this.emailAddress = emailAddress; } public LinkTokenCreateRequestUser emailAddressVerifiedTime(OffsetDateTime emailAddressVerifiedTime) { this.emailAddressVerifiedTime = emailAddressVerifiedTime; return this; } /** * The date and time the email address was verified in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (&#x60;YYYY-MM-DDThh:mm:ssZ&#x60;). This was previously an optional field used in the [returning user experience](https://plaid.com/docs/link/returning-user). This field is no longer required to enable the returning user experience. Only pass a verification time for an email address that you have verified. If you have performed verification but don’t have the time, you may supply a signal value of the start of the UNIX epoch. Example: &#x60;2020-01-01T00:00:00Z&#x60; * @return emailAddressVerifiedTime **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date and time the email address was verified in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDThh:mm:ssZ`). This was previously an optional field used in the [returning user experience](https://plaid.com/docs/link/returning-user). This field is no longer required to enable the returning user experience. Only pass a verification time for an email address that you have verified. If you have performed verification but don’t have the time, you may supply a signal value of the start of the UNIX epoch. Example: `2020-01-01T00:00:00Z`") public OffsetDateTime getEmailAddressVerifiedTime() { return emailAddressVerifiedTime; } public void setEmailAddressVerifiedTime(OffsetDateTime emailAddressVerifiedTime) { this.emailAddressVerifiedTime = emailAddressVerifiedTime; } public LinkTokenCreateRequestUser ssn(String ssn) { this.ssn = ssn; return this; } /** * Deprecated and not currently used, use the &#x60;id_number&#x60; field instead. * @return ssn **/ @javax.annotation.Nullable @ApiModelProperty(value = "Deprecated and not currently used, use the `id_number` field instead.") public String getSsn() { return ssn; } public void setSsn(String ssn) { this.ssn = ssn; } public LinkTokenCreateRequestUser dateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; return this; } /** * To be provided in the format \&quot;yyyy-mm-dd\&quot;. Can be used to prefill Link fields when used with Identity Verification. * @return dateOfBirth **/ @javax.annotation.Nullable @ApiModelProperty(value = "To be provided in the format \"yyyy-mm-dd\". Can be used to prefill Link fields when used with Identity Verification.") public LocalDate getDateOfBirth() { return dateOfBirth; } public void setDateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; } public LinkTokenCreateRequestUser address(UserAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public UserAddress getAddress() { return address; } public void setAddress(UserAddress address) { this.address = address; } public LinkTokenCreateRequestUser idNumber(UserIDNumber idNumber) { this.idNumber = idNumber; return this; } /** * Get idNumber * @return idNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public UserIDNumber getIdNumber() { return idNumber; } public void setIdNumber(UserIDNumber idNumber) { this.idNumber = idNumber; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkTokenCreateRequestUser linkTokenCreateRequestUser = (LinkTokenCreateRequestUser) o; return Objects.equals(this.clientUserId, linkTokenCreateRequestUser.clientUserId) && Objects.equals(this.legalName, linkTokenCreateRequestUser.legalName) && Objects.equals(this.name, linkTokenCreateRequestUser.name) && Objects.equals(this.phoneNumber, linkTokenCreateRequestUser.phoneNumber) && Objects.equals(this.phoneNumberVerifiedTime, linkTokenCreateRequestUser.phoneNumberVerifiedTime) && Objects.equals(this.emailAddress, linkTokenCreateRequestUser.emailAddress) && Objects.equals(this.emailAddressVerifiedTime, linkTokenCreateRequestUser.emailAddressVerifiedTime) && Objects.equals(this.ssn, linkTokenCreateRequestUser.ssn) && Objects.equals(this.dateOfBirth, linkTokenCreateRequestUser.dateOfBirth) && Objects.equals(this.address, linkTokenCreateRequestUser.address) && Objects.equals(this.idNumber, linkTokenCreateRequestUser.idNumber); } @Override public int hashCode() { return Objects.hash(clientUserId, legalName, name, phoneNumber, phoneNumberVerifiedTime, emailAddress, emailAddressVerifiedTime, ssn, dateOfBirth, address, idNumber); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkTokenCreateRequestUser {\n"); sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n"); sb.append(" legalName: ").append(toIndentedString(legalName)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n"); sb.append(" phoneNumberVerifiedTime: ").append(toIndentedString(phoneNumberVerifiedTime)).append("\n"); sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n"); sb.append(" emailAddressVerifiedTime: ").append(toIndentedString(emailAddressVerifiedTime)).append("\n"); sb.append(" ssn: ").append(toIndentedString(ssn)).append("\n"); sb.append(" dateOfBirth: ").append(toIndentedString(dateOfBirth)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" idNumber: ").append(toIndentedString(idNumber)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/JWTHeader.java
src/main/java/com/plaid/client/model/JWTHeader.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 JWT Header, used for webhook validation */ @ApiModel(description = "A JWT Header, used for webhook validation") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class JWTHeader { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) private String id; public static final String SERIALIZED_NAME_KID = "kid"; @SerializedName(SERIALIZED_NAME_KID) private String kid; public static final String SERIALIZED_NAME_ALG = "alg"; @SerializedName(SERIALIZED_NAME_ALG) private String alg; public JWTHeader id(String id) { this.id = id; return this; } /** * Get id * @return id **/ @ApiModelProperty(required = true, value = "") public String getId() { return id; } public void setId(String id) { this.id = id; } public JWTHeader kid(String kid) { this.kid = kid; return this; } /** * Get kid * @return kid **/ @ApiModelProperty(required = true, value = "") public String getKid() { return kid; } public void setKid(String kid) { this.kid = kid; } public JWTHeader alg(String alg) { this.alg = alg; return this; } /** * Get alg * @return alg **/ @ApiModelProperty(required = true, value = "") public String getAlg() { return alg; } public void setAlg(String alg) { this.alg = alg; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } JWTHeader jwTHeader = (JWTHeader) o; return Objects.equals(this.id, jwTHeader.id) && Objects.equals(this.kid, jwTHeader.kid) && Objects.equals(this.alg, jwTHeader.alg); } @Override public int hashCode() { return Objects.hash(id, kid, alg); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class JWTHeader {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" kid: ").append(toIndentedString(kid)).append("\n"); sb.append(" alg: ").append(toIndentedString(alg)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false