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/CreditPayStubAddress.java
src/main/java/com/plaid/client/model/CreditPayStubAddress.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Address on the pay stub. */ @ApiModel(description = "Address on the pay stub.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditPayStubAddress { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) private String city; public static final String SERIALIZED_NAME_COUNTRY = "country"; @SerializedName(SERIALIZED_NAME_COUNTRY) private String country; public static final String SERIALIZED_NAME_POSTAL_CODE = "postal_code"; @SerializedName(SERIALIZED_NAME_POSTAL_CODE) private String postalCode; public static final String SERIALIZED_NAME_REGION = "region"; @SerializedName(SERIALIZED_NAME_REGION) private String region; public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) private String street; public CreditPayStubAddress city(String city) { this.city = city; return this; } /** * The full city name. * @return city **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The full city name.") public String getCity() { return city; } public void setCity(String city) { this.city = city; } public CreditPayStubAddress country(String country) { this.country = country; return this; } /** * The ISO 3166-1 alpha-2 country code. * @return country **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ISO 3166-1 alpha-2 country code.") public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public CreditPayStubAddress postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * The postal code of the address. * @return postalCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The postal code of the address.") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public CreditPayStubAddress region(String region) { this.region = region; return this; } /** * The region or state. Example: `\"NC\"` * @return region **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The region or state. Example: `\"NC\"`") public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public CreditPayStubAddress street(String street) { this.street = street; return this; } /** * The full street address. * @return street **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The full street address.") public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditPayStubAddress creditPayStubAddress = (CreditPayStubAddress) o; return Objects.equals(this.city, creditPayStubAddress.city) && Objects.equals(this.country, creditPayStubAddress.country) && Objects.equals(this.postalCode, creditPayStubAddress.postalCode) && Objects.equals(this.region, creditPayStubAddress.region) && Objects.equals(this.street, creditPayStubAddress.street); } @Override public int hashCode() { return Objects.hash(city, country, postalCode, region, street); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditPayStubAddress {\n"); sb.append(" city: ").append(toIndentedString(city)).append("\n"); sb.append(" country: ").append(toIndentedString(country)).append("\n"); sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n"); sb.append(" region: ").append(toIndentedString(region)).append("\n"); sb.append(" street: ").append(toIndentedString(street)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferWireDetails.java
src/main/java/com/plaid/client/model/TransferWireDetails.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Information specific to wire transfers. */ @ApiModel(description = "Information specific to wire transfers.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferWireDetails { public static final String SERIALIZED_NAME_MESSAGE_TO_BENEFICIARY = "message_to_beneficiary"; @SerializedName(SERIALIZED_NAME_MESSAGE_TO_BENEFICIARY) private String messageToBeneficiary; public static final String SERIALIZED_NAME_WIRE_RETURN_FEE = "wire_return_fee"; @SerializedName(SERIALIZED_NAME_WIRE_RETURN_FEE) private String wireReturnFee; public TransferWireDetails messageToBeneficiary(String messageToBeneficiary) { this.messageToBeneficiary = messageToBeneficiary; return this; } /** * Additional information from the wire originator to the beneficiary. Max 140 characters. * @return messageToBeneficiary **/ @javax.annotation.Nullable @ApiModelProperty(value = "Additional information from the wire originator to the beneficiary. Max 140 characters.") public String getMessageToBeneficiary() { return messageToBeneficiary; } public void setMessageToBeneficiary(String messageToBeneficiary) { this.messageToBeneficiary = messageToBeneficiary; } public TransferWireDetails wireReturnFee(String wireReturnFee) { this.wireReturnFee = wireReturnFee; return this; } /** * The fee amount deducted from the original transfer during a wire return, if applicable. * @return wireReturnFee **/ @javax.annotation.Nullable @ApiModelProperty(value = "The fee amount deducted from the original transfer during a wire return, if applicable.") public String getWireReturnFee() { return wireReturnFee; } public void setWireReturnFee(String wireReturnFee) { this.wireReturnFee = wireReturnFee; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferWireDetails transferWireDetails = (TransferWireDetails) o; return Objects.equals(this.messageToBeneficiary, transferWireDetails.messageToBeneficiary) && Objects.equals(this.wireReturnFee, transferWireDetails.wireReturnFee); } @Override public int hashCode() { return Objects.hash(messageToBeneficiary, wireReturnFee); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferWireDetails {\n"); sb.append(" messageToBeneficiary: ").append(toIndentedString(messageToBeneficiary)).append("\n"); sb.append(" wireReturnFee: ").append(toIndentedString(wireReturnFee)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetTransactions.java
src/main/java/com/plaid/client/model/AssetTransactions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.AssetTransaction; 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 AssetTransactions { public static final String SERIALIZED_NAME_A_S_S_E_T_T_R_A_N_S_A_C_T_I_O_N = "ASSET_TRANSACTION"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T_T_R_A_N_S_A_C_T_I_O_N) private List<AssetTransaction> ASSET_TRANSACTION = new ArrayList<>(); public AssetTransactions ASSET_TRANSACTION(List<AssetTransaction> ASSET_TRANSACTION) { this.ASSET_TRANSACTION = ASSET_TRANSACTION; return this; } public AssetTransactions addASSETTRANSACTIONItem(AssetTransaction ASSET_TRANSACTIONItem) { this.ASSET_TRANSACTION.add(ASSET_TRANSACTIONItem); return this; } /** * Get ASSET_TRANSACTION * @return ASSET_TRANSACTION **/ @ApiModelProperty(required = true, value = "") public List<AssetTransaction> getASSETTRANSACTION() { return ASSET_TRANSACTION; } public void setASSETTRANSACTION(List<AssetTransaction> ASSET_TRANSACTION) { this.ASSET_TRANSACTION = ASSET_TRANSACTION; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AssetTransactions assetTransactions = (AssetTransactions) o; return Objects.equals(this.ASSET_TRANSACTION, assetTransactions.ASSET_TRANSACTION); } @Override public int hashCode() { return Objects.hash(ASSET_TRANSACTION); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetTransactions {\n"); sb.append(" ASSET_TRANSACTION: ").append(toIndentedString(ASSET_TRANSACTION)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SandboxPublicTokenCreateResponse.java
src/main/java/com/plaid/client/model/SandboxPublicTokenCreateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * SandboxPublicTokenCreateResponse defines the response schema for &#x60;/sandbox/public_token/create&#x60; */ @ApiModel(description = "SandboxPublicTokenCreateResponse defines the response schema for `/sandbox/public_token/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SandboxPublicTokenCreateResponse { public static final String SERIALIZED_NAME_PUBLIC_TOKEN = "public_token"; @SerializedName(SERIALIZED_NAME_PUBLIC_TOKEN) private String publicToken; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public SandboxPublicTokenCreateResponse publicToken(String publicToken) { this.publicToken = publicToken; return this; } /** * A public token that can be exchanged for an access token using &#x60;/item/public_token/exchange&#x60; * @return publicToken **/ @ApiModelProperty(required = true, value = "A public token that can be exchanged for an access token using `/item/public_token/exchange`") public String getPublicToken() { return publicToken; } public void setPublicToken(String publicToken) { this.publicToken = publicToken; } public SandboxPublicTokenCreateResponse 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; } SandboxPublicTokenCreateResponse sandboxPublicTokenCreateResponse = (SandboxPublicTokenCreateResponse) o; return Objects.equals(this.publicToken, sandboxPublicTokenCreateResponse.publicToken) && Objects.equals(this.requestId, sandboxPublicTokenCreateResponse.requestId); } @Override public int hashCode() { return Objects.hash(publicToken, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SandboxPublicTokenCreateResponse {\n"); sb.append(" publicToken: ").append(toIndentedString(publicToken)).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/SandboxIncomeFireWebhookRequest.java
src/main/java/com/plaid/client/model/SandboxIncomeFireWebhookRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.SandboxIncomeWebhookFireRequestWebhookCode; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * SandboxIncomeFireWebhookRequest defines the request schema for &#x60;/sandbox/income/fire_webhook&#x60; */ @ApiModel(description = "SandboxIncomeFireWebhookRequest defines the request schema for `/sandbox/income/fire_webhook`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SandboxIncomeFireWebhookRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_WEBHOOK = "webhook"; @SerializedName(SERIALIZED_NAME_WEBHOOK) private String webhook; /** * &#x60;VERIFICATION_STATUS_PROCESSING_COMPLETE&#x60;: The income verification status processing has completed. If the user uploaded multiple documents, this webhook will fire when all documents have finished processing. Call the &#x60;/income/verification/paystubs/get&#x60; endpoint and check the document metadata to see which documents were successfully parsed. &#x60;VERIFICATION_STATUS_PROCESSING_FAILED&#x60;: A failure occurred when attempting to process the verification documentation. &#x60;VERIFICATION_STATUS_PENDING_APPROVAL&#x60;: (deprecated) The income verification has been sent to the user for review. */ @JsonAdapter(VerificationStatusEnum.Adapter.class) public enum VerificationStatusEnum { PROCESSING_COMPLETE("VERIFICATION_STATUS_PROCESSING_COMPLETE"), PROCESSING_FAILED("VERIFICATION_STATUS_PROCESSING_FAILED"), PENDING_APPROVAL("VERIFICATION_STATUS_PENDING_APPROVAL"); private String value; VerificationStatusEnum(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static VerificationStatusEnum fromValue(String value) { for (VerificationStatusEnum b : VerificationStatusEnum.values()) { if (b.value.equals(value)) { return b; } } throw new IllegalArgumentException("Unexpected value '" + value + "'"); } public static class Adapter extends TypeAdapter<VerificationStatusEnum> { @Override public void write(final JsonWriter jsonWriter, final VerificationStatusEnum enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public VerificationStatusEnum read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return VerificationStatusEnum.fromValue(value); } } } public static final String SERIALIZED_NAME_VERIFICATION_STATUS = "verification_status"; @SerializedName(SERIALIZED_NAME_VERIFICATION_STATUS) private VerificationStatusEnum verificationStatus; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private SandboxIncomeWebhookFireRequestWebhookCode webhookCode; public SandboxIncomeFireWebhookRequest 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 SandboxIncomeFireWebhookRequest 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 SandboxIncomeFireWebhookRequest itemId(String itemId) { this.itemId = itemId; return this; } /** * The Item ID associated with the verification. * @return itemId **/ @ApiModelProperty(required = true, value = "The Item ID associated with the verification.") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public SandboxIncomeFireWebhookRequest userId(String userId) { this.userId = userId; return this; } /** * The Plaid &#x60;user_id&#x60; of the User associated with this webhook, warning, or error. * @return userId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The Plaid `user_id` of the User associated with this webhook, warning, or error.") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public SandboxIncomeFireWebhookRequest webhook(String webhook) { this.webhook = webhook; return this; } /** * The URL to which the webhook should be sent. * @return webhook **/ @ApiModelProperty(required = true, value = "The URL to which the webhook should be sent.") public String getWebhook() { return webhook; } public void setWebhook(String webhook) { this.webhook = webhook; } public SandboxIncomeFireWebhookRequest verificationStatus(VerificationStatusEnum verificationStatus) { this.verificationStatus = verificationStatus; return this; } /** * &#x60;VERIFICATION_STATUS_PROCESSING_COMPLETE&#x60;: The income verification status processing has completed. If the user uploaded multiple documents, this webhook will fire when all documents have finished processing. Call the &#x60;/income/verification/paystubs/get&#x60; endpoint and check the document metadata to see which documents were successfully parsed. &#x60;VERIFICATION_STATUS_PROCESSING_FAILED&#x60;: A failure occurred when attempting to process the verification documentation. &#x60;VERIFICATION_STATUS_PENDING_APPROVAL&#x60;: (deprecated) The income verification has been sent to the user for review. * @return verificationStatus **/ @javax.annotation.Nullable @ApiModelProperty(value = "`VERIFICATION_STATUS_PROCESSING_COMPLETE`: The income verification status processing has completed. If the user uploaded multiple documents, this webhook will fire when all documents have finished processing. Call the `/income/verification/paystubs/get` endpoint and check the document metadata to see which documents were successfully parsed. `VERIFICATION_STATUS_PROCESSING_FAILED`: A failure occurred when attempting to process the verification documentation. `VERIFICATION_STATUS_PENDING_APPROVAL`: (deprecated) The income verification has been sent to the user for review.") public VerificationStatusEnum getVerificationStatus() { return verificationStatus; } public void setVerificationStatus(VerificationStatusEnum verificationStatus) { this.verificationStatus = verificationStatus; } public SandboxIncomeFireWebhookRequest webhookCode(SandboxIncomeWebhookFireRequestWebhookCode webhookCode) { this.webhookCode = webhookCode; return this; } /** * Get webhookCode * @return webhookCode **/ @ApiModelProperty(required = true, value = "") public SandboxIncomeWebhookFireRequestWebhookCode getWebhookCode() { return webhookCode; } public void setWebhookCode(SandboxIncomeWebhookFireRequestWebhookCode webhookCode) { this.webhookCode = webhookCode; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SandboxIncomeFireWebhookRequest sandboxIncomeFireWebhookRequest = (SandboxIncomeFireWebhookRequest) o; return Objects.equals(this.clientId, sandboxIncomeFireWebhookRequest.clientId) && Objects.equals(this.secret, sandboxIncomeFireWebhookRequest.secret) && Objects.equals(this.itemId, sandboxIncomeFireWebhookRequest.itemId) && Objects.equals(this.userId, sandboxIncomeFireWebhookRequest.userId) && Objects.equals(this.webhook, sandboxIncomeFireWebhookRequest.webhook) && Objects.equals(this.verificationStatus, sandboxIncomeFireWebhookRequest.verificationStatus) && Objects.equals(this.webhookCode, sandboxIncomeFireWebhookRequest.webhookCode); } @Override public int hashCode() { return Objects.hash(clientId, secret, itemId, userId, webhook, verificationStatus, webhookCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SandboxIncomeFireWebhookRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" webhook: ").append(toIndentedString(webhook)).append("\n"); sb.append(" verificationStatus: ").append(toIndentedString(verificationStatus)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CategoryInsightDetails.java
src/main/java/com/plaid/client/model/CategoryInsightDetails.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Insights object for categories. */ @ApiModel(description = "Insights object for categories.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CategoryInsightDetails { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_TRANSACTION_COUNT = "transaction_count"; @SerializedName(SERIALIZED_NAME_TRANSACTION_COUNT) private Integer transactionCount; public static final String SERIALIZED_NAME_TOTAL_OUTFLOWS = "total_outflows"; @SerializedName(SERIALIZED_NAME_TOTAL_OUTFLOWS) private Double totalOutflows; public static final String SERIALIZED_NAME_TOTAL_INFLOWS = "total_inflows"; @SerializedName(SERIALIZED_NAME_TOTAL_INFLOWS) private Double totalInflows; public static final String SERIALIZED_NAME_TOP_COUNTERPARTIES = "top_counterparties"; @SerializedName(SERIALIZED_NAME_TOP_COUNTERPARTIES) private List<String> topCounterparties = null; public CategoryInsightDetails name(String name) { this.name = name; return this; } /** * Category name. * @return name **/ @ApiModelProperty(required = true, value = "Category name.") public String getName() { return name; } public void setName(String name) { this.name = name; } public CategoryInsightDetails transactionCount(Integer transactionCount) { this.transactionCount = transactionCount; return this; } /** * The number of transactions associated with this category. * @return transactionCount **/ @ApiModelProperty(required = true, value = "The number of transactions associated with this category.") public Integer getTransactionCount() { return transactionCount; } public void setTransactionCount(Integer transactionCount) { this.transactionCount = transactionCount; } public CategoryInsightDetails totalOutflows(Double totalOutflows) { this.totalOutflows = totalOutflows; return this; } /** * Sum of outflow amounts. * @return totalOutflows **/ @ApiModelProperty(required = true, value = "Sum of outflow amounts.") public Double getTotalOutflows() { return totalOutflows; } public void setTotalOutflows(Double totalOutflows) { this.totalOutflows = totalOutflows; } public CategoryInsightDetails totalInflows(Double totalInflows) { this.totalInflows = totalInflows; return this; } /** * Sum of inflow amounts. * @return totalInflows **/ @ApiModelProperty(required = true, value = "Sum of inflow amounts.") public Double getTotalInflows() { return totalInflows; } public void setTotalInflows(Double totalInflows) { this.totalInflows = totalInflows; } public CategoryInsightDetails topCounterparties(List<String> topCounterparties) { this.topCounterparties = topCounterparties; return this; } public CategoryInsightDetails addTopCounterpartiesItem(String topCounterpartiesItem) { if (this.topCounterparties == null) { this.topCounterparties = new ArrayList<>(); } this.topCounterparties.add(topCounterpartiesItem); return this; } /** * The most common counterparties associated with this category sorted by outflow. * @return topCounterparties **/ @javax.annotation.Nullable @ApiModelProperty(value = "The most common counterparties associated with this category sorted by outflow.") public List<String> getTopCounterparties() { return topCounterparties; } public void setTopCounterparties(List<String> topCounterparties) { this.topCounterparties = topCounterparties; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CategoryInsightDetails categoryInsightDetails = (CategoryInsightDetails) o; return Objects.equals(this.name, categoryInsightDetails.name) && Objects.equals(this.transactionCount, categoryInsightDetails.transactionCount) && Objects.equals(this.totalOutflows, categoryInsightDetails.totalOutflows) && Objects.equals(this.totalInflows, categoryInsightDetails.totalInflows) && Objects.equals(this.topCounterparties, categoryInsightDetails.topCounterparties); } @Override public int hashCode() { return Objects.hash(name, transactionCount, totalOutflows, totalInflows, topCounterparties); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CategoryInsightDetails {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" transactionCount: ").append(toIndentedString(transactionCount)).append("\n"); sb.append(" totalOutflows: ").append(toIndentedString(totalOutflows)).append("\n"); sb.append(" totalInflows: ").append(toIndentedString(totalInflows)).append("\n"); sb.append(" topCounterparties: ").append(toIndentedString(topCounterparties)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraCheckReportFreddieMacGetResponse.java
src/main/java/com/plaid/client/model/CraCheckReportFreddieMacGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CraCheckReportFreddieMacVerificationOfAssetsDeal; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.math.BigDecimal; /** * CraCheckReportFreddieMacGetResponse defines the response schema for &#x60;/cra/check_report/freddie_mac/get&#x60; */ @ApiModel(description = "CraCheckReportFreddieMacGetResponse defines the response schema for `/cra/check_report/freddie_mac/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCheckReportFreddieMacGetResponse { public static final String SERIALIZED_NAME_D_E_A_L = "DEAL"; @SerializedName(SERIALIZED_NAME_D_E_A_L) private CraCheckReportFreddieMacVerificationOfAssetsDeal DEAL; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public static final String SERIALIZED_NAME_SCHEMA_VERSION = "SchemaVersion"; @SerializedName(SERIALIZED_NAME_SCHEMA_VERSION) private Double schemaVersion; public CraCheckReportFreddieMacGetResponse DEAL(CraCheckReportFreddieMacVerificationOfAssetsDeal DEAL) { this.DEAL = DEAL; return this; } /** * Get DEAL * @return DEAL **/ @ApiModelProperty(required = true, value = "") public CraCheckReportFreddieMacVerificationOfAssetsDeal getDEAL() { return DEAL; } public void setDEAL(CraCheckReportFreddieMacVerificationOfAssetsDeal DEAL) { this.DEAL = DEAL; } public CraCheckReportFreddieMacGetResponse 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 CraCheckReportFreddieMacGetResponse schemaVersion(Double schemaVersion) { this.schemaVersion = schemaVersion; return this; } /** * The Verification Of Assets (VOA) schema version. * @return schemaVersion **/ @ApiModelProperty(required = true, value = "The Verification Of Assets (VOA) schema version.") public Double getSchemaVersion() { return schemaVersion; } public void setSchemaVersion(Double schemaVersion) { this.schemaVersion = schemaVersion; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraCheckReportFreddieMacGetResponse craCheckReportFreddieMacGetResponse = (CraCheckReportFreddieMacGetResponse) o; return Objects.equals(this.DEAL, craCheckReportFreddieMacGetResponse.DEAL) && Objects.equals(this.requestId, craCheckReportFreddieMacGetResponse.requestId) && Objects.equals(this.schemaVersion, craCheckReportFreddieMacGetResponse.schemaVersion); } @Override public int hashCode() { return Objects.hash(DEAL, requestId, schemaVersion); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportFreddieMacGetResponse {\n"); sb.append(" DEAL: ").append(toIndentedString(DEAL)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append(" schemaVersion: ").append(toIndentedString(schemaVersion)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PrismFirstDetectVersion.java
src/main/java/com/plaid/client/model/PrismFirstDetectVersion.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The version of Prism FirstDetect. If not specified, will default to v3. */ @JsonAdapter(PrismFirstDetectVersion.Adapter.class) public enum PrismFirstDetectVersion { _3("3"), NULL("null"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; PrismFirstDetectVersion(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PrismFirstDetectVersion fromValue(String value) { for (PrismFirstDetectVersion b : PrismFirstDetectVersion.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<PrismFirstDetectVersion> { @Override public void write(final JsonWriter jsonWriter, final PrismFirstDetectVersion enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PrismFirstDetectVersion read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PrismFirstDetectVersion.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/ItemApplicationUnlinkResponse.java
src/main/java/com/plaid/client/model/ItemApplicationUnlinkResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * ItemApplicationUnlinkResponse defines the response schema for &#x60;/item/application/unlink&#x60; */ @ApiModel(description = "ItemApplicationUnlinkResponse defines the response schema for `/item/application/unlink`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ItemApplicationUnlinkResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public ItemApplicationUnlinkResponse 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; } ItemApplicationUnlinkResponse itemApplicationUnlinkResponse = (ItemApplicationUnlinkResponse) o; return Objects.equals(this.requestId, itemApplicationUnlinkResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ItemApplicationUnlinkResponse {\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/PaymentChannel.java
src/main/java/com/plaid/client/model/PaymentChannel.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 channel used to make a payment. &#x60;online:&#x60; transactions that took place online. &#x60;in store:&#x60; transactions that were made at a physical location. &#x60;other:&#x60; transactions that relate to banks, e.g. fees or deposits. */ @JsonAdapter(PaymentChannel.Adapter.class) public enum PaymentChannel { ONLINE("online"), IN_STORE("in store"), OTHER("other"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; PaymentChannel(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PaymentChannel fromValue(String value) { for (PaymentChannel b : PaymentChannel.values()) { if (b.value.equals(value)) { return b; } } return PaymentChannel.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<PaymentChannel> { @Override public void write(final JsonWriter jsonWriter, final PaymentChannel enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PaymentChannel read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PaymentChannel.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/APR.java
src/main/java/com/plaid/client/model/APR.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Information about the APR on the account. */ @ApiModel(description = "Information about the APR on the account.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class APR { public static final String SERIALIZED_NAME_APR_PERCENTAGE = "apr_percentage"; @SerializedName(SERIALIZED_NAME_APR_PERCENTAGE) private Double aprPercentage; /** * The type of balance to which the APR applies. */ @JsonAdapter(AprTypeEnum.Adapter.class) public enum AprTypeEnum { BALANCE_TRANSFER_APR("balance_transfer_apr"), CASH_APR("cash_apr"), PURCHASE_APR("purchase_apr"), SPECIAL("special"); private String value; AprTypeEnum(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static AprTypeEnum fromValue(String value) { for (AprTypeEnum b : AprTypeEnum.values()) { if (b.value.equals(value)) { return b; } } throw new IllegalArgumentException("Unexpected value '" + value + "'"); } public static class Adapter extends TypeAdapter<AprTypeEnum> { @Override public void write(final JsonWriter jsonWriter, final AprTypeEnum enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public AprTypeEnum read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return AprTypeEnum.fromValue(value); } } } public static final String SERIALIZED_NAME_APR_TYPE = "apr_type"; @SerializedName(SERIALIZED_NAME_APR_TYPE) private AprTypeEnum aprType; public static final String SERIALIZED_NAME_BALANCE_SUBJECT_TO_APR = "balance_subject_to_apr"; @SerializedName(SERIALIZED_NAME_BALANCE_SUBJECT_TO_APR) private Double balanceSubjectToApr; public static final String SERIALIZED_NAME_INTEREST_CHARGE_AMOUNT = "interest_charge_amount"; @SerializedName(SERIALIZED_NAME_INTEREST_CHARGE_AMOUNT) private Double interestChargeAmount; public APR aprPercentage(Double aprPercentage) { this.aprPercentage = aprPercentage; return this; } /** * Annual Percentage Rate applied. * @return aprPercentage **/ @ApiModelProperty(required = true, value = "Annual Percentage Rate applied. ") public Double getAprPercentage() { return aprPercentage; } public void setAprPercentage(Double aprPercentage) { this.aprPercentage = aprPercentage; } public APR aprType(AprTypeEnum aprType) { this.aprType = aprType; return this; } /** * The type of balance to which the APR applies. * @return aprType **/ @ApiModelProperty(required = true, value = "The type of balance to which the APR applies.") public AprTypeEnum getAprType() { return aprType; } public void setAprType(AprTypeEnum aprType) { this.aprType = aprType; } public APR balanceSubjectToApr(Double balanceSubjectToApr) { this.balanceSubjectToApr = balanceSubjectToApr; return this; } /** * Amount of money that is subjected to the APR if a balance was carried beyond payment due date. How it is calculated can vary by card issuer. It is often calculated as an average daily balance. * @return balanceSubjectToApr **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Amount of money that is subjected to the APR if a balance was carried beyond payment due date. How it is calculated can vary by card issuer. It is often calculated as an average daily balance.") public Double getBalanceSubjectToApr() { return balanceSubjectToApr; } public void setBalanceSubjectToApr(Double balanceSubjectToApr) { this.balanceSubjectToApr = balanceSubjectToApr; } public APR interestChargeAmount(Double interestChargeAmount) { this.interestChargeAmount = interestChargeAmount; return this; } /** * Amount of money charged due to interest from last statement. * @return interestChargeAmount **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Amount of money charged due to interest from last statement.") public Double getInterestChargeAmount() { return interestChargeAmount; } public void setInterestChargeAmount(Double interestChargeAmount) { this.interestChargeAmount = interestChargeAmount; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } APR APR = (APR) o; return Objects.equals(this.aprPercentage, APR.aprPercentage) && Objects.equals(this.aprType, APR.aprType) && Objects.equals(this.balanceSubjectToApr, APR.balanceSubjectToApr) && Objects.equals(this.interestChargeAmount, APR.interestChargeAmount); } @Override public int hashCode() { return Objects.hash(aprPercentage, aprType, balanceSubjectToApr, interestChargeAmount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class APR {\n"); sb.append(" aprPercentage: ").append(toIndentedString(aprPercentage)).append("\n"); sb.append(" aprType: ").append(toIndentedString(aprType)).append("\n"); sb.append(" balanceSubjectToApr: ").append(toIndentedString(balanceSubjectToApr)).append("\n"); sb.append(" interestChargeAmount: ").append(toIndentedString(interestChargeAmount)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/UserStatedIncomeSourceCategory.java
src/main/java/com/plaid/client/model/UserStatedIncomeSourceCategory.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 income category for a specified income source */ @JsonAdapter(UserStatedIncomeSourceCategory.Adapter.class) public enum UserStatedIncomeSourceCategory { OTHER("OTHER"), SALARY("SALARY"), UNEMPLOYMENT("UNEMPLOYMENT"), CASH("CASH"), GIG_ECONOMY("GIG_ECONOMY"), RENTAL("RENTAL"), CHILD_SUPPORT("CHILD_SUPPORT"), MILITARY("MILITARY"), RETIREMENT("RETIREMENT"), LONG_TERM_DISABILITY("LONG_TERM_DISABILITY"), BANK_INTEREST("BANK_INTEREST"), // 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; UserStatedIncomeSourceCategory(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static UserStatedIncomeSourceCategory fromValue(String value) { for (UserStatedIncomeSourceCategory b : UserStatedIncomeSourceCategory.values()) { if (b.value.equals(value)) { return b; } } return UserStatedIncomeSourceCategory.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<UserStatedIncomeSourceCategory> { @Override public void write(final JsonWriter jsonWriter, final UserStatedIncomeSourceCategory enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public UserStatedIncomeSourceCategory read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return UserStatedIncomeSourceCategory.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/TransactionsRuleDetails.java
src/main/java/com/plaid/client/model/TransactionsRuleDetails.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.TransactionsRuleField; import com.plaid.client.model.TransactionsRuleType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * A representation of transactions rule details. */ @ApiModel(description = "A representation of transactions rule details.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionsRuleDetails { public static final String SERIALIZED_NAME_FIELD = "field"; @SerializedName(SERIALIZED_NAME_FIELD) private TransactionsRuleField field; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private TransactionsRuleType type; public static final String SERIALIZED_NAME_QUERY = "query"; @SerializedName(SERIALIZED_NAME_QUERY) private String query; public TransactionsRuleDetails field(TransactionsRuleField field) { this.field = field; return this; } /** * Get field * @return field **/ @ApiModelProperty(required = true, value = "") public TransactionsRuleField getField() { return field; } public void setField(TransactionsRuleField field) { this.field = field; } public TransactionsRuleDetails type(TransactionsRuleType type) { this.type = type; return this; } /** * Get type * @return type **/ @ApiModelProperty(required = true, value = "") public TransactionsRuleType getType() { return type; } public void setType(TransactionsRuleType type) { this.type = type; } public TransactionsRuleDetails query(String query) { this.query = query; return this; } /** * For &#x60;TRANSACTION_ID&#x60; field, provide &#x60;transaction_id&#x60;. For &#x60;NAME&#x60; field, provide a string pattern. * @return query **/ @ApiModelProperty(required = true, value = "For `TRANSACTION_ID` field, provide `transaction_id`. For `NAME` field, provide a string pattern. ") public String getQuery() { return query; } public void setQuery(String query) { this.query = query; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransactionsRuleDetails transactionsRuleDetails = (TransactionsRuleDetails) o; return Objects.equals(this.field, transactionsRuleDetails.field) && Objects.equals(this.type, transactionsRuleDetails.type) && Objects.equals(this.query, transactionsRuleDetails.query); } @Override public int hashCode() { return Objects.hash(field, type, query); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsRuleDetails {\n"); sb.append(" field: ").append(toIndentedString(field)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" query: ").append(toIndentedString(query)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CheckReportWarningCode.java
src/main/java/com/plaid/client/model/CheckReportWarningCode.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 warning code identifies a specific kind of warning. &#x60;IDENTITY_UNAVAILABLE&#x60;: Account-owner information is not available. &#x60;TRANSACTIONS_UNAVAILABLE&#x60;: Transactions information associated with Credit and Depository accounts are unavailable. &#x60;USER_FRAUD_ALERT&#x60;: The user has placed a fraud alert on their Plaid Check consumer report due to suspected fraud. Please note that when a fraud alert is in place, the recipient of the consumer report has an obligation to verify the consumer’s identity. */ @JsonAdapter(CheckReportWarningCode.Adapter.class) public enum CheckReportWarningCode { IDENTITY_UNAVAILABLE("IDENTITY_UNAVAILABLE"), TRANSACTIONS_UNAVAILABLE("TRANSACTIONS_UNAVAILABLE"), USER_FRAUD_ALERT("USER_FRAUD_ALERT"), // 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; CheckReportWarningCode(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static CheckReportWarningCode fromValue(String value) { for (CheckReportWarningCode b : CheckReportWarningCode.values()) { if (b.value.equals(value)) { return b; } } return CheckReportWarningCode.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<CheckReportWarningCode> { @Override public void write(final JsonWriter jsonWriter, final CheckReportWarningCode enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public CheckReportWarningCode read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return CheckReportWarningCode.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/AuthVerifyResponse.java
src/main/java/com/plaid/client/model/AuthVerifyResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.AccountVerificationInsights; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * AuthVerifyResponse defines the response schema for &#x60;/auth/verify&#x60; */ @ApiModel(description = "AuthVerifyResponse defines the response schema for `/auth/verify`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AuthVerifyResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; 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_STATUS = "verification_status"; @SerializedName(SERIALIZED_NAME_VERIFICATION_STATUS) private String verificationStatus; public static final String SERIALIZED_NAME_VERIFICATION_INSIGHTS = "verification_insights"; @SerializedName(SERIALIZED_NAME_VERIFICATION_INSIGHTS) private AccountVerificationInsights verificationInsights; public AuthVerifyResponse 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 AuthVerifyResponse itemId(String itemId) { this.itemId = itemId; return this; } /** * The &#x60;item_id&#x60; value of the Item created for verification. If numbers data provided is invalid, an item may not be created. * @return itemId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The `item_id` value of the Item created for verification. If numbers data provided is invalid, an item may not be created.") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public AuthVerifyResponse verificationStatus(String verificationStatus) { this.verificationStatus = verificationStatus; return this; } /** * Indicates the Item&#39;s database verification status. Possible values are: &#x60;database_insights_fail&#x60;: The Item&#39;s numbers have been verified using Plaid&#39;s data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth. &#x60;database_insights_pass&#x60;: The Item&#39;s numbers have been verified using Plaid&#39;s data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth. &#x60;database_insights_pass_with_caution&#x60;: The Item&#39;s numbers have been verified using Plaid&#39;s data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth. * @return verificationStatus **/ @ApiModelProperty(required = true, value = "Indicates the Item's database verification status. Possible values are: `database_insights_fail`: The Item's numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth. `database_insights_pass`: The Item's numbers have been verified using Plaid's data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth. `database_insights_pass_with_caution`: The Item's numbers have been verified using Plaid's data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth. ") public String getVerificationStatus() { return verificationStatus; } public void setVerificationStatus(String verificationStatus) { this.verificationStatus = verificationStatus; } public AuthVerifyResponse verificationInsights(AccountVerificationInsights verificationInsights) { this.verificationInsights = verificationInsights; return this; } /** * Get verificationInsights * @return verificationInsights **/ @ApiModelProperty(required = true, value = "") public AccountVerificationInsights getVerificationInsights() { return verificationInsights; } public void setVerificationInsights(AccountVerificationInsights verificationInsights) { this.verificationInsights = verificationInsights; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AuthVerifyResponse authVerifyResponse = (AuthVerifyResponse) o; return Objects.equals(this.requestId, authVerifyResponse.requestId) && Objects.equals(this.itemId, authVerifyResponse.itemId) && Objects.equals(this.verificationStatus, authVerifyResponse.verificationStatus) && Objects.equals(this.verificationInsights, authVerifyResponse.verificationInsights); } @Override public int hashCode() { return Objects.hash(requestId, itemId, verificationStatus, verificationInsights); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AuthVerifyResponse {\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" verificationStatus: ").append(toIndentedString(verificationStatus)).append("\n"); sb.append(" verificationInsights: ").append(toIndentedString(verificationInsights)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditBankEmploymentGetRequest.java
src/main/java/com/plaid/client/model/CreditBankEmploymentGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * CreditBankEmploymentGetRequest defines the request schema for &#x60;/beta/credit/v1/bank_employment/get&#x60;. */ @ApiModel(description = "CreditBankEmploymentGetRequest defines the request schema for `/beta/credit/v1/bank_employment/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditBankEmploymentGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_USER_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) private String userToken; public CreditBankEmploymentGetRequest 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 CreditBankEmploymentGetRequest 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 CreditBankEmploymentGetRequest userToken(String userToken) { this.userToken = userToken; return this; } /** * The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the &#x60;user_token&#x60; field. All other customers should use the &#x60;user_id&#x60; instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis). * @return userToken **/ @ApiModelProperty(required = true, value = "The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the `user_token` field. All other customers should use the `user_id` instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis).") public String getUserToken() { return userToken; } public void setUserToken(String userToken) { this.userToken = userToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditBankEmploymentGetRequest creditBankEmploymentGetRequest = (CreditBankEmploymentGetRequest) o; return Objects.equals(this.clientId, creditBankEmploymentGetRequest.clientId) && Objects.equals(this.secret, creditBankEmploymentGetRequest.secret) && Objects.equals(this.userToken, creditBankEmploymentGetRequest.userToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, userToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditBankEmploymentGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" userToken: ").append(toIndentedString(userToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/StatementsAccount.java
src/main/java/com/plaid/client/model/StatementsAccount.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.StatementsStatement; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Account associated with the Item. */ @ApiModel(description = "Account associated with the Item.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class StatementsAccount { 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_MASK = "account_mask"; @SerializedName(SERIALIZED_NAME_ACCOUNT_MASK) private String accountMask; public static final String SERIALIZED_NAME_ACCOUNT_NAME = "account_name"; @SerializedName(SERIALIZED_NAME_ACCOUNT_NAME) private String accountName; public static final String SERIALIZED_NAME_ACCOUNT_OFFICIAL_NAME = "account_official_name"; @SerializedName(SERIALIZED_NAME_ACCOUNT_OFFICIAL_NAME) private String accountOfficialName; public static final String SERIALIZED_NAME_ACCOUNT_SUBTYPE = "account_subtype"; @SerializedName(SERIALIZED_NAME_ACCOUNT_SUBTYPE) private String accountSubtype; public static final String SERIALIZED_NAME_ACCOUNT_TYPE = "account_type"; @SerializedName(SERIALIZED_NAME_ACCOUNT_TYPE) private String accountType; public static final String SERIALIZED_NAME_STATEMENTS = "statements"; @SerializedName(SERIALIZED_NAME_STATEMENTS) private List<StatementsStatement> statements = new ArrayList<>(); public StatementsAccount accountId(String accountId) { this.accountId = accountId; return this; } /** * Plaid&#39;s unique identifier for the account. * @return accountId **/ @ApiModelProperty(required = true, value = "Plaid's unique identifier for the account.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public StatementsAccount accountMask(String accountMask) { this.accountMask = accountMask; return this; } /** * The last 2-4 alphanumeric characters of an account&#39;s official account number. Note that the mask may be non-unique between an Item&#39;s accounts, and it may also not match the mask that the bank displays to the user. * @return accountMask **/ @ApiModelProperty(required = true, value = "The last 2-4 alphanumeric characters of an account's official account number. Note that the mask may be non-unique between an Item's accounts, and it may also not match the mask that the bank displays to the user.") public String getAccountMask() { return accountMask; } public void setAccountMask(String accountMask) { this.accountMask = accountMask; } public StatementsAccount accountName(String accountName) { this.accountName = accountName; return this; } /** * The name of the account, either assigned by the user or by the financial institution itself. * @return accountName **/ @ApiModelProperty(required = true, value = "The name of the account, either assigned by the user or by the financial institution itself.") public String getAccountName() { return accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public StatementsAccount accountOfficialName(String accountOfficialName) { this.accountOfficialName = accountOfficialName; return this; } /** * The official name of the account as given by the financial institution. * @return accountOfficialName **/ @ApiModelProperty(required = true, value = "The official name of the account as given by the financial institution.") public String getAccountOfficialName() { return accountOfficialName; } public void setAccountOfficialName(String accountOfficialName) { this.accountOfficialName = accountOfficialName; } public StatementsAccount accountSubtype(String accountSubtype) { this.accountSubtype = accountSubtype; return this; } /** * The subtype of the account. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema). * @return accountSubtype **/ @ApiModelProperty(required = true, value = "The subtype of the account. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema).") public String getAccountSubtype() { return accountSubtype; } public void setAccountSubtype(String accountSubtype) { this.accountSubtype = accountSubtype; } public StatementsAccount accountType(String accountType) { this.accountType = accountType; return this; } /** * The type of account. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema). * @return accountType **/ @ApiModelProperty(required = true, value = "The type of account. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema).") public String getAccountType() { return accountType; } public void setAccountType(String accountType) { this.accountType = accountType; } public StatementsAccount statements(List<StatementsStatement> statements) { this.statements = statements; return this; } public StatementsAccount addStatementsItem(StatementsStatement statementsItem) { this.statements.add(statementsItem); return this; } /** * The list of statements&#39; metadata associated with this account. * @return statements **/ @ApiModelProperty(required = true, value = "The list of statements' metadata associated with this account.") public List<StatementsStatement> getStatements() { return statements; } public void setStatements(List<StatementsStatement> statements) { this.statements = statements; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } StatementsAccount statementsAccount = (StatementsAccount) o; return Objects.equals(this.accountId, statementsAccount.accountId) && Objects.equals(this.accountMask, statementsAccount.accountMask) && Objects.equals(this.accountName, statementsAccount.accountName) && Objects.equals(this.accountOfficialName, statementsAccount.accountOfficialName) && Objects.equals(this.accountSubtype, statementsAccount.accountSubtype) && Objects.equals(this.accountType, statementsAccount.accountType) && Objects.equals(this.statements, statementsAccount.statements); } @Override public int hashCode() { return Objects.hash(accountId, accountMask, accountName, accountOfficialName, accountSubtype, accountType, statements); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class StatementsAccount {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" accountMask: ").append(toIndentedString(accountMask)).append("\n"); sb.append(" accountName: ").append(toIndentedString(accountName)).append("\n"); sb.append(" accountOfficialName: ").append(toIndentedString(accountOfficialName)).append("\n"); sb.append(" accountSubtype: ").append(toIndentedString(accountSubtype)).append("\n"); sb.append(" accountType: ").append(toIndentedString(accountType)).append("\n"); sb.append(" statements: ").append(toIndentedString(statements)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualListResponse.java
src/main/java/com/plaid/client/model/WatchlistScreeningIndividualListResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.WatchlistScreeningIndividual; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Paginated list of individual watchlist screenings. */ @ApiModel(description = "Paginated list of individual watchlist screenings.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WatchlistScreeningIndividualListResponse { public static final String SERIALIZED_NAME_WATCHLIST_SCREENINGS = "watchlist_screenings"; @SerializedName(SERIALIZED_NAME_WATCHLIST_SCREENINGS) private List<WatchlistScreeningIndividual> watchlistScreenings = new ArrayList<>(); public static final String SERIALIZED_NAME_NEXT_CURSOR = "next_cursor"; @SerializedName(SERIALIZED_NAME_NEXT_CURSOR) private String nextCursor; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public WatchlistScreeningIndividualListResponse watchlistScreenings(List<WatchlistScreeningIndividual> watchlistScreenings) { this.watchlistScreenings = watchlistScreenings; return this; } public WatchlistScreeningIndividualListResponse addWatchlistScreeningsItem(WatchlistScreeningIndividual watchlistScreeningsItem) { this.watchlistScreenings.add(watchlistScreeningsItem); return this; } /** * List of individual watchlist screenings * @return watchlistScreenings **/ @ApiModelProperty(required = true, value = "List of individual watchlist screenings") public List<WatchlistScreeningIndividual> getWatchlistScreenings() { return watchlistScreenings; } public void setWatchlistScreenings(List<WatchlistScreeningIndividual> watchlistScreenings) { this.watchlistScreenings = watchlistScreenings; } public WatchlistScreeningIndividualListResponse nextCursor(String nextCursor) { this.nextCursor = nextCursor; return this; } /** * An identifier that determines which page of results you receive. * @return nextCursor **/ @javax.annotation.Nullable @ApiModelProperty(example = "eyJkaXJlY3Rpb24iOiJuZXh0Iiwib2Zmc2V0IjoiMTU5NDM", required = true, value = "An identifier that determines which page of results you receive.") public String getNextCursor() { return nextCursor; } public void setNextCursor(String nextCursor) { this.nextCursor = nextCursor; } public WatchlistScreeningIndividualListResponse 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; } WatchlistScreeningIndividualListResponse watchlistScreeningIndividualListResponse = (WatchlistScreeningIndividualListResponse) o; return Objects.equals(this.watchlistScreenings, watchlistScreeningIndividualListResponse.watchlistScreenings) && Objects.equals(this.nextCursor, watchlistScreeningIndividualListResponse.nextCursor) && Objects.equals(this.requestId, watchlistScreeningIndividualListResponse.requestId); } @Override public int hashCode() { return Objects.hash(watchlistScreenings, nextCursor, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WatchlistScreeningIndividualListResponse {\n"); sb.append(" watchlistScreenings: ").append(toIndentedString(watchlistScreenings)).append("\n"); sb.append(" nextCursor: ").append(toIndentedString(nextCursor)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AccountsGetResponse.java
src/main/java/com/plaid/client/model/AccountsGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AccountBase; import com.plaid.client.model.Item; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * AccountsGetResponse defines the response schema for &#x60;/accounts/get&#x60; and &#x60;/accounts/balance/get&#x60;. */ @ApiModel(description = "AccountsGetResponse defines the response schema for `/accounts/get` and `/accounts/balance/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AccountsGetResponse { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) private List<AccountBase> 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 AccountsGetResponse accounts(List<AccountBase> accounts) { this.accounts = accounts; return this; } public AccountsGetResponse addAccountsItem(AccountBase accountsItem) { this.accounts.add(accountsItem); return this; } /** * An array of financial institution accounts associated with the Item. If &#x60;/accounts/balance/get&#x60; was called, each account will include real-time balance information. * @return accounts **/ @ApiModelProperty(required = true, value = "An array of financial institution accounts associated with the Item. If `/accounts/balance/get` was called, each account will include real-time balance information.") public List<AccountBase> getAccounts() { return accounts; } public void setAccounts(List<AccountBase> accounts) { this.accounts = accounts; } public AccountsGetResponse 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 AccountsGetResponse 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; } AccountsGetResponse accountsGetResponse = (AccountsGetResponse) o; return Objects.equals(this.accounts, accountsGetResponse.accounts) && Objects.equals(this.item, accountsGetResponse.item) && Objects.equals(this.requestId, accountsGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(accounts, item, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AccountsGetResponse {\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/TransactionsRecurringUpdateInput.java
src/main/java/com/plaid/client/model/TransactionsRecurringUpdateInput.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * TransactionsRecurringUpdateInput defines a single operation to the &#x60;/transactions/recurring/streams/update&#x60; endpoint. */ @ApiModel(description = "TransactionsRecurringUpdateInput defines a single operation to the `/transactions/recurring/streams/update` endpoint.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionsRecurringUpdateInput { public static final String SERIALIZED_NAME_STREAM_ID = "stream_id"; @SerializedName(SERIALIZED_NAME_STREAM_ID) private String streamId; public static final String SERIALIZED_NAME_TRANSACTION_IDS = "transaction_ids"; @SerializedName(SERIALIZED_NAME_TRANSACTION_IDS) private List<String> transactionIds = new ArrayList<>(); public TransactionsRecurringUpdateInput streamId(String streamId) { this.streamId = streamId; return this; } /** * ID of the stream that all the transactions will be added in to. * @return streamId **/ @ApiModelProperty(required = true, value = "ID of the stream that all the transactions will be added in to.") public String getStreamId() { return streamId; } public void setStreamId(String streamId) { this.streamId = streamId; } public TransactionsRecurringUpdateInput transactionIds(List<String> transactionIds) { this.transactionIds = transactionIds; return this; } public TransactionsRecurringUpdateInput addTransactionIdsItem(String transactionIdsItem) { this.transactionIds.add(transactionIdsItem); return this; } /** * IDs of all the transactions that will be added into the stream. If any transaction currently exist in another stream, it will be removed from the other stream. * @return transactionIds **/ @ApiModelProperty(required = true, value = "IDs of all the transactions that will be added into the stream. If any transaction currently exist in another stream, it will be removed from the other stream.") public List<String> getTransactionIds() { return transactionIds; } public void setTransactionIds(List<String> transactionIds) { this.transactionIds = transactionIds; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransactionsRecurringUpdateInput transactionsRecurringUpdateInput = (TransactionsRecurringUpdateInput) o; return Objects.equals(this.streamId, transactionsRecurringUpdateInput.streamId) && Objects.equals(this.transactionIds, transactionsRecurringUpdateInput.transactionIds); } @Override public int hashCode() { return Objects.hash(streamId, transactionIds); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsRecurringUpdateInput {\n"); sb.append(" streamId: ").append(toIndentedString(streamId)).append("\n"); sb.append(" transactionIds: ").append(toIndentedString(transactionIds)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraLoansRegisterResponse.java
src/main/java/com/plaid/client/model/CraLoansRegisterResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * CraLoansRegisterResponse defines the response schema for &#x60;/cra/loans/register&#x60;. */ @ApiModel(description = "CraLoansRegisterResponse defines the response schema for `/cra/loans/register`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraLoansRegisterResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public CraLoansRegisterResponse 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; } CraLoansRegisterResponse craLoansRegisterResponse = (CraLoansRegisterResponse) o; return Objects.equals(this.requestId, craLoansRegisterResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraLoansRegisterResponse {\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/TransferPlatformOnboardingUpdateWebhook.java
src/main/java/com/plaid/client/model/TransferPlatformOnboardingUpdateWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 onboarding originator has been updated. Call &#x60;/transfer/originator/get&#x60; to check the latest status */ @ApiModel(description = "Fired when the status of an onboarding originator has been updated. Call `/transfer/originator/get` to check the latest status") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferPlatformOnboardingUpdateWebhook { 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_ORIGINATOR_CLIENT_ID = "originator_client_id"; @SerializedName(SERIALIZED_NAME_ORIGINATOR_CLIENT_ID) private String originatorClientId; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public TransferPlatformOnboardingUpdateWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;\&quot;TRANSFER\&quot;&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`\"TRANSFER\"`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public TransferPlatformOnboardingUpdateWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;\&quot;PLATFORM_ONBOARDING_UPDATE\&quot;&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`\"PLATFORM_ONBOARDING_UPDATE\"`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public TransferPlatformOnboardingUpdateWebhook originatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; return this; } /** * The client ID of the originator * @return originatorClientId **/ @ApiModelProperty(required = true, value = "The client ID of the originator") public String getOriginatorClientId() { return originatorClientId; } public void setOriginatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; } public TransferPlatformOnboardingUpdateWebhook 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; } TransferPlatformOnboardingUpdateWebhook transferPlatformOnboardingUpdateWebhook = (TransferPlatformOnboardingUpdateWebhook) o; return Objects.equals(this.webhookType, transferPlatformOnboardingUpdateWebhook.webhookType) && Objects.equals(this.webhookCode, transferPlatformOnboardingUpdateWebhook.webhookCode) && Objects.equals(this.originatorClientId, transferPlatformOnboardingUpdateWebhook.originatorClientId) && Objects.equals(this.environment, transferPlatformOnboardingUpdateWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, originatorClientId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferPlatformOnboardingUpdateWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" originatorClientId: ").append(toIndentedString(originatorClientId)).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/DepositoryFilter.java
src/main/java/com/plaid/client/model/DepositoryFilter.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.DepositoryAccountSubtype; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * A filter to apply to &#x60;depository&#x60;-type accounts */ @ApiModel(description = "A filter to apply to `depository`-type accounts") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class DepositoryFilter { public static final String SERIALIZED_NAME_ACCOUNT_SUBTYPES = "account_subtypes"; @SerializedName(SERIALIZED_NAME_ACCOUNT_SUBTYPES) private List<DepositoryAccountSubtype> accountSubtypes = new ArrayList<>(); public DepositoryFilter accountSubtypes(List<DepositoryAccountSubtype> accountSubtypes) { this.accountSubtypes = accountSubtypes; return this; } public DepositoryFilter addAccountSubtypesItem(DepositoryAccountSubtype accountSubtypesItem) { this.accountSubtypes.add(accountSubtypesItem); return this; } /** * An array of account subtypes to display in Link. If not specified, all account subtypes will be shown. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema). * @return accountSubtypes **/ @ApiModelProperty(required = true, value = "An array of account subtypes to display in Link. If not specified, all account subtypes will be shown. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema). ") public List<DepositoryAccountSubtype> getAccountSubtypes() { return accountSubtypes; } public void setAccountSubtypes(List<DepositoryAccountSubtype> accountSubtypes) { this.accountSubtypes = accountSubtypes; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } DepositoryFilter depositoryFilter = (DepositoryFilter) o; return Objects.equals(this.accountSubtypes, depositoryFilter.accountSubtypes); } @Override public int hashCode() { return Objects.hash(accountSubtypes); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class DepositoryFilter {\n"); sb.append(" accountSubtypes: ").append(toIndentedString(accountSubtypes)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkTokenCreateRequestUpdate.java
src/main/java/com/plaid/client/model/LinkTokenCreateRequestUpdate.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Specifies options for initializing Link for [update mode](https://plaid.com/docs/link/update-mode). */ @ApiModel(description = "Specifies options for initializing Link for [update mode](https://plaid.com/docs/link/update-mode).") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkTokenCreateRequestUpdate { public static final String SERIALIZED_NAME_ACCOUNT_SELECTION_ENABLED = "account_selection_enabled"; @SerializedName(SERIALIZED_NAME_ACCOUNT_SELECTION_ENABLED) private Boolean accountSelectionEnabled = false; public static final String SERIALIZED_NAME_REAUTHORIZATION_ENABLED = "reauthorization_enabled"; @SerializedName(SERIALIZED_NAME_REAUTHORIZATION_ENABLED) private Boolean reauthorizationEnabled; public static final String SERIALIZED_NAME_USER = "user"; @SerializedName(SERIALIZED_NAME_USER) private Boolean user = false; public static final String SERIALIZED_NAME_ITEM_IDS = "item_ids"; @SerializedName(SERIALIZED_NAME_ITEM_IDS) private List<String> itemIds = null; public LinkTokenCreateRequestUpdate accountSelectionEnabled(Boolean accountSelectionEnabled) { this.accountSelectionEnabled = accountSelectionEnabled; return this; } /** * If &#x60;true&#x60;, enables [update mode with Account Select](https://plaid.com/docs/link/update-mode/#using-update-mode-to-request-new-accounts) for institutions in the US and Canada that do not use OAuth, or that use OAuth but do not have their own account selection flow. For institutions in the US that have an OAuth account selection flow (i.e. most OAuth-enabled institutions), update mode with Account Select will always be enabled, regardless of the value of this field. * @return accountSelectionEnabled **/ @javax.annotation.Nullable @ApiModelProperty(value = "If `true`, enables [update mode with Account Select](https://plaid.com/docs/link/update-mode/#using-update-mode-to-request-new-accounts) for institutions in the US and Canada that do not use OAuth, or that use OAuth but do not have their own account selection flow. For institutions in the US that have an OAuth account selection flow (i.e. most OAuth-enabled institutions), update mode with Account Select will always be enabled, regardless of the value of this field.") public Boolean getAccountSelectionEnabled() { return accountSelectionEnabled; } public void setAccountSelectionEnabled(Boolean accountSelectionEnabled) { this.accountSelectionEnabled = accountSelectionEnabled; } public LinkTokenCreateRequestUpdate reauthorizationEnabled(Boolean reauthorizationEnabled) { this.reauthorizationEnabled = reauthorizationEnabled; return this; } /** * Note: this field is not currently used. Plaid may enable this field in the future if 1033-related expiration begins to be enforced. By default, Plaid will enable the reauthorization flow during update mode for an Item enabled for [Data Transparency Messaging](https://plaid.com/docs/link/data-transparency-messaging-migration-guide/) if the Item expires within six months. During a reauthorization flow, an end user will review Plaid&#39;s end user privacy policy, use case and data scope consents, and account access consents; they may also be required to log in to their financial institution&#39;s OAuth flow. After the end user successfully completes the reauthorization flow, the Item&#39;s expiration date will be extended to 12 months from the time that the reauthorization took place. This field allows you to optionally override the default reauthorization scheduling logic to either forcibly enable or disable the reauthorization flow for a given update mode session. This field does not impact the flow for Items at institutions in the EU or UK. * @return reauthorizationEnabled **/ @javax.annotation.Nullable @ApiModelProperty(value = "Note: this field is not currently used. Plaid may enable this field in the future if 1033-related expiration begins to be enforced. By default, Plaid will enable the reauthorization flow during update mode for an Item enabled for [Data Transparency Messaging](https://plaid.com/docs/link/data-transparency-messaging-migration-guide/) if the Item expires within six months. During a reauthorization flow, an end user will review Plaid's end user privacy policy, use case and data scope consents, and account access consents; they may also be required to log in to their financial institution's OAuth flow. After the end user successfully completes the reauthorization flow, the Item's expiration date will be extended to 12 months from the time that the reauthorization took place. This field allows you to optionally override the default reauthorization scheduling logic to either forcibly enable or disable the reauthorization flow for a given update mode session. This field does not impact the flow for Items at institutions in the EU or UK. ") public Boolean getReauthorizationEnabled() { return reauthorizationEnabled; } public void setReauthorizationEnabled(Boolean reauthorizationEnabled) { this.reauthorizationEnabled = reauthorizationEnabled; } public LinkTokenCreateRequestUpdate user(Boolean user) { this.user = user; return this; } /** * If &#x60;true&#x60;, a &#x60;user_token&#x60; must also be provided, and Link will open in update mode for the given user. * @return user **/ @javax.annotation.Nullable @ApiModelProperty(value = "If `true`, a `user_token` must also be provided, and Link will open in update mode for the given user.") public Boolean getUser() { return user; } public void setUser(Boolean user) { this.user = user; } public LinkTokenCreateRequestUpdate itemIds(List<String> itemIds) { this.itemIds = itemIds; return this; } public LinkTokenCreateRequestUpdate addItemIdsItem(String itemIdsItem) { if (this.itemIds == null) { this.itemIds = new ArrayList<>(); } this.itemIds.add(itemIdsItem); return this; } /** * An array of &#x60;item_id&#x60;s associated with the user to be updated in update mode. If empty or &#x60;null&#x60;, this field will default to initializing update mode for the most recent unhealthy Item associated with the user. A &#x60;user_token&#x60; must also be provided to use this field. * @return itemIds **/ @javax.annotation.Nullable @ApiModelProperty(value = "An array of `item_id`s associated with the user to be updated in update mode. If empty or `null`, this field will default to initializing update mode for the most recent unhealthy Item associated with the user. A `user_token` must also be provided to use this field. ") public List<String> getItemIds() { return itemIds; } public void setItemIds(List<String> itemIds) { this.itemIds = itemIds; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkTokenCreateRequestUpdate linkTokenCreateRequestUpdate = (LinkTokenCreateRequestUpdate) o; return Objects.equals(this.accountSelectionEnabled, linkTokenCreateRequestUpdate.accountSelectionEnabled) && Objects.equals(this.reauthorizationEnabled, linkTokenCreateRequestUpdate.reauthorizationEnabled) && Objects.equals(this.user, linkTokenCreateRequestUpdate.user) && Objects.equals(this.itemIds, linkTokenCreateRequestUpdate.itemIds); } @Override public int hashCode() { return Objects.hash(accountSelectionEnabled, reauthorizationEnabled, user, itemIds); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkTokenCreateRequestUpdate {\n"); sb.append(" accountSelectionEnabled: ").append(toIndentedString(accountSelectionEnabled)).append("\n"); sb.append(" reauthorizationEnabled: ").append(toIndentedString(reauthorizationEnabled)).append("\n"); sb.append(" user: ").append(toIndentedString(user)).append("\n"); sb.append(" itemIds: ").append(toIndentedString(itemIds)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/MonthlyAverage.java
src/main/java/com/plaid/client/model/MonthlyAverage.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The monthly average amount calculated by dividing the total by the number of calendar months in the time period. */ @ApiModel(description = "The monthly average amount calculated by dividing the total by the number of calendar months in the time period.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class MonthlyAverage { 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 MonthlyAverage amount(Double amount) { this.amount = amount; return this; } /** * The monthly average amount of all the aggregated transactions of the given category, across all the accounts for the given time window. The average is calculated by dividing the total amount of the transactions by the number of calendar months in the given time window. * @return amount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The monthly average amount of all the aggregated transactions of the given category, across all the accounts for the given time window. The average is calculated by dividing the total amount of the transactions by the number of calendar months in the given time window.") public Double getAmount() { return amount; } public void setAmount(Double amount) { this.amount = amount; } public MonthlyAverage isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO-4217 currency code of the amount. Always &#x60;null&#x60; if &#x60;unofficial_currency_code&#x60; is non-&#x60;null&#x60;. * @return isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ISO-4217 currency code of the amount. Always `null` if `unofficial_currency_code` is non-`null`.") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public MonthlyAverage unofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; return this; } /** * The unofficial currency code associated with the amount. Always &#x60;null&#x60; if &#x60;iso_currency_code&#x60; is non-&#x60;null&#x60;. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported &#x60;unofficial_currency_code&#x60;s. * @return unofficialCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The unofficial currency code associated with the amount. Always `null` if `iso_currency_code` is non-`null`. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported `unofficial_currency_code`s.") public String getUnofficialCurrencyCode() { return unofficialCurrencyCode; } public void setUnofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } MonthlyAverage monthlyAverage = (MonthlyAverage) o; return Objects.equals(this.amount, monthlyAverage.amount) && Objects.equals(this.isoCurrencyCode, monthlyAverage.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, monthlyAverage.unofficialCurrencyCode); } @Override public int hashCode() { return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class MonthlyAverage {\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/BeaconAccountRiskEvaluateEvaluationReason.java
src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateEvaluationReason.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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; /** * Description of the reason you want to evaluate risk. &#x60;ONBOARDING&#x60;: user links a first bank account as part of the onboarding flow of your platform. &#x60;NEW_ACCOUNT&#x60;: user links another bank account or replaces the currently linked bank account on your platform. &#x60;INFORMATION_CHANGE&#x60;: user changes their information on your platform, e.g., updating their phone number. &#x60;DORMANT_USER&#x60;: you decide to re-evaluate a user that becomes active after a period of inactivity. &#x60;OTHER&#x60;: any other reasons not listed here Possible values: &#x60;ONBOARDING&#x60;, &#x60;NEW_ACCOUNT&#x60;, &#x60;INFORMATION_CHANGE&#x60;, &#x60;DORMANT_USER&#x60;, &#x60;OTHER&#x60; */ @JsonAdapter(BeaconAccountRiskEvaluateEvaluationReason.Adapter.class) public enum BeaconAccountRiskEvaluateEvaluationReason { ONBOARDING("ONBOARDING"), NEW_ACCOUNT("NEW_ACCOUNT"), INFORMATION_CHANGE("INFORMATION_CHANGE"), DORMANT_USER("DORMANT_USER"), OTHER("OTHER"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; BeaconAccountRiskEvaluateEvaluationReason(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static BeaconAccountRiskEvaluateEvaluationReason fromValue(String value) { for (BeaconAccountRiskEvaluateEvaluationReason b : BeaconAccountRiskEvaluateEvaluationReason.values()) { if (b.value.equals(value)) { return b; } } return BeaconAccountRiskEvaluateEvaluationReason.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<BeaconAccountRiskEvaluateEvaluationReason> { @Override public void write(final JsonWriter jsonWriter, final BeaconAccountRiskEvaluateEvaluationReason enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public BeaconAccountRiskEvaluateEvaluationReason read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return BeaconAccountRiskEvaluateEvaluationReason.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/TransactionsRecurringMergeResponse.java
src/main/java/com/plaid/client/model/TransactionsRecurringMergeResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.TransactionStream; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * TransactionsRecurringMergeResponse defines the response schema for the &#x60;/transactions/recurring/streams/merge&#x60; endpoint. */ @ApiModel(description = "TransactionsRecurringMergeResponse defines the response schema for the `/transactions/recurring/streams/merge` endpoint.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionsRecurringMergeResponse { public static final String SERIALIZED_NAME_MODIFIED_STREAMS = "modified_streams"; @SerializedName(SERIALIZED_NAME_MODIFIED_STREAMS) private List<TransactionStream> modifiedStreams = new ArrayList<>(); public static final String SERIALIZED_NAME_REMOVED_STREAM_IDS = "removed_stream_ids"; @SerializedName(SERIALIZED_NAME_REMOVED_STREAM_IDS) private List<String> removedStreamIds = null; public TransactionsRecurringMergeResponse modifiedStreams(List<TransactionStream> modifiedStreams) { this.modifiedStreams = modifiedStreams; return this; } public TransactionsRecurringMergeResponse addModifiedStreamsItem(TransactionStream modifiedStreamsItem) { this.modifiedStreams.add(modifiedStreamsItem); return this; } /** * Directly modified stream, along with other streams with transactions removed from them as a result of the operation (in no particular order). * @return modifiedStreams **/ @ApiModelProperty(required = true, value = "Directly modified stream, along with other streams with transactions removed from them as a result of the operation (in no particular order).") public List<TransactionStream> getModifiedStreams() { return modifiedStreams; } public void setModifiedStreams(List<TransactionStream> modifiedStreams) { this.modifiedStreams = modifiedStreams; } public TransactionsRecurringMergeResponse removedStreamIds(List<String> removedStreamIds) { this.removedStreamIds = removedStreamIds; return this; } public TransactionsRecurringMergeResponse addRemovedStreamIdsItem(String removedStreamIdsItem) { if (this.removedStreamIds == null) { this.removedStreamIds = new ArrayList<>(); } this.removedStreamIds.add(removedStreamIdsItem); return this; } /** * The ids of streams that are no longer qualified as recurring transaction streams (in no particular order). * @return removedStreamIds **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ids of streams that are no longer qualified as recurring transaction streams (in no particular order).") public List<String> getRemovedStreamIds() { return removedStreamIds; } public void setRemovedStreamIds(List<String> removedStreamIds) { this.removedStreamIds = removedStreamIds; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransactionsRecurringMergeResponse transactionsRecurringMergeResponse = (TransactionsRecurringMergeResponse) o; return Objects.equals(this.modifiedStreams, transactionsRecurringMergeResponse.modifiedStreams) && Objects.equals(this.removedStreamIds, transactionsRecurringMergeResponse.removedStreamIds); } @Override public int hashCode() { return Objects.hash(modifiedStreams, removedStreamIds); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsRecurringMergeResponse {\n"); sb.append(" modifiedStreams: ").append(toIndentedString(modifiedStreams)).append("\n"); sb.append(" removedStreamIds: ").append(toIndentedString(removedStreamIds)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BeaconReportCreateRequest.java
src/main/java/com/plaid/client/model/BeaconReportCreateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.BeaconReportCreateType; import com.plaid.client.model.FraudAmount; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * Request input for creating a Beacon Report */ @ApiModel(description = "Request input for creating a Beacon Report") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconReportCreateRequest { 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_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private BeaconReportCreateType type; public static final String SERIALIZED_NAME_FRAUD_DATE = "fraud_date"; @SerializedName(SERIALIZED_NAME_FRAUD_DATE) private LocalDate fraudDate; public static final String SERIALIZED_NAME_FRAUD_AMOUNT = "fraud_amount"; @SerializedName(SERIALIZED_NAME_FRAUD_AMOUNT) private FraudAmount fraudAmount; 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 BeaconReportCreateRequest 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 BeaconReportCreateRequest type(BeaconReportCreateType type) { this.type = type; return this; } /** * Get type * @return type **/ @ApiModelProperty(required = true, value = "") public BeaconReportCreateType getType() { return type; } public void setType(BeaconReportCreateType type) { this.type = type; } public BeaconReportCreateRequest fraudDate(LocalDate fraudDate) { this.fraudDate = fraudDate; return this; } /** * A date in the format YYYY-MM-DD (RFC 3339 Section 5.6). * @return fraudDate **/ @ApiModelProperty(example = "Tue May 29 00:00:00 UTC 1990", required = true, value = "A date in the format YYYY-MM-DD (RFC 3339 Section 5.6).") public LocalDate getFraudDate() { return fraudDate; } public void setFraudDate(LocalDate fraudDate) { this.fraudDate = fraudDate; } public BeaconReportCreateRequest fraudAmount(FraudAmount fraudAmount) { this.fraudAmount = fraudAmount; return this; } /** * Get fraudAmount * @return fraudAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public FraudAmount getFraudAmount() { return fraudAmount; } public void setFraudAmount(FraudAmount fraudAmount) { this.fraudAmount = fraudAmount; } public BeaconReportCreateRequest 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 BeaconReportCreateRequest 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; } BeaconReportCreateRequest beaconReportCreateRequest = (BeaconReportCreateRequest) o; return Objects.equals(this.beaconUserId, beaconReportCreateRequest.beaconUserId) && Objects.equals(this.type, beaconReportCreateRequest.type) && Objects.equals(this.fraudDate, beaconReportCreateRequest.fraudDate) && Objects.equals(this.fraudAmount, beaconReportCreateRequest.fraudAmount) && Objects.equals(this.clientId, beaconReportCreateRequest.clientId) && Objects.equals(this.secret, beaconReportCreateRequest.secret); } @Override public int hashCode() { return Objects.hash(beaconUserId, type, fraudDate, fraudAmount, clientId, secret); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconReportCreateRequest {\n"); sb.append(" beaconUserId: ").append(toIndentedString(beaconUserId)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" fraudDate: ").append(toIndentedString(fraudDate)).append("\n"); sb.append(" fraudAmount: ").append(toIndentedString(fraudAmount)).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/BusinessVerificationStatusRiskCheck.java
src/main/java/com/plaid/client/model/BusinessVerificationStatusRiskCheck.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * Status of the business risk assessment check */ @JsonAdapter(BusinessVerificationStatusRiskCheck.Adapter.class) public enum BusinessVerificationStatusRiskCheck { ACTIVE("active"), SUCCESS("success"), FAILED("failed"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; BusinessVerificationStatusRiskCheck(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static BusinessVerificationStatusRiskCheck fromValue(String value) { for (BusinessVerificationStatusRiskCheck b : BusinessVerificationStatusRiskCheck.values()) { if (b.value.equals(value)) { return b; } } return BusinessVerificationStatusRiskCheck.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<BusinessVerificationStatusRiskCheck> { @Override public void write(final JsonWriter jsonWriter, final BusinessVerificationStatusRiskCheck enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public BusinessVerificationStatusRiskCheck read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return BusinessVerificationStatusRiskCheck.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/TotalInflowAmount.java
src/main/java/com/plaid/client/model/TotalInflowAmount.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 account in the time period of the report. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account. */ @ApiModel(description = "Total amount of debit transactions into the account in the time period of the report. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TotalInflowAmount { 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 TotalInflowAmount 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 TotalInflowAmount 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 TotalInflowAmount 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; } TotalInflowAmount totalInflowAmount = (TotalInflowAmount) o; return Objects.equals(this.amount, totalInflowAmount.amount) && Objects.equals(this.isoCurrencyCode, totalInflowAmount.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, totalInflowAmount.unofficialCurrencyCode); } @Override public int hashCode() { return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TotalInflowAmount {\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/TransactionData.java
src/main/java/com/plaid/client/model/TransactionData.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Information about the matched direct deposit transaction used to verify a user&#39;s payroll information. */ @ApiModel(description = "Information about the matched direct deposit transaction used to verify a user's payroll information.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionData { public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) private String description; 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_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_TRANSACTION_ID = "transaction_id"; @SerializedName(SERIALIZED_NAME_TRANSACTION_ID) private String transactionId; public TransactionData description(String description) { this.description = description; return this; } /** * The description of the transaction. * @return description **/ @ApiModelProperty(required = true, value = "The description of the transaction.") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public TransactionData amount(Double amount) { this.amount = amount; return this; } /** * The amount of the transaction. * @return amount **/ @ApiModelProperty(required = true, value = "The amount of the transaction.") public Double getAmount() { return amount; } public void setAmount(Double amount) { this.amount = amount; } public TransactionData date(LocalDate date) { this.date = date; return this; } /** * The date of the transaction, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (\&quot;yyyy-mm-dd\&quot;). * @return date **/ @ApiModelProperty(required = true, value = "The date of the transaction, in [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 TransactionData accountId(String accountId) { this.accountId = accountId; return this; } /** * A unique identifier for the end user&#39;s account. * @return accountId **/ @ApiModelProperty(required = true, value = "A unique identifier for the end user's account.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public TransactionData transactionId(String transactionId) { this.transactionId = transactionId; return this; } /** * A unique identifier for the transaction. * @return transactionId **/ @ApiModelProperty(required = true, value = "A unique identifier for the transaction.") public String getTransactionId() { return transactionId; } public void setTransactionId(String transactionId) { this.transactionId = transactionId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransactionData transactionData = (TransactionData) o; return Objects.equals(this.description, transactionData.description) && Objects.equals(this.amount, transactionData.amount) && Objects.equals(this.date, transactionData.date) && Objects.equals(this.accountId, transactionData.accountId) && Objects.equals(this.transactionId, transactionData.transactionId); } @Override public int hashCode() { return Objects.hash(description, amount, date, accountId, transactionId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionData {\n"); sb.append(" description: ").append(toIndentedString(description)).append("\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" date: ").append(toIndentedString(date)).append("\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" transactionId: ").append(toIndentedString(transactionId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaystubOverrideDeductionsTotal.java
src/main/java/com/plaid/client/model/PaystubOverrideDeductionsTotal.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object representing the total deductions for the pay period */ @ApiModel(description = "An object representing the total deductions for the pay period") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaystubOverrideDeductionsTotal { public static final String SERIALIZED_NAME_CURRENT_AMOUNT = "current_amount"; @SerializedName(SERIALIZED_NAME_CURRENT_AMOUNT) private Double currentAmount; public static final String SERIALIZED_NAME_CURRENCY = "currency"; @SerializedName(SERIALIZED_NAME_CURRENCY) private String currency; public static final String SERIALIZED_NAME_YTD_AMOUNT = "ytd_amount"; @SerializedName(SERIALIZED_NAME_YTD_AMOUNT) private Double ytdAmount; public PaystubOverrideDeductionsTotal currentAmount(Double currentAmount) { this.currentAmount = currentAmount; return this; } /** * Raw amount of the deduction * @return currentAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "Raw amount of the deduction") public Double getCurrentAmount() { return currentAmount; } public void setCurrentAmount(Double currentAmount) { this.currentAmount = currentAmount; } public PaystubOverrideDeductionsTotal 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 PaystubOverrideDeductionsTotal ytdAmount(Double ytdAmount) { this.ytdAmount = ytdAmount; return this; } /** * The year-to-date total amount of the deductions * @return ytdAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The year-to-date total amount of the deductions") 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; } PaystubOverrideDeductionsTotal paystubOverrideDeductionsTotal = (PaystubOverrideDeductionsTotal) o; return Objects.equals(this.currentAmount, paystubOverrideDeductionsTotal.currentAmount) && Objects.equals(this.currency, paystubOverrideDeductionsTotal.currency) && Objects.equals(this.ytdAmount, paystubOverrideDeductionsTotal.ytdAmount); } @Override public int hashCode() { return Objects.hash(currentAmount, currency, ytdAmount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaystubOverrideDeductionsTotal {\n"); sb.append(" currentAmount: ").append(toIndentedString(currentAmount)).append("\n"); sb.append(" currency: ").append(toIndentedString(currency)).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/PaystubOverrideDeductionsBreakdown.java
src/main/java/com/plaid/client/model/PaystubOverrideDeductionsBreakdown.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object representing the deduction line items for the pay period */ @ApiModel(description = "An object representing the deduction 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 PaystubOverrideDeductionsBreakdown { 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_CURRENCY = "currency"; @SerializedName(SERIALIZED_NAME_CURRENCY) private String currency; public static final String SERIALIZED_NAME_YTD_AMOUNT = "ytd_amount"; @SerializedName(SERIALIZED_NAME_YTD_AMOUNT) private Double ytdAmount; public PaystubOverrideDeductionsBreakdown currentAmount(Double currentAmount) { this.currentAmount = currentAmount; return this; } /** * Raw amount of the deduction * @return currentAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "Raw amount of the deduction") public Double getCurrentAmount() { return currentAmount; } public void setCurrentAmount(Double currentAmount) { this.currentAmount = currentAmount; } public PaystubOverrideDeductionsBreakdown description(String description) { this.description = description; return this; } /** * Description of the deduction line item * @return description **/ @javax.annotation.Nullable @ApiModelProperty(value = "Description of the deduction line item") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public PaystubOverrideDeductionsBreakdown 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 PaystubOverrideDeductionsBreakdown 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; } PaystubOverrideDeductionsBreakdown paystubOverrideDeductionsBreakdown = (PaystubOverrideDeductionsBreakdown) o; return Objects.equals(this.currentAmount, paystubOverrideDeductionsBreakdown.currentAmount) && Objects.equals(this.description, paystubOverrideDeductionsBreakdown.description) && Objects.equals(this.currency, paystubOverrideDeductionsBreakdown.currency) && Objects.equals(this.ytdAmount, paystubOverrideDeductionsBreakdown.ytdAmount); } @Override public int hashCode() { return Objects.hash(currentAmount, description, currency, ytdAmount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaystubOverrideDeductionsBreakdown {\n"); sb.append(" currentAmount: ").append(toIndentedString(currentAmount)).append("\n"); sb.append(" description: ").append(toIndentedString(description)).append("\n"); sb.append(" currency: ").append(toIndentedString(currency)).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/EntityScreeningStatusUpdatedWebhook.java
src/main/java/com/plaid/client/model/EntityScreeningStatusUpdatedWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 an entity screening status has changed, which can occur manually via the dashboard or during ongoing monitoring. */ @ApiModel(description = "Fired when an entity screening status has changed, which can occur manually via the dashboard or during ongoing monitoring.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class EntityScreeningStatusUpdatedWebhook { 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_ENTITY_SCREENING_ID = "entity_screening_id"; @SerializedName(SERIALIZED_NAME_ENTITY_SCREENING_ID) private String entityScreeningId; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public EntityScreeningStatusUpdatedWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;ENTITY_SCREENING&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`ENTITY_SCREENING`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public EntityScreeningStatusUpdatedWebhook 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 EntityScreeningStatusUpdatedWebhook entityScreeningId(String entityScreeningId) { this.entityScreeningId = entityScreeningId; return this; } /** * The ID of the associated entity screening. * @return entityScreeningId **/ @ApiModelProperty(required = true, value = "The ID of the associated entity screening.") public String getEntityScreeningId() { return entityScreeningId; } public void setEntityScreeningId(String entityScreeningId) { this.entityScreeningId = entityScreeningId; } public EntityScreeningStatusUpdatedWebhook 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; } EntityScreeningStatusUpdatedWebhook entityScreeningStatusUpdatedWebhook = (EntityScreeningStatusUpdatedWebhook) o; return Objects.equals(this.webhookType, entityScreeningStatusUpdatedWebhook.webhookType) && Objects.equals(this.webhookCode, entityScreeningStatusUpdatedWebhook.webhookCode) && Objects.equals(this.entityScreeningId, entityScreeningStatusUpdatedWebhook.entityScreeningId) && Objects.equals(this.environment, entityScreeningStatusUpdatedWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, entityScreeningId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class EntityScreeningStatusUpdatedWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" entityScreeningId: ").append(toIndentedString(entityScreeningId)).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/TransferBalanceType.java
src/main/java/com/plaid/client/model/TransferBalanceType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 balance. &#x60;prefunded_rtp_credits&#x60; - Your prefunded RTP credit balance with Plaid &#x60;prefunded_ach_credits&#x60; - Your prefunded ACH credit balance with Plaid */ @JsonAdapter(TransferBalanceType.Adapter.class) public enum TransferBalanceType { RTP_CREDITS("prefunded_rtp_credits"), ACH_CREDITS("prefunded_ach_credits"), // 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; TransferBalanceType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransferBalanceType fromValue(String value) { for (TransferBalanceType b : TransferBalanceType.values()) { if (b.value.equals(value)) { return b; } } return TransferBalanceType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<TransferBalanceType> { @Override public void write(final JsonWriter jsonWriter, final TransferBalanceType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransferBalanceType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransferBalanceType.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/CraEmploymentRefreshReport.java
src/main/java/com/plaid/client/model/CraEmploymentRefreshReport.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CraEmploymentRefreshReportItem; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.math.BigDecimal; import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.List; /** * An object representing an Employment Refresh Report. */ @ApiModel(description = "An object representing an Employment Refresh Report.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraEmploymentRefreshReport { public static final String SERIALIZED_NAME_GENERATED_TIME = "generated_time"; @SerializedName(SERIALIZED_NAME_GENERATED_TIME) private OffsetDateTime generatedTime; public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) private Double daysRequested; public static final String SERIALIZED_NAME_ITEMS = "items"; @SerializedName(SERIALIZED_NAME_ITEMS) private List<CraEmploymentRefreshReportItem> items = new ArrayList<>(); public CraEmploymentRefreshReport generatedTime(OffsetDateTime generatedTime) { this.generatedTime = generatedTime; return this; } /** * The date and time when the Employment Refresh Report was created, in ISO 8601 format (e.g. \&quot;2018-04-12T03:32:11Z\&quot;). * @return generatedTime **/ @ApiModelProperty(required = true, value = "The date and time when the Employment Refresh Report was created, in ISO 8601 format (e.g. \"2018-04-12T03:32:11Z\").") public OffsetDateTime getGeneratedTime() { return generatedTime; } public void setGeneratedTime(OffsetDateTime generatedTime) { this.generatedTime = generatedTime; } public CraEmploymentRefreshReport daysRequested(Double daysRequested) { this.daysRequested = daysRequested; return this; } /** * The number of days of transaction history that the Employment Refresh Report covers. * @return daysRequested **/ @ApiModelProperty(required = true, value = "The number of days of transaction history that the Employment Refresh Report covers.") public Double getDaysRequested() { return daysRequested; } public void setDaysRequested(Double daysRequested) { this.daysRequested = daysRequested; } public CraEmploymentRefreshReport items(List<CraEmploymentRefreshReportItem> items) { this.items = items; return this; } public CraEmploymentRefreshReport addItemsItem(CraEmploymentRefreshReportItem itemsItem) { this.items.add(itemsItem); return this; } /** * Data returned by Plaid about each of the Items included in the Employment Refresh Report. * @return items **/ @ApiModelProperty(required = true, value = "Data returned by Plaid about each of the Items included in the Employment Refresh Report.") public List<CraEmploymentRefreshReportItem> getItems() { return items; } public void setItems(List<CraEmploymentRefreshReportItem> items) { this.items = items; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraEmploymentRefreshReport craEmploymentRefreshReport = (CraEmploymentRefreshReport) o; return Objects.equals(this.generatedTime, craEmploymentRefreshReport.generatedTime) && Objects.equals(this.daysRequested, craEmploymentRefreshReport.daysRequested) && Objects.equals(this.items, craEmploymentRefreshReport.items); } @Override public int hashCode() { return Objects.hash(generatedTime, daysRequested, items); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraEmploymentRefreshReport {\n"); sb.append(" generatedTime: ").append(toIndentedString(generatedTime)).append("\n"); sb.append(" daysRequested: ").append(toIndentedString(daysRequested)).append("\n"); sb.append(" items: ").append(toIndentedString(items)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ItemAddResultWebhook.java
src/main/java/com/plaid/client/model/ItemAddResultWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 a user successfully adds a Plaid Item during a Link session when using Hosted Link or Multi-Item Link sessions. Contains the public token for the Item. */ @ApiModel(description = "Fired when a user successfully adds a Plaid Item during a Link session when using Hosted Link or Multi-Item Link sessions. Contains the public token for the Item.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ItemAddResultWebhook { 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_LINK_SESSION_ID = "link_session_id"; @SerializedName(SERIALIZED_NAME_LINK_SESSION_ID) private String linkSessionId; public static final String SERIALIZED_NAME_LINK_TOKEN = "link_token"; @SerializedName(SERIALIZED_NAME_LINK_TOKEN) private String linkToken; public static final String SERIALIZED_NAME_PUBLIC_TOKEN = "public_token"; @SerializedName(SERIALIZED_NAME_PUBLIC_TOKEN) private String publicToken; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public ItemAddResultWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;LINK&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`LINK`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public ItemAddResultWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;ITEM_ADD_RESULT&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`ITEM_ADD_RESULT`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public ItemAddResultWebhook linkSessionId(String linkSessionId) { this.linkSessionId = linkSessionId; return this; } /** * The identifier for the Link session. * @return linkSessionId **/ @ApiModelProperty(required = true, value = "The identifier for the Link session.") public String getLinkSessionId() { return linkSessionId; } public void setLinkSessionId(String linkSessionId) { this.linkSessionId = linkSessionId; } public ItemAddResultWebhook linkToken(String linkToken) { this.linkToken = linkToken; return this; } /** * The link token used to create the Link session. * @return linkToken **/ @ApiModelProperty(required = true, value = "The link token used to create the Link session.") public String getLinkToken() { return linkToken; } public void setLinkToken(String linkToken) { this.linkToken = linkToken; } public ItemAddResultWebhook publicToken(String publicToken) { this.publicToken = publicToken; return this; } /** * The public token corresponding to the item that was added. * @return publicToken **/ @ApiModelProperty(required = true, value = "The public token corresponding to the item that was added.") public String getPublicToken() { return publicToken; } public void setPublicToken(String publicToken) { this.publicToken = publicToken; } public ItemAddResultWebhook 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; } ItemAddResultWebhook itemAddResultWebhook = (ItemAddResultWebhook) o; return Objects.equals(this.webhookType, itemAddResultWebhook.webhookType) && Objects.equals(this.webhookCode, itemAddResultWebhook.webhookCode) && Objects.equals(this.linkSessionId, itemAddResultWebhook.linkSessionId) && Objects.equals(this.linkToken, itemAddResultWebhook.linkToken) && Objects.equals(this.publicToken, itemAddResultWebhook.publicToken) && Objects.equals(this.environment, itemAddResultWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, linkSessionId, linkToken, publicToken, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ItemAddResultWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" linkSessionId: ").append(toIndentedString(linkSessionId)).append("\n"); sb.append(" linkToken: ").append(toIndentedString(linkToken)).append("\n"); sb.append(" publicToken: ").append(toIndentedString(publicToken)).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/ProjectedIncomeSummaryFieldNumber.java
src/main/java/com/plaid/client/model/ProjectedIncomeSummaryFieldNumber.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.IncomeSummaryFieldNumber; import com.plaid.client.model.VerificationStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The employee&#39;s estimated annual salary, as derived from information reported on the paystub. */ @ApiModel(description = "The employee's estimated annual salary, as derived from information reported on the paystub.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProjectedIncomeSummaryFieldNumber { public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) private Double value; public static final String SERIALIZED_NAME_VERIFICATION_STATUS = "verification_status"; @SerializedName(SERIALIZED_NAME_VERIFICATION_STATUS) private VerificationStatus verificationStatus; public ProjectedIncomeSummaryFieldNumber value(Double value) { this.value = value; return this; } /** * The value of the field. * @return value **/ @ApiModelProperty(required = true, value = "The value of the field.") public Double getValue() { return value; } public void setValue(Double value) { this.value = value; } public ProjectedIncomeSummaryFieldNumber verificationStatus(VerificationStatus verificationStatus) { this.verificationStatus = verificationStatus; return this; } /** * Get verificationStatus * @return verificationStatus **/ @ApiModelProperty(required = true, value = "") public VerificationStatus getVerificationStatus() { return verificationStatus; } public void setVerificationStatus(VerificationStatus verificationStatus) { this.verificationStatus = verificationStatus; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProjectedIncomeSummaryFieldNumber projectedIncomeSummaryFieldNumber = (ProjectedIncomeSummaryFieldNumber) o; return Objects.equals(this.value, projectedIncomeSummaryFieldNumber.value) && Objects.equals(this.verificationStatus, projectedIncomeSummaryFieldNumber.verificationStatus); } @Override public int hashCode() { return Objects.hash(value, verificationStatus); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProjectedIncomeSummaryFieldNumber {\n"); sb.append(" value: ").append(toIndentedString(value)).append("\n"); sb.append(" verificationStatus: ").append(toIndentedString(verificationStatus)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WalletTransactionsListRequest.java
src/main/java/com/plaid/client/model/WalletTransactionsListRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.WalletTransactionListRequestOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * WalletTransactionListRequest defines the request schema for &#x60;/wallet/transaction/list&#x60; */ @ApiModel(description = "WalletTransactionListRequest defines the request schema for `/wallet/transaction/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WalletTransactionsListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_WALLET_ID = "wallet_id"; @SerializedName(SERIALIZED_NAME_WALLET_ID) private String walletId; public static final String SERIALIZED_NAME_CURSOR = "cursor"; @SerializedName(SERIALIZED_NAME_CURSOR) private String cursor; public static final String SERIALIZED_NAME_COUNT = "count"; @SerializedName(SERIALIZED_NAME_COUNT) private Integer count = 10; public static final String SERIALIZED_NAME_OPTIONS = "options"; @SerializedName(SERIALIZED_NAME_OPTIONS) private WalletTransactionListRequestOptions options; public WalletTransactionsListRequest 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 WalletTransactionsListRequest 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 WalletTransactionsListRequest walletId(String walletId) { this.walletId = walletId; return this; } /** * The ID of the e-wallet to fetch transactions from * @return walletId **/ @ApiModelProperty(required = true, value = "The ID of the e-wallet to fetch transactions from") public String getWalletId() { return walletId; } public void setWalletId(String walletId) { this.walletId = walletId; } public WalletTransactionsListRequest cursor(String cursor) { this.cursor = cursor; return this; } /** * A base64 value representing the latest transaction that has already been requested. Set this to &#x60;next_cursor&#x60; received from the previous &#x60;/wallet/transaction/list&#x60; request. If provided, the response will only contain transactions created before that transaction. If omitted, the response will contain transactions starting from the most recent, and in descending order by the &#x60;created_at&#x60; time. * @return cursor **/ @javax.annotation.Nullable @ApiModelProperty(value = "A base64 value representing the latest transaction that has already been requested. Set this to `next_cursor` received from the previous `/wallet/transaction/list` request. If provided, the response will only contain transactions created before that transaction. If omitted, the response will contain transactions starting from the most recent, and in descending order by the `created_at` time.") public String getCursor() { return cursor; } public void setCursor(String cursor) { this.cursor = cursor; } public WalletTransactionsListRequest count(Integer count) { this.count = count; return this; } /** * The number of transactions to fetch * minimum: 1 * maximum: 200 * @return count **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of transactions to fetch") public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } public WalletTransactionsListRequest options(WalletTransactionListRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public WalletTransactionListRequestOptions getOptions() { return options; } public void setOptions(WalletTransactionListRequestOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } WalletTransactionsListRequest walletTransactionsListRequest = (WalletTransactionsListRequest) o; return Objects.equals(this.clientId, walletTransactionsListRequest.clientId) && Objects.equals(this.secret, walletTransactionsListRequest.secret) && Objects.equals(this.walletId, walletTransactionsListRequest.walletId) && Objects.equals(this.cursor, walletTransactionsListRequest.cursor) && Objects.equals(this.count, walletTransactionsListRequest.count) && Objects.equals(this.options, walletTransactionsListRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, secret, walletId, cursor, count, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WalletTransactionsListRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" walletId: ").append(toIndentedString(walletId)).append("\n"); sb.append(" cursor: ").append(toIndentedString(cursor)).append("\n"); sb.append(" count: ").append(toIndentedString(count)).append("\n"); sb.append(" options: ").append(toIndentedString(options)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TotalOutflowAmount90d.java
src/main/java/com/plaid/client/model/TotalOutflowAmount90d.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.math.BigDecimal; /** * Total amount of credit transactions into the account in the last 90 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account. */ @ApiModel(description = "Total amount of credit transactions into the account in the last 90 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TotalOutflowAmount90d { 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 TotalOutflowAmount90d 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 TotalOutflowAmount90d 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 TotalOutflowAmount90d 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; } TotalOutflowAmount90d totalOutflowAmount90d = (TotalOutflowAmount90d) o; return Objects.equals(this.amount, totalOutflowAmount90d.amount) && Objects.equals(this.isoCurrencyCode, totalOutflowAmount90d.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, totalOutflowAmount90d.unofficialCurrencyCode); } @Override public int hashCode() { return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TotalOutflowAmount90d {\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/ConsumerDisputeCategory.java
src/main/java/com/plaid/client/model/ConsumerDisputeCategory.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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; /** * Type of data being disputed by the consumer */ @JsonAdapter(ConsumerDisputeCategory.Adapter.class) public enum ConsumerDisputeCategory { TRANSACTION("TRANSACTION"), BALANCE("BALANCE"), IDENTITY("IDENTITY"), OTHER("OTHER"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; ConsumerDisputeCategory(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static ConsumerDisputeCategory fromValue(String value) { for (ConsumerDisputeCategory b : ConsumerDisputeCategory.values()) { if (b.value.equals(value)) { return b; } } return ConsumerDisputeCategory.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<ConsumerDisputeCategory> { @Override public void write(final JsonWriter jsonWriter, final ConsumerDisputeCategory enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public ConsumerDisputeCategory read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return ConsumerDisputeCategory.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/ProviderBusinessAddress.java
src/main/java/com/plaid/client/model/ProviderBusinessAddress.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Detailed address information for a business from data provider */ @ApiModel(description = "Detailed address information for a business from data provider") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProviderBusinessAddress { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) private String street; public static final String SERIALIZED_NAME_STREET2 = "street2"; @SerializedName(SERIALIZED_NAME_STREET2) private String street2; public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) private String city; public static final String SERIALIZED_NAME_REGION = "region"; @SerializedName(SERIALIZED_NAME_REGION) private String region; public static final String SERIALIZED_NAME_POSTAL_CODE = "postal_code"; @SerializedName(SERIALIZED_NAME_POSTAL_CODE) private String postalCode; public static final String SERIALIZED_NAME_COUNTRY = "country"; @SerializedName(SERIALIZED_NAME_COUNTRY) private String country; public static final String SERIALIZED_NAME_IS_PRIMARY = "is_primary"; @SerializedName(SERIALIZED_NAME_IS_PRIMARY) private Boolean isPrimary; public ProviderBusinessAddress street(String street) { this.street = street; return this; } /** * The primary street portion of an address. If an address is provided, this field will always be filled. A string with at least one non-whitespace alphabetical character, with a max length of 80 characters. * @return street **/ @javax.annotation.Nullable @ApiModelProperty(example = "123 Main St.", required = true, value = "The primary street portion of an address. If an address is provided, this field will always be filled. A string with at least one non-whitespace alphabetical character, with a max length of 80 characters.") public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } public ProviderBusinessAddress street2(String street2) { this.street2 = street2; return this; } /** * Extra street information, like an apartment or suite number. If provided, a string with at least one non-whitespace character, with a max length of 50 characters. * @return street2 **/ @javax.annotation.Nullable @ApiModelProperty(example = "Unit 42", required = true, value = "Extra street information, like an apartment or suite number. If provided, a string with at least one non-whitespace character, with a max length of 50 characters.") public String getStreet2() { return street2; } public void setStreet2(String street2) { this.street2 = street2; } public ProviderBusinessAddress city(String city) { this.city = city; return this; } /** * City from the address. A string with at least one non-whitespace alphabetical character, with a max length of 100 characters. * @return city **/ @javax.annotation.Nullable @ApiModelProperty(example = "Pawnee", required = true, value = "City from the address. A string with at least one non-whitespace alphabetical character, with a max length of 100 characters.") public String getCity() { return city; } public void setCity(String city) { this.city = city; } public ProviderBusinessAddress region(String region) { this.region = region; return this; } /** * A subdivision code. \&quot;Subdivision\&quot; is a generic term for \&quot;state\&quot;, \&quot;province\&quot;, \&quot;prefecture\&quot;, \&quot;zone\&quot;, etc. For the list of valid codes, see [country subdivision codes](https://plaid.com/documents/country_subdivision_codes.json). Country prefixes are omitted, since they are inferred from the &#x60;country&#x60; field. * @return region **/ @javax.annotation.Nullable @ApiModelProperty(example = "IN", required = true, value = "A subdivision code. \"Subdivision\" is a generic term for \"state\", \"province\", \"prefecture\", \"zone\", etc. For the list of valid codes, see [country subdivision codes](https://plaid.com/documents/country_subdivision_codes.json). Country prefixes are omitted, since they are inferred from the `country` field.") public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public ProviderBusinessAddress postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * The postal code for the associated address. Between 2 and 10 alphanumeric characters. For US-based addresses this must be 5 numeric digits. * @return postalCode **/ @javax.annotation.Nullable @ApiModelProperty(example = "46001", required = true, value = "The postal code for the associated address. Between 2 and 10 alphanumeric characters. For US-based addresses this must be 5 numeric digits.") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public ProviderBusinessAddress country(String country) { this.country = country; return this; } /** * Valid, capitalized, two-letter ISO code representing the country of this object. Must be in ISO 3166-1 alpha-2 form. * @return country **/ @ApiModelProperty(example = "US", required = true, value = "Valid, capitalized, two-letter ISO code representing the country of this object. Must be in ISO 3166-1 alpha-2 form.") public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public ProviderBusinessAddress isPrimary(Boolean isPrimary) { this.isPrimary = isPrimary; return this; } /** * Whether this is the primary address for the business * @return isPrimary **/ @ApiModelProperty(example = "true", required = true, value = "Whether this is the primary address for the business") public Boolean getIsPrimary() { return isPrimary; } public void setIsPrimary(Boolean isPrimary) { this.isPrimary = isPrimary; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProviderBusinessAddress providerBusinessAddress = (ProviderBusinessAddress) o; return Objects.equals(this.street, providerBusinessAddress.street) && Objects.equals(this.street2, providerBusinessAddress.street2) && Objects.equals(this.city, providerBusinessAddress.city) && Objects.equals(this.region, providerBusinessAddress.region) && Objects.equals(this.postalCode, providerBusinessAddress.postalCode) && Objects.equals(this.country, providerBusinessAddress.country) && Objects.equals(this.isPrimary, providerBusinessAddress.isPrimary); } @Override public int hashCode() { return Objects.hash(street, street2, city, region, postalCode, country, isPrimary); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProviderBusinessAddress {\n"); sb.append(" street: ").append(toIndentedString(street)).append("\n"); sb.append(" street2: ").append(toIndentedString(street2)).append("\n"); sb.append(" city: ").append(toIndentedString(city)).append("\n"); sb.append(" region: ").append(toIndentedString(region)).append("\n"); sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n"); sb.append(" country: ").append(toIndentedString(country)).append("\n"); sb.append(" isPrimary: ").append(toIndentedString(isPrimary)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IdentityGetRequestOptions.java
src/main/java/com/plaid/client/model/IdentityGetRequestOptions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * An optional object to filter &#x60;/identity/get&#x60; results. */ @ApiModel(description = "An optional object to filter `/identity/get` results.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityGetRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) private List<String> accountIds = null; public IdentityGetRequestOptions accountIds(List<String> accountIds) { this.accountIds = accountIds; return this; } public IdentityGetRequestOptions addAccountIdsItem(String accountIdsItem) { if (this.accountIds == null) { this.accountIds = new ArrayList<>(); } this.accountIds.add(accountIdsItem); return this; } /** * A list of &#x60;account_ids&#x60; to retrieve for the Item. Note: An error will be returned if a provided &#x60;account_id&#x60; is not associated with the Item. * @return accountIds **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of `account_ids` to retrieve for the Item. Note: An error will be returned if a provided `account_id` is not associated with the Item.") public List<String> getAccountIds() { return accountIds; } public void setAccountIds(List<String> accountIds) { this.accountIds = accountIds; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IdentityGetRequestOptions identityGetRequestOptions = (IdentityGetRequestOptions) o; return Objects.equals(this.accountIds, identityGetRequestOptions.accountIds); } @Override public int hashCode() { return Objects.hash(accountIds); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityGetRequestOptions {\n"); sb.append(" accountIds: ").append(toIndentedString(accountIds)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorSignalReturnReportResponse.java
src/main/java/com/plaid/client/model/ProcessorSignalReturnReportResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * ProcessorSignalReturnReportResponse defines the response schema for &#x60;/processor/signal/return/report&#x60; */ @ApiModel(description = "ProcessorSignalReturnReportResponse defines the response schema for `/processor/signal/return/report`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorSignalReturnReportResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public ProcessorSignalReturnReportResponse 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; } ProcessorSignalReturnReportResponse processorSignalReturnReportResponse = (ProcessorSignalReturnReportResponse) o; return Objects.equals(this.requestId, processorSignalReturnReportResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorSignalReturnReportResponse {\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/BeaconUserStatus.java
src/main/java/com/plaid/client/model/BeaconUserStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 status of a Beacon User. &#x60;rejected&#x60;: The Beacon User has been rejected for fraud. Users can be automatically or manually rejected. &#x60;pending_review&#x60;: The Beacon User has been marked for review. &#x60;cleared&#x60;: The Beacon User has been cleared of fraud. */ @JsonAdapter(BeaconUserStatus.Adapter.class) public enum BeaconUserStatus { REJECTED("rejected"), PENDING_REVIEW("pending_review"), CLEARED("cleared"), // 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; BeaconUserStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static BeaconUserStatus fromValue(String value) { for (BeaconUserStatus b : BeaconUserStatus.values()) { if (b.value.equals(value)) { return b; } } return BeaconUserStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<BeaconUserStatus> { @Override public void write(final JsonWriter jsonWriter, final BeaconUserStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public BeaconUserStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return BeaconUserStatus.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/EntityScreeningHitNamesItems.java
src/main/java/com/plaid/client/model/EntityScreeningHitNamesItems.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.EntityScreeningHitNames; import com.plaid.client.model.MatchSummary; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Analyzed names for the associated hit */ @ApiModel(description = "Analyzed names for the associated hit") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class EntityScreeningHitNamesItems { public static final String SERIALIZED_NAME_ANALYSIS = "analysis"; @SerializedName(SERIALIZED_NAME_ANALYSIS) private MatchSummary analysis; public static final String SERIALIZED_NAME_DATA = "data"; @SerializedName(SERIALIZED_NAME_DATA) private EntityScreeningHitNames data; public EntityScreeningHitNamesItems analysis(MatchSummary analysis) { this.analysis = analysis; return this; } /** * Get analysis * @return analysis **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public MatchSummary getAnalysis() { return analysis; } public void setAnalysis(MatchSummary analysis) { this.analysis = analysis; } public EntityScreeningHitNamesItems data(EntityScreeningHitNames data) { this.data = data; return this; } /** * Get data * @return data **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public EntityScreeningHitNames getData() { return data; } public void setData(EntityScreeningHitNames data) { this.data = data; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } EntityScreeningHitNamesItems entityScreeningHitNamesItems = (EntityScreeningHitNamesItems) o; return Objects.equals(this.analysis, entityScreeningHitNamesItems.analysis) && Objects.equals(this.data, entityScreeningHitNamesItems.data); } @Override public int hashCode() { return Objects.hash(analysis, data); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class EntityScreeningHitNamesItems {\n"); sb.append(" analysis: ").append(toIndentedString(analysis)).append("\n"); sb.append(" data: ").append(toIndentedString(data)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorAccountGetRequest.java
src/main/java/com/plaid/client/model/ProcessorAccountGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * ProcessorAccountGetRequest defines the request schema for &#x60;/processor/account/get&#x60; */ @ApiModel(description = "ProcessorAccountGetRequest defines the request schema for `/processor/account/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorAccountGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_PROCESSOR_TOKEN = "processor_token"; @SerializedName(SERIALIZED_NAME_PROCESSOR_TOKEN) private String processorToken; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public ProcessorAccountGetRequest 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 ProcessorAccountGetRequest processorToken(String processorToken) { this.processorToken = processorToken; return this; } /** * The processor token obtained from the Plaid integration partner. Processor tokens are in the format: &#x60;processor-&lt;environment&gt;-&lt;identifier&gt;&#x60; * @return processorToken **/ @ApiModelProperty(required = true, value = "The processor token obtained from the Plaid integration partner. Processor tokens are in the format: `processor-<environment>-<identifier>`") public String getProcessorToken() { return processorToken; } public void setProcessorToken(String processorToken) { this.processorToken = processorToken; } public ProcessorAccountGetRequest 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; } ProcessorAccountGetRequest processorAccountGetRequest = (ProcessorAccountGetRequest) o; return Objects.equals(this.clientId, processorAccountGetRequest.clientId) && Objects.equals(this.processorToken, processorAccountGetRequest.processorToken) && Objects.equals(this.secret, processorAccountGetRequest.secret); } @Override public int hashCode() { return Objects.hash(clientId, processorToken, secret); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorAccountGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" processorToken: ").append(toIndentedString(processorToken)).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/CraVerificationReport.java
src/main/java/com/plaid/client/model/CraVerificationReport.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CraEmploymentRefreshReport; import com.plaid.client.model.CraVoaReport; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Contains data for the CRA Verification Report. */ @ApiModel(description = "Contains data for the CRA Verification Report.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraVerificationReport { public static final String SERIALIZED_NAME_REPORT_ID = "report_id"; @SerializedName(SERIALIZED_NAME_REPORT_ID) private String reportId; 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_VOA = "voa"; @SerializedName(SERIALIZED_NAME_VOA) private CraVoaReport voa; public static final String SERIALIZED_NAME_EMPLOYMENT_REFRESH = "employment_refresh"; @SerializedName(SERIALIZED_NAME_EMPLOYMENT_REFRESH) private CraEmploymentRefreshReport employmentRefresh; public CraVerificationReport reportId(String reportId) { this.reportId = reportId; return this; } /** * The unique identifier associated with the Verification Report object. This ID will be the same as the Base Report ID. * @return reportId **/ @ApiModelProperty(required = true, value = "The unique identifier associated with the Verification Report object. This ID will be the same as the Base Report ID.") public String getReportId() { return reportId; } public void setReportId(String reportId) { this.reportId = reportId; } public CraVerificationReport 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 CraVerificationReport voa(CraVoaReport voa) { this.voa = voa; return this; } /** * Get voa * @return voa **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CraVoaReport getVoa() { return voa; } public void setVoa(CraVoaReport voa) { this.voa = voa; } public CraVerificationReport employmentRefresh(CraEmploymentRefreshReport employmentRefresh) { this.employmentRefresh = employmentRefresh; return this; } /** * Get employmentRefresh * @return employmentRefresh **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CraEmploymentRefreshReport getEmploymentRefresh() { return employmentRefresh; } public void setEmploymentRefresh(CraEmploymentRefreshReport employmentRefresh) { this.employmentRefresh = employmentRefresh; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraVerificationReport craVerificationReport = (CraVerificationReport) o; return Objects.equals(this.reportId, craVerificationReport.reportId) && Objects.equals(this.clientReportId, craVerificationReport.clientReportId) && Objects.equals(this.voa, craVerificationReport.voa) && Objects.equals(this.employmentRefresh, craVerificationReport.employmentRefresh); } @Override public int hashCode() { return Objects.hash(reportId, clientReportId, voa, employmentRefresh); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraVerificationReport {\n"); sb.append(" reportId: ").append(toIndentedString(reportId)).append("\n"); sb.append(" clientReportId: ").append(toIndentedString(clientReportId)).append("\n"); sb.append(" voa: ").append(toIndentedString(voa)).append("\n"); sb.append(" employmentRefresh: ").append(toIndentedString(employmentRefresh)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BankTransferSweepListRequest.java
src/main/java/com/plaid/client/model/BankTransferSweepListRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * BankTransferSweepListRequest defines the request schema for &#x60;/bank_transfer/sweep/list&#x60; */ @ApiModel(description = "BankTransferSweepListRequest defines the request schema for `/bank_transfer/sweep/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BankTransferSweepListRequest { 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_ORIGINATION_ACCOUNT_ID = "origination_account_id"; @SerializedName(SERIALIZED_NAME_ORIGINATION_ACCOUNT_ID) private String originationAccountId; public static final String SERIALIZED_NAME_START_TIME = "start_time"; @SerializedName(SERIALIZED_NAME_START_TIME) private OffsetDateTime startTime; public static final String SERIALIZED_NAME_END_TIME = "end_time"; @SerializedName(SERIALIZED_NAME_END_TIME) private OffsetDateTime endTime; public static final String SERIALIZED_NAME_COUNT = "count"; @SerializedName(SERIALIZED_NAME_COUNT) private Integer count = 25; public BankTransferSweepListRequest 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 BankTransferSweepListRequest 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 BankTransferSweepListRequest originationAccountId(String originationAccountId) { this.originationAccountId = originationAccountId; return this; } /** * If multiple origination accounts are available, &#x60;origination_account_id&#x60; must be used to specify the account that the sweeps belong to. * @return originationAccountId **/ @javax.annotation.Nullable @ApiModelProperty(value = "If multiple origination accounts are available, `origination_account_id` must be used to specify the account that the sweeps belong to.") public String getOriginationAccountId() { return originationAccountId; } public void setOriginationAccountId(String originationAccountId) { this.originationAccountId = originationAccountId; } public BankTransferSweepListRequest startTime(OffsetDateTime startTime) { this.startTime = startTime; return this; } /** * The start &#x60;created&#x60; datetime of sweeps to return (RFC 3339 format). * @return startTime **/ @javax.annotation.Nullable @ApiModelProperty(value = "The start `created` datetime of sweeps to return (RFC 3339 format).") public OffsetDateTime getStartTime() { return startTime; } public void setStartTime(OffsetDateTime startTime) { this.startTime = startTime; } public BankTransferSweepListRequest endTime(OffsetDateTime endTime) { this.endTime = endTime; return this; } /** * The end &#x60;created&#x60; datetime of sweeps to return (RFC 3339 format). * @return endTime **/ @javax.annotation.Nullable @ApiModelProperty(value = "The end `created` datetime of sweeps to return (RFC 3339 format).") public OffsetDateTime getEndTime() { return endTime; } public void setEndTime(OffsetDateTime endTime) { this.endTime = endTime; } public BankTransferSweepListRequest count(Integer count) { this.count = count; return this; } /** * The maximum number of sweeps to return. * minimum: 1 * maximum: 25 * @return count **/ @javax.annotation.Nullable @ApiModelProperty(value = "The maximum number of sweeps to return.") public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BankTransferSweepListRequest bankTransferSweepListRequest = (BankTransferSweepListRequest) o; return Objects.equals(this.clientId, bankTransferSweepListRequest.clientId) && Objects.equals(this.secret, bankTransferSweepListRequest.secret) && Objects.equals(this.originationAccountId, bankTransferSweepListRequest.originationAccountId) && Objects.equals(this.startTime, bankTransferSweepListRequest.startTime) && Objects.equals(this.endTime, bankTransferSweepListRequest.endTime) && Objects.equals(this.count, bankTransferSweepListRequest.count); } @Override public int hashCode() { return Objects.hash(clientId, secret, originationAccountId, startTime, endTime, count); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BankTransferSweepListRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" originationAccountId: ").append(toIndentedString(originationAccountId)).append("\n"); sb.append(" startTime: ").append(toIndentedString(startTime)).append("\n"); sb.append(" endTime: ").append(toIndentedString(endTime)).append("\n"); sb.append(" count: ").append(toIndentedString(count)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditFreddieMacLoan.java
src/main/java/com/plaid/client/model/CreditFreddieMacLoan.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CreditFreddieMacLoanIdentifiers; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Information specific to a mortgage loan agreement between one or more borrowers and a mortgage lender. */ @ApiModel(description = "Information specific to a mortgage loan agreement between one or more borrowers and a mortgage lender.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditFreddieMacLoan { public static final String SERIALIZED_NAME_L_O_A_N_I_D_E_N_T_I_F_I_E_R_S = "LOAN_IDENTIFIERS"; @SerializedName(SERIALIZED_NAME_L_O_A_N_I_D_E_N_T_I_F_I_E_R_S) private CreditFreddieMacLoanIdentifiers LOAN_IDENTIFIERS; public static final String SERIALIZED_NAME_LOAN_ROLE_TYPE = "LoanRoleType"; @SerializedName(SERIALIZED_NAME_LOAN_ROLE_TYPE) private String loanRoleType; public CreditFreddieMacLoan LOAN_IDENTIFIERS(CreditFreddieMacLoanIdentifiers LOAN_IDENTIFIERS) { this.LOAN_IDENTIFIERS = LOAN_IDENTIFIERS; return this; } /** * Get LOAN_IDENTIFIERS * @return LOAN_IDENTIFIERS **/ @ApiModelProperty(required = true, value = "") public CreditFreddieMacLoanIdentifiers getLOANIDENTIFIERS() { return LOAN_IDENTIFIERS; } public void setLOANIDENTIFIERS(CreditFreddieMacLoanIdentifiers LOAN_IDENTIFIERS) { this.LOAN_IDENTIFIERS = LOAN_IDENTIFIERS; } public CreditFreddieMacLoan loanRoleType(String loanRoleType) { this.loanRoleType = loanRoleType; return this; } /** * Type of loan. The value can only be \&quot;SubjectLoan\&quot; * @return loanRoleType **/ @ApiModelProperty(required = true, value = "Type of loan. The value can only be \"SubjectLoan\"") public String getLoanRoleType() { return loanRoleType; } public void setLoanRoleType(String loanRoleType) { this.loanRoleType = loanRoleType; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditFreddieMacLoan creditFreddieMacLoan = (CreditFreddieMacLoan) o; return Objects.equals(this.LOAN_IDENTIFIERS, creditFreddieMacLoan.LOAN_IDENTIFIERS) && Objects.equals(this.loanRoleType, creditFreddieMacLoan.loanRoleType); } @Override public int hashCode() { return Objects.hash(LOAN_IDENTIFIERS, loanRoleType); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditFreddieMacLoan {\n"); sb.append(" LOAN_IDENTIFIERS: ").append(toIndentedString(LOAN_IDENTIFIERS)).append("\n"); sb.append(" loanRoleType: ").append(toIndentedString(loanRoleType)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/MonitoringInsights.java
src/main/java/com/plaid/client/model/MonitoringInsights.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.MonitoringIncomeInsights; import com.plaid.client.model.MonitoringLoanInsights; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object representing the Monitoring Insights for the given Item */ @ApiModel(description = "An object representing the Monitoring Insights for the given Item") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class MonitoringInsights { public static final String SERIALIZED_NAME_INCOME = "income"; @SerializedName(SERIALIZED_NAME_INCOME) private MonitoringIncomeInsights income; public static final String SERIALIZED_NAME_LOANS = "loans"; @SerializedName(SERIALIZED_NAME_LOANS) private MonitoringLoanInsights loans; public MonitoringInsights income(MonitoringIncomeInsights income) { this.income = income; return this; } /** * Get income * @return income **/ @ApiModelProperty(required = true, value = "") public MonitoringIncomeInsights getIncome() { return income; } public void setIncome(MonitoringIncomeInsights income) { this.income = income; } public MonitoringInsights loans(MonitoringLoanInsights loans) { this.loans = loans; return this; } /** * Get loans * @return loans **/ @ApiModelProperty(required = true, value = "") public MonitoringLoanInsights getLoans() { return loans; } public void setLoans(MonitoringLoanInsights loans) { this.loans = loans; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } MonitoringInsights monitoringInsights = (MonitoringInsights) o; return Objects.equals(this.income, monitoringInsights.income) && Objects.equals(this.loans, monitoringInsights.loans); } @Override public int hashCode() { return Objects.hash(income, loans); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class MonitoringInsights {\n"); sb.append(" income: ").append(toIndentedString(income)).append("\n"); sb.append(" loans: ").append(toIndentedString(loans)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferOriginatorListRequest.java
src/main/java/com/plaid/client/model/TransferOriginatorListRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the request schema for &#x60;/transfer/originator/list&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/originator/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferOriginatorListRequest { 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 = 25; public static final String SERIALIZED_NAME_OFFSET = "offset"; @SerializedName(SERIALIZED_NAME_OFFSET) private Integer offset = 0; public TransferOriginatorListRequest 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 TransferOriginatorListRequest 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 TransferOriginatorListRequest count(Integer count) { this.count = count; return this; } /** * The maximum number of originators to return. * minimum: 1 * maximum: 25 * @return count **/ @javax.annotation.Nullable @ApiModelProperty(value = "The maximum number of originators to return.") public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } public TransferOriginatorListRequest offset(Integer offset) { this.offset = offset; return this; } /** * The number of originators to skip before returning results. * minimum: 0 * @return offset **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of originators to skip before returning results.") public Integer getOffset() { return offset; } public void setOffset(Integer offset) { this.offset = offset; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferOriginatorListRequest transferOriginatorListRequest = (TransferOriginatorListRequest) o; return Objects.equals(this.clientId, transferOriginatorListRequest.clientId) && Objects.equals(this.secret, transferOriginatorListRequest.secret) && Objects.equals(this.count, transferOriginatorListRequest.count) && Objects.equals(this.offset, transferOriginatorListRequest.offset); } @Override public int hashCode() { return Objects.hash(clientId, secret, count, offset); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferOriginatorListRequest {\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(" offset: ").append(toIndentedString(offset)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LoanDisbursementsIndicators.java
src/main/java/com/plaid/client/model/LoanDisbursementsIndicators.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CategoryExpenses; import com.plaid.client.model.MonthlyAverage; import com.plaid.client.model.MonthlySummary; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Insights into loan disbursement transactions received by the user, tracking incoming funds from loan providers. */ @ApiModel(description = "Insights into loan disbursement transactions received by the user, tracking incoming funds from loan providers.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LoanDisbursementsIndicators { 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_CATEGORY_DETAILS = "category_details"; @SerializedName(SERIALIZED_NAME_CATEGORY_DETAILS) private List<CategoryExpenses> categoryDetails = null; public static final String SERIALIZED_NAME_MONTHLY_AVERAGE = "monthly_average"; @SerializedName(SERIALIZED_NAME_MONTHLY_AVERAGE) private MonthlyAverage monthlyAverage; public static final String SERIALIZED_NAME_TOP_PROVIDERS = "top_providers"; @SerializedName(SERIALIZED_NAME_TOP_PROVIDERS) private List<String> topProviders = null; public static final String SERIALIZED_NAME_TRANSACTIONS_COUNT = "transactions_count"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS_COUNT) private Integer transactionsCount; public static final String SERIALIZED_NAME_MONTHLY_SUMMARIES = "monthly_summaries"; @SerializedName(SERIALIZED_NAME_MONTHLY_SUMMARIES) private List<MonthlySummary> monthlySummaries = null; public static final String SERIALIZED_NAME_DAYS_SINCE_LAST_OCCURRENCE = "days_since_last_occurrence"; @SerializedName(SERIALIZED_NAME_DAYS_SINCE_LAST_OCCURRENCE) private Integer daysSinceLastOccurrence; public static final String SERIALIZED_NAME_PERCENTAGE_OF_INCOME = "percentage_of_income"; @SerializedName(SERIALIZED_NAME_PERCENTAGE_OF_INCOME) private Double percentageOfIncome; public LoanDisbursementsIndicators amount(Double amount) { this.amount = amount; return this; } /** * The total value of inflow transactions categorized as &#x60;LOAN_DISBURSEMENTS&#x60;, across all the accounts in the report within the requested time window. * @return amount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The total value of inflow transactions categorized as `LOAN_DISBURSEMENTS`, across all the accounts in the report within the requested time window.") public Double getAmount() { return amount; } public void setAmount(Double amount) { this.amount = amount; } public LoanDisbursementsIndicators isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO-4217 currency code of the amount. Always &#x60;null&#x60; if &#x60;unofficial_currency_code&#x60; is non-&#x60;null&#x60;. * @return isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ISO-4217 currency code of the amount. Always `null` if `unofficial_currency_code` is non-`null`.") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public LoanDisbursementsIndicators unofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; return this; } /** * The unofficial currency code associated with the amount. Always &#x60;null&#x60; if &#x60;iso_currency_code&#x60; is non-&#x60;null&#x60;. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported &#x60;unofficial_currency_code&#x60;s. * @return unofficialCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The unofficial currency code associated with the amount. Always `null` if `iso_currency_code` is non-`null`. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported `unofficial_currency_code`s.") public String getUnofficialCurrencyCode() { return unofficialCurrencyCode; } public void setUnofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; } public LoanDisbursementsIndicators categoryDetails(List<CategoryExpenses> categoryDetails) { this.categoryDetails = categoryDetails; return this; } public LoanDisbursementsIndicators addCategoryDetailsItem(CategoryExpenses categoryDetailsItem) { if (this.categoryDetails == null) { this.categoryDetails = new ArrayList<>(); } this.categoryDetails.add(categoryDetailsItem); return this; } /** * Detailed categories view of all the transactions that fall into the &#x60;LOAN_DISBURSEMENTS&#x60; credit category within the given time window, across all the accounts in the report. * @return categoryDetails **/ @javax.annotation.Nullable @ApiModelProperty(value = "Detailed categories view of all the transactions that fall into the `LOAN_DISBURSEMENTS` credit category within the given time window, across all the accounts in the report.") public List<CategoryExpenses> getCategoryDetails() { return categoryDetails; } public void setCategoryDetails(List<CategoryExpenses> categoryDetails) { this.categoryDetails = categoryDetails; } public LoanDisbursementsIndicators monthlyAverage(MonthlyAverage monthlyAverage) { this.monthlyAverage = monthlyAverage; return this; } /** * Get monthlyAverage * @return monthlyAverage **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public MonthlyAverage getMonthlyAverage() { return monthlyAverage; } public void setMonthlyAverage(MonthlyAverage monthlyAverage) { this.monthlyAverage = monthlyAverage; } public LoanDisbursementsIndicators topProviders(List<String> topProviders) { this.topProviders = topProviders; return this; } public LoanDisbursementsIndicators addTopProvidersItem(String topProvidersItem) { if (this.topProviders == null) { this.topProviders = new ArrayList<>(); } this.topProviders.add(topProvidersItem); return this; } /** * Up to 3 top service providers that the user had the most transactions for in the given time window, in descending order of total spend. If the user has received money from any provider in the given time window, this list will be empty. * @return topProviders **/ @javax.annotation.Nullable @ApiModelProperty(value = "Up to 3 top service providers that the user had the most transactions for in the given time window, in descending order of total spend. If the user has received money from any provider in the given time window, this list will be empty.") public List<String> getTopProviders() { return topProviders; } public void setTopProviders(List<String> topProviders) { this.topProviders = topProviders; } public LoanDisbursementsIndicators transactionsCount(Integer transactionsCount) { this.transactionsCount = transactionsCount; return this; } /** * The total number of transactions that fall into the &#x60;LOAN_DISBURSEMENTS&#x60; credit category, across all the accounts in the report. * @return transactionsCount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The total number of transactions that fall into the `LOAN_DISBURSEMENTS` credit category, across all the accounts in the report.") public Integer getTransactionsCount() { return transactionsCount; } public void setTransactionsCount(Integer transactionsCount) { this.transactionsCount = transactionsCount; } public LoanDisbursementsIndicators monthlySummaries(List<MonthlySummary> monthlySummaries) { this.monthlySummaries = monthlySummaries; return this; } public LoanDisbursementsIndicators addMonthlySummariesItem(MonthlySummary monthlySummariesItem) { if (this.monthlySummaries == null) { this.monthlySummaries = new ArrayList<>(); } this.monthlySummaries.add(monthlySummariesItem); return this; } /** * The monthly summaries of the transactions that fall into the &#x60;LOAN_DISBURSEMENTS&#x60; category within the given time window, across all the accounts in the report. * @return monthlySummaries **/ @javax.annotation.Nullable @ApiModelProperty(value = "The monthly summaries of the transactions that fall into the `LOAN_DISBURSEMENTS` category within the given time window, across all the accounts in the report.") public List<MonthlySummary> getMonthlySummaries() { return monthlySummaries; } public void setMonthlySummaries(List<MonthlySummary> monthlySummaries) { this.monthlySummaries = monthlySummaries; } public LoanDisbursementsIndicators daysSinceLastOccurrence(Integer daysSinceLastOccurrence) { this.daysSinceLastOccurrence = daysSinceLastOccurrence; return this; } /** * The number of days since the last transaction that falls into the &#x60;LOAN_DISBURSEMENTS&#x60; credit category, across all the accounts in the report. * @return daysSinceLastOccurrence **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of days since the last transaction that falls into the `LOAN_DISBURSEMENTS` credit category, across all the accounts in the report.") public Integer getDaysSinceLastOccurrence() { return daysSinceLastOccurrence; } public void setDaysSinceLastOccurrence(Integer daysSinceLastOccurrence) { this.daysSinceLastOccurrence = daysSinceLastOccurrence; } public LoanDisbursementsIndicators percentageOfIncome(Double percentageOfIncome) { this.percentageOfIncome = percentageOfIncome; return this; } /** * The percentage of the user&#39;s monthly inflows that was received on transactions that fall into the &#x60;LOAN_DISBURSEMENTS&#x60; credit category within the given time window, across all the accounts in the report. For example, a value of 100 indicates that 100% of the inflows were spent on transactions that fall into the &#x60;LOAN_DISBURSEMENTS&#x60; credit category. If there&#39;s no available income for the given time period, this field value will be &#x60;-1&#x60;. * @return percentageOfIncome **/ @javax.annotation.Nullable @ApiModelProperty(value = "The percentage of the user's monthly inflows that was received on transactions that fall into the `LOAN_DISBURSEMENTS` credit category within the given time window, across all the accounts in the report. For example, a value of 100 indicates that 100% of the inflows were spent on transactions that fall into the `LOAN_DISBURSEMENTS` credit category. If there's no available income for the given time period, this field value will be `-1`.") public Double getPercentageOfIncome() { return percentageOfIncome; } public void setPercentageOfIncome(Double percentageOfIncome) { this.percentageOfIncome = percentageOfIncome; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LoanDisbursementsIndicators loanDisbursementsIndicators = (LoanDisbursementsIndicators) o; return Objects.equals(this.amount, loanDisbursementsIndicators.amount) && Objects.equals(this.isoCurrencyCode, loanDisbursementsIndicators.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, loanDisbursementsIndicators.unofficialCurrencyCode) && Objects.equals(this.categoryDetails, loanDisbursementsIndicators.categoryDetails) && Objects.equals(this.monthlyAverage, loanDisbursementsIndicators.monthlyAverage) && Objects.equals(this.topProviders, loanDisbursementsIndicators.topProviders) && Objects.equals(this.transactionsCount, loanDisbursementsIndicators.transactionsCount) && Objects.equals(this.monthlySummaries, loanDisbursementsIndicators.monthlySummaries) && Objects.equals(this.daysSinceLastOccurrence, loanDisbursementsIndicators.daysSinceLastOccurrence) && Objects.equals(this.percentageOfIncome, loanDisbursementsIndicators.percentageOfIncome); } @Override public int hashCode() { return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode, categoryDetails, monthlyAverage, topProviders, transactionsCount, monthlySummaries, daysSinceLastOccurrence, percentageOfIncome); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LoanDisbursementsIndicators {\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(" categoryDetails: ").append(toIndentedString(categoryDetails)).append("\n"); sb.append(" monthlyAverage: ").append(toIndentedString(monthlyAverage)).append("\n"); sb.append(" topProviders: ").append(toIndentedString(topProviders)).append("\n"); sb.append(" transactionsCount: ").append(toIndentedString(transactionsCount)).append("\n"); sb.append(" monthlySummaries: ").append(toIndentedString(monthlySummaries)).append("\n"); sb.append(" daysSinceLastOccurrence: ").append(toIndentedString(daysSinceLastOccurrence)).append("\n"); sb.append(" percentageOfIncome: ").append(toIndentedString(percentageOfIncome)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WebhookUpdateAcknowledgedWebhook.java
src/main/java/com/plaid/client/model/WebhookUpdateAcknowledgedWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.PlaidError; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Fired when an Item&#39;s webhook is updated. This will be sent to the newly specified webhook. */ @ApiModel(description = "Fired when an Item's webhook is updated. This will be sent to the newly specified webhook.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WebhookUpdateAcknowledgedWebhook { 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_NEW_WEBHOOK_URL = "new_webhook_url"; @SerializedName(SERIALIZED_NAME_NEW_WEBHOOK_URL) private String newWebhookUrl; public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private PlaidError error; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public WebhookUpdateAcknowledgedWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;ITEM&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`ITEM`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public WebhookUpdateAcknowledgedWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;WEBHOOK_UPDATE_ACKNOWLEDGED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`WEBHOOK_UPDATE_ACKNOWLEDGED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public WebhookUpdateAcknowledgedWebhook 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 WebhookUpdateAcknowledgedWebhook newWebhookUrl(String newWebhookUrl) { this.newWebhookUrl = newWebhookUrl; return this; } /** * The new webhook URL * @return newWebhookUrl **/ @ApiModelProperty(required = true, value = "The new webhook URL") public String getNewWebhookUrl() { return newWebhookUrl; } public void setNewWebhookUrl(String newWebhookUrl) { this.newWebhookUrl = newWebhookUrl; } public WebhookUpdateAcknowledgedWebhook error(PlaidError error) { this.error = error; return this; } /** * Get error * @return error **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PlaidError getError() { return error; } public void setError(PlaidError error) { this.error = error; } public WebhookUpdateAcknowledgedWebhook 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; } WebhookUpdateAcknowledgedWebhook webhookUpdateAcknowledgedWebhook = (WebhookUpdateAcknowledgedWebhook) o; return Objects.equals(this.webhookType, webhookUpdateAcknowledgedWebhook.webhookType) && Objects.equals(this.webhookCode, webhookUpdateAcknowledgedWebhook.webhookCode) && Objects.equals(this.itemId, webhookUpdateAcknowledgedWebhook.itemId) && Objects.equals(this.newWebhookUrl, webhookUpdateAcknowledgedWebhook.newWebhookUrl) && Objects.equals(this.error, webhookUpdateAcknowledgedWebhook.error) && Objects.equals(this.environment, webhookUpdateAcknowledgedWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, itemId, newWebhookUrl, error, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WebhookUpdateAcknowledgedWebhook {\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(" newWebhookUrl: ").append(toIndentedString(newWebhookUrl)).append("\n"); sb.append(" error: ").append(toIndentedString(error)).append("\n"); sb.append(" environment: ").append(toIndentedString(environment)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProductPermissionsRequiredAuthWebhook.java
src/main/java/com/plaid/client/model/ProductPermissionsRequiredAuthWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 an &#x60;ACCESS_NOT_GRANTED&#x60; error is hit for Auth. The error can be resolved by putting the user through update mode with &#x60;auth&#x60; in the &#x60;products&#x60; array, as well as through the limited beta for update mode Authentication product validations. */ @ApiModel(description = "Fired when an `ACCESS_NOT_GRANTED` error is hit for Auth. The error can be resolved by putting the user through update mode with `auth` in the `products` array, as well as through the limited beta for update mode Authentication product validations.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProductPermissionsRequiredAuthWebhook { 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_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public ProductPermissionsRequiredAuthWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;AUTH&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`AUTH`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public ProductPermissionsRequiredAuthWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;PRODUCT_PERMISSIONS_REQUIRED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`PRODUCT_PERMISSIONS_REQUIRED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public ProductPermissionsRequiredAuthWebhook 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 ProductPermissionsRequiredAuthWebhook 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; } ProductPermissionsRequiredAuthWebhook productPermissionsRequiredAuthWebhook = (ProductPermissionsRequiredAuthWebhook) o; return Objects.equals(this.webhookType, productPermissionsRequiredAuthWebhook.webhookType) && Objects.equals(this.webhookCode, productPermissionsRequiredAuthWebhook.webhookCode) && Objects.equals(this.itemId, productPermissionsRequiredAuthWebhook.itemId) && Objects.equals(this.environment, productPermissionsRequiredAuthWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, itemId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProductPermissionsRequiredAuthWebhook {\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(" 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/CreditBankEmployment.java
src/main/java/com/plaid/client/model/CreditBankEmployment.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CreditBankEmployer; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * Detailed information for the bank employment. */ @ApiModel(description = "Detailed information for the bank employment.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditBankEmployment { public static final String SERIALIZED_NAME_BANK_EMPLOYMENT_ID = "bank_employment_id"; @SerializedName(SERIALIZED_NAME_BANK_EMPLOYMENT_ID) private String bankEmploymentId; public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_EMPLOYER = "employer"; @SerializedName(SERIALIZED_NAME_EMPLOYER) private CreditBankEmployer employer; public static final String SERIALIZED_NAME_LATEST_DEPOSIT_DATE = "latest_deposit_date"; @SerializedName(SERIALIZED_NAME_LATEST_DEPOSIT_DATE) private LocalDate latestDepositDate; public static final String SERIALIZED_NAME_EARLIEST_DEPOSIT_DATE = "earliest_deposit_date"; @SerializedName(SERIALIZED_NAME_EARLIEST_DEPOSIT_DATE) private LocalDate earliestDepositDate; public CreditBankEmployment bankEmploymentId(String bankEmploymentId) { this.bankEmploymentId = bankEmploymentId; return this; } /** * A unique identifier for the bank employment. * @return bankEmploymentId **/ @ApiModelProperty(required = true, value = "A unique identifier for the bank employment.") public String getBankEmploymentId() { return bankEmploymentId; } public void setBankEmploymentId(String bankEmploymentId) { this.bankEmploymentId = bankEmploymentId; } public CreditBankEmployment accountId(String accountId) { this.accountId = accountId; return this; } /** * Plaid&#39;s unique identifier for the account. * @return accountId **/ @ApiModelProperty(required = true, value = "Plaid's unique identifier for the account.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public CreditBankEmployment employer(CreditBankEmployer employer) { this.employer = employer; return this; } /** * Get employer * @return employer **/ @ApiModelProperty(required = true, value = "") public CreditBankEmployer getEmployer() { return employer; } public void setEmployer(CreditBankEmployer employer) { this.employer = employer; } public CreditBankEmployment latestDepositDate(LocalDate latestDepositDate) { this.latestDepositDate = latestDepositDate; return this; } /** * The date of the most recent deposit from this employer. * @return latestDepositDate **/ @ApiModelProperty(required = true, value = "The date of the most recent deposit from this employer.") public LocalDate getLatestDepositDate() { return latestDepositDate; } public void setLatestDepositDate(LocalDate latestDepositDate) { this.latestDepositDate = latestDepositDate; } public CreditBankEmployment earliestDepositDate(LocalDate earliestDepositDate) { this.earliestDepositDate = earliestDepositDate; return this; } /** * The date of the earliest deposit from this employer from within the period of the days requested. * @return earliestDepositDate **/ @ApiModelProperty(required = true, value = "The date of the earliest deposit from this employer from within the period of the days requested.") public LocalDate getEarliestDepositDate() { return earliestDepositDate; } public void setEarliestDepositDate(LocalDate earliestDepositDate) { this.earliestDepositDate = earliestDepositDate; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditBankEmployment creditBankEmployment = (CreditBankEmployment) o; return Objects.equals(this.bankEmploymentId, creditBankEmployment.bankEmploymentId) && Objects.equals(this.accountId, creditBankEmployment.accountId) && Objects.equals(this.employer, creditBankEmployment.employer) && Objects.equals(this.latestDepositDate, creditBankEmployment.latestDepositDate) && Objects.equals(this.earliestDepositDate, creditBankEmployment.earliestDepositDate); } @Override public int hashCode() { return Objects.hash(bankEmploymentId, accountId, employer, latestDepositDate, earliestDepositDate); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditBankEmployment {\n"); sb.append(" bankEmploymentId: ").append(toIndentedString(bankEmploymentId)).append("\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" employer: ").append(toIndentedString(employer)).append("\n"); sb.append(" latestDepositDate: ").append(toIndentedString(latestDepositDate)).append("\n"); sb.append(" earliestDepositDate: ").append(toIndentedString(earliestDepositDate)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProductAccess.java
src/main/java/com/plaid/client/model/ProductAccess.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The product access being requested. Used to or disallow product access across all accounts. If unset, defaults to all products allowed. */ @ApiModel(description = "The product access being requested. Used to or disallow product access across all accounts. If unset, defaults to all products allowed.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProductAccess { public static final String SERIALIZED_NAME_STATEMENTS = "statements"; @SerializedName(SERIALIZED_NAME_STATEMENTS) private Boolean statements = true; public static final String SERIALIZED_NAME_IDENTITY = "identity"; @SerializedName(SERIALIZED_NAME_IDENTITY) private Boolean identity = true; public static final String SERIALIZED_NAME_AUTH = "auth"; @SerializedName(SERIALIZED_NAME_AUTH) private Boolean auth = true; public static final String SERIALIZED_NAME_TRANSACTIONS = "transactions"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS) private Boolean transactions = true; public static final String SERIALIZED_NAME_ACCOUNTS_DETAILS_TRANSACTIONS = "accounts_details_transactions"; @SerializedName(SERIALIZED_NAME_ACCOUNTS_DETAILS_TRANSACTIONS) private Boolean accountsDetailsTransactions = true; public static final String SERIALIZED_NAME_ACCOUNTS_ROUTING_NUMBER = "accounts_routing_number"; @SerializedName(SERIALIZED_NAME_ACCOUNTS_ROUTING_NUMBER) private Boolean accountsRoutingNumber = true; public static final String SERIALIZED_NAME_ACCOUNTS_STATEMENTS = "accounts_statements"; @SerializedName(SERIALIZED_NAME_ACCOUNTS_STATEMENTS) private Boolean accountsStatements = true; public static final String SERIALIZED_NAME_ACCOUNTS_TAX_STATEMENTS = "accounts_tax_statements"; @SerializedName(SERIALIZED_NAME_ACCOUNTS_TAX_STATEMENTS) private Boolean accountsTaxStatements = true; public static final String SERIALIZED_NAME_CUSTOMERS_PROFILES = "customers_profiles"; @SerializedName(SERIALIZED_NAME_CUSTOMERS_PROFILES) private Boolean customersProfiles = true; public ProductAccess statements(Boolean statements) { this.statements = statements; return this; } /** * Allow access to statements. Only used by certain partners. If relevant to the partner and unset, defaults to &#x60;true&#x60;. * @return statements **/ @javax.annotation.Nullable @ApiModelProperty(value = "Allow access to statements. Only used by certain partners. If relevant to the partner and unset, defaults to `true`.") public Boolean getStatements() { return statements; } public void setStatements(Boolean statements) { this.statements = statements; } public ProductAccess identity(Boolean identity) { this.identity = identity; return this; } /** * Allow access to the Identity product (name, email, phone, address). Only used by certain partners. If relevant to the partner and unset, defaults to &#x60;true&#x60;. * @return identity **/ @javax.annotation.Nullable @ApiModelProperty(value = "Allow access to the Identity product (name, email, phone, address). Only used by certain partners. If relevant to the partner and unset, defaults to `true`.") public Boolean getIdentity() { return identity; } public void setIdentity(Boolean identity) { this.identity = identity; } public ProductAccess auth(Boolean auth) { this.auth = auth; return this; } /** * Allow access to account number details. Only used by certain partners. If relevant to the partner and unset, defaults to &#x60;true&#x60;. * @return auth **/ @javax.annotation.Nullable @ApiModelProperty(value = "Allow access to account number details. Only used by certain partners. If relevant to the partner and unset, defaults to `true`.") public Boolean getAuth() { return auth; } public void setAuth(Boolean auth) { this.auth = auth; } public ProductAccess transactions(Boolean transactions) { this.transactions = transactions; return this; } /** * Allow access to transaction details. Only used by certain partners. If relevant to the partner and unset, defaults to &#x60;true&#x60;. * @return transactions **/ @javax.annotation.Nullable @ApiModelProperty(value = "Allow access to transaction details. Only used by certain partners. If relevant to the partner and unset, defaults to `true`.") public Boolean getTransactions() { return transactions; } public void setTransactions(Boolean transactions) { this.transactions = transactions; } public ProductAccess accountsDetailsTransactions(Boolean accountsDetailsTransactions) { this.accountsDetailsTransactions = accountsDetailsTransactions; return this; } /** * Allow access to &#x60;accounts_details_transactions&#x60;. Only used by certain partners. If relevant to the partner and unset, defaults to &#x60;true&#x60;. * @return accountsDetailsTransactions **/ @javax.annotation.Nullable @ApiModelProperty(value = "Allow access to `accounts_details_transactions`. Only used by certain partners. If relevant to the partner and unset, defaults to `true`.") public Boolean getAccountsDetailsTransactions() { return accountsDetailsTransactions; } public void setAccountsDetailsTransactions(Boolean accountsDetailsTransactions) { this.accountsDetailsTransactions = accountsDetailsTransactions; } public ProductAccess accountsRoutingNumber(Boolean accountsRoutingNumber) { this.accountsRoutingNumber = accountsRoutingNumber; return this; } /** * Allow access to &#x60;accounts_routing_number&#x60;. Only used by certain partners. If relevant to the partner and unset, defaults to &#x60;true&#x60;. * @return accountsRoutingNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "Allow access to `accounts_routing_number`. Only used by certain partners. If relevant to the partner and unset, defaults to `true`.") public Boolean getAccountsRoutingNumber() { return accountsRoutingNumber; } public void setAccountsRoutingNumber(Boolean accountsRoutingNumber) { this.accountsRoutingNumber = accountsRoutingNumber; } public ProductAccess accountsStatements(Boolean accountsStatements) { this.accountsStatements = accountsStatements; return this; } /** * Allow access to &#x60;accounts_statements&#x60;. Only used by certain partners. If relevant to the partner and unset, defaults to &#x60;true&#x60;. * @return accountsStatements **/ @javax.annotation.Nullable @ApiModelProperty(value = "Allow access to `accounts_statements`. Only used by certain partners. If relevant to the partner and unset, defaults to `true`.") public Boolean getAccountsStatements() { return accountsStatements; } public void setAccountsStatements(Boolean accountsStatements) { this.accountsStatements = accountsStatements; } public ProductAccess accountsTaxStatements(Boolean accountsTaxStatements) { this.accountsTaxStatements = accountsTaxStatements; return this; } /** * Allow access to &#x60;accounts_tax_statements&#x60;. Only used by certain partners. If relevant to the partner and unset, defaults to &#x60;true&#x60;. * @return accountsTaxStatements **/ @javax.annotation.Nullable @ApiModelProperty(value = "Allow access to `accounts_tax_statements`. Only used by certain partners. If relevant to the partner and unset, defaults to `true`.") public Boolean getAccountsTaxStatements() { return accountsTaxStatements; } public void setAccountsTaxStatements(Boolean accountsTaxStatements) { this.accountsTaxStatements = accountsTaxStatements; } public ProductAccess customersProfiles(Boolean customersProfiles) { this.customersProfiles = customersProfiles; return this; } /** * Allow access to &#x60;customers_profiles&#x60;. Only used by certain partners. If relevant to the partner and unset, defaults to &#x60;true&#x60;. * @return customersProfiles **/ @javax.annotation.Nullable @ApiModelProperty(value = "Allow access to `customers_profiles`. Only used by certain partners. If relevant to the partner and unset, defaults to `true`.") public Boolean getCustomersProfiles() { return customersProfiles; } public void setCustomersProfiles(Boolean customersProfiles) { this.customersProfiles = customersProfiles; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProductAccess productAccess = (ProductAccess) o; return Objects.equals(this.statements, productAccess.statements) && Objects.equals(this.identity, productAccess.identity) && Objects.equals(this.auth, productAccess.auth) && Objects.equals(this.transactions, productAccess.transactions) && Objects.equals(this.accountsDetailsTransactions, productAccess.accountsDetailsTransactions) && Objects.equals(this.accountsRoutingNumber, productAccess.accountsRoutingNumber) && Objects.equals(this.accountsStatements, productAccess.accountsStatements) && Objects.equals(this.accountsTaxStatements, productAccess.accountsTaxStatements) && Objects.equals(this.customersProfiles, productAccess.customersProfiles); } @Override public int hashCode() { return Objects.hash(statements, identity, auth, transactions, accountsDetailsTransactions, accountsRoutingNumber, accountsStatements, accountsTaxStatements, customersProfiles); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProductAccess {\n"); sb.append(" statements: ").append(toIndentedString(statements)).append("\n"); sb.append(" identity: ").append(toIndentedString(identity)).append("\n"); sb.append(" auth: ").append(toIndentedString(auth)).append("\n"); sb.append(" transactions: ").append(toIndentedString(transactions)).append("\n"); sb.append(" accountsDetailsTransactions: ").append(toIndentedString(accountsDetailsTransactions)).append("\n"); sb.append(" accountsRoutingNumber: ").append(toIndentedString(accountsRoutingNumber)).append("\n"); sb.append(" accountsStatements: ").append(toIndentedString(accountsStatements)).append("\n"); sb.append(" accountsTaxStatements: ").append(toIndentedString(accountsTaxStatements)).append("\n"); sb.append(" customersProfiles: ").append(toIndentedString(customersProfiles)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferPlatformPersonCreateRequest.java
src/main/java/com/plaid/client/model/TransferPlatformPersonCreateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.TransferPlatformPersonAddress; import com.plaid.client.model.TransferPlatformPersonIDNumber; import com.plaid.client.model.TransferPlatformPersonName; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * Defines the request schema for &#x60;/transfer/platform/person/create&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/platform/person/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferPlatformPersonCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_ORIGINATOR_CLIENT_ID = "originator_client_id"; @SerializedName(SERIALIZED_NAME_ORIGINATOR_CLIENT_ID) private String originatorClientId; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private TransferPlatformPersonName name; 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_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private TransferPlatformPersonAddress address; public static final String SERIALIZED_NAME_ID_NUMBER = "id_number"; @SerializedName(SERIALIZED_NAME_ID_NUMBER) private TransferPlatformPersonIDNumber idNumber; 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_RELATIONSHIP_TO_ORIGINATOR = "relationship_to_originator"; @SerializedName(SERIALIZED_NAME_RELATIONSHIP_TO_ORIGINATOR) private String relationshipToOriginator; public static final String SERIALIZED_NAME_OWNERSHIP_PERCENTAGE = "ownership_percentage"; @SerializedName(SERIALIZED_NAME_OWNERSHIP_PERCENTAGE) private Integer ownershipPercentage; public static final String SERIALIZED_NAME_TITLE = "title"; @SerializedName(SERIALIZED_NAME_TITLE) private String title; public TransferPlatformPersonCreateRequest 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 TransferPlatformPersonCreateRequest 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 TransferPlatformPersonCreateRequest originatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; return this; } /** * The client ID of the originator * @return originatorClientId **/ @ApiModelProperty(required = true, value = "The client ID of the originator") public String getOriginatorClientId() { return originatorClientId; } public void setOriginatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; } public TransferPlatformPersonCreateRequest name(TransferPlatformPersonName name) { this.name = name; return this; } /** * Get name * @return name **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransferPlatformPersonName getName() { return name; } public void setName(TransferPlatformPersonName name) { this.name = name; } public TransferPlatformPersonCreateRequest emailAddress(String emailAddress) { this.emailAddress = emailAddress; return this; } /** * A valid email address. Must not have leading or trailing spaces. * @return emailAddress **/ @javax.annotation.Nullable @ApiModelProperty(example = "user@example.com", value = "A valid email address. Must not have leading or trailing spaces.") public String getEmailAddress() { return emailAddress; } public void setEmailAddress(String emailAddress) { this.emailAddress = emailAddress; } public TransferPlatformPersonCreateRequest phoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; return this; } /** * A valid phone number in E.164 format. Phone number input may be 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(example = "+12345678909", value = "A valid phone number in E.164 format. Phone number input may be 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 TransferPlatformPersonCreateRequest address(TransferPlatformPersonAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransferPlatformPersonAddress getAddress() { return address; } public void setAddress(TransferPlatformPersonAddress address) { this.address = address; } public TransferPlatformPersonCreateRequest idNumber(TransferPlatformPersonIDNumber idNumber) { this.idNumber = idNumber; return this; } /** * Get idNumber * @return idNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransferPlatformPersonIDNumber getIdNumber() { return idNumber; } public void setIdNumber(TransferPlatformPersonIDNumber idNumber) { this.idNumber = idNumber; } public TransferPlatformPersonCreateRequest dateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; return this; } /** * The date of birth of the person. Formatted as YYYY-MM-DD. * @return dateOfBirth **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date of birth of the person. Formatted as YYYY-MM-DD.") public LocalDate getDateOfBirth() { return dateOfBirth; } public void setDateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; } public TransferPlatformPersonCreateRequest relationshipToOriginator(String relationshipToOriginator) { this.relationshipToOriginator = relationshipToOriginator; return this; } /** * The relationship between this person and the originator they are related to. * @return relationshipToOriginator **/ @javax.annotation.Nullable @ApiModelProperty(value = "The relationship between this person and the originator they are related to.") public String getRelationshipToOriginator() { return relationshipToOriginator; } public void setRelationshipToOriginator(String relationshipToOriginator) { this.relationshipToOriginator = relationshipToOriginator; } public TransferPlatformPersonCreateRequest ownershipPercentage(Integer ownershipPercentage) { this.ownershipPercentage = ownershipPercentage; return this; } /** * The percentage of ownership this person has in the onboarding business. Only applicable to beneficial owners with 25% or more ownership. * minimum: 25 * maximum: 100 * @return ownershipPercentage **/ @javax.annotation.Nullable @ApiModelProperty(value = "The percentage of ownership this person has in the onboarding business. Only applicable to beneficial owners with 25% or more ownership.") public Integer getOwnershipPercentage() { return ownershipPercentage; } public void setOwnershipPercentage(Integer ownershipPercentage) { this.ownershipPercentage = ownershipPercentage; } public TransferPlatformPersonCreateRequest title(String title) { this.title = title; return this; } /** * The title of the person at the business. Only applicable to control persons - for example, \&quot;CEO\&quot;, \&quot;President\&quot;, \&quot;Owner\&quot;, etc. * @return title **/ @javax.annotation.Nullable @ApiModelProperty(value = "The title of the person at the business. Only applicable to control persons - for example, \"CEO\", \"President\", \"Owner\", etc.") public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferPlatformPersonCreateRequest transferPlatformPersonCreateRequest = (TransferPlatformPersonCreateRequest) o; return Objects.equals(this.clientId, transferPlatformPersonCreateRequest.clientId) && Objects.equals(this.secret, transferPlatformPersonCreateRequest.secret) && Objects.equals(this.originatorClientId, transferPlatformPersonCreateRequest.originatorClientId) && Objects.equals(this.name, transferPlatformPersonCreateRequest.name) && Objects.equals(this.emailAddress, transferPlatformPersonCreateRequest.emailAddress) && Objects.equals(this.phoneNumber, transferPlatformPersonCreateRequest.phoneNumber) && Objects.equals(this.address, transferPlatformPersonCreateRequest.address) && Objects.equals(this.idNumber, transferPlatformPersonCreateRequest.idNumber) && Objects.equals(this.dateOfBirth, transferPlatformPersonCreateRequest.dateOfBirth) && Objects.equals(this.relationshipToOriginator, transferPlatformPersonCreateRequest.relationshipToOriginator) && Objects.equals(this.ownershipPercentage, transferPlatformPersonCreateRequest.ownershipPercentage) && Objects.equals(this.title, transferPlatformPersonCreateRequest.title); } @Override public int hashCode() { return Objects.hash(clientId, secret, originatorClientId, name, emailAddress, phoneNumber, address, idNumber, dateOfBirth, relationshipToOriginator, ownershipPercentage, title); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferPlatformPersonCreateRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" originatorClientId: ").append(toIndentedString(originatorClientId)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n"); sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" idNumber: ").append(toIndentedString(idNumber)).append("\n"); sb.append(" dateOfBirth: ").append(toIndentedString(dateOfBirth)).append("\n"); sb.append(" relationshipToOriginator: ").append(toIndentedString(relationshipToOriginator)).append("\n"); sb.append(" ownershipPercentage: ").append(toIndentedString(ownershipPercentage)).append("\n"); sb.append(" title: ").append(toIndentedString(title)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CustomerInitiatedReturnRisk.java
src/main/java/com/plaid/client/model/CustomerInitiatedReturnRisk.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The object contains a risk score and a risk tier that evaluate the transaction return risk of an unauthorized debit. Common return codes in this category include: \&quot;R05\&quot;, \&quot;R07\&quot;, \&quot;R10\&quot;, \&quot;R11\&quot;, \&quot;R29\&quot;. These returns typically have a return time frame of up to 60 calendar days. During this period, the customer of financial institutions can dispute a transaction as unauthorized. */ @ApiModel(description = "The object contains a risk score and a risk tier that evaluate the transaction return risk of an unauthorized debit. Common return codes in this category include: \"R05\", \"R07\", \"R10\", \"R11\", \"R29\". These returns typically have a return time frame of up to 60 calendar days. During this period, the customer of financial institutions can dispute a transaction as unauthorized.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CustomerInitiatedReturnRisk { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) private Integer score; public static final String SERIALIZED_NAME_RISK_TIER = "risk_tier"; @SerializedName(SERIALIZED_NAME_RISK_TIER) private Integer riskTier; public CustomerInitiatedReturnRisk score(Integer score) { this.score = score; return this; } /** * A score from 1-99 that indicates the transaction return risk: a higher risk score suggests a higher return likelihood. * minimum: 1 * maximum: 99 * @return score **/ @ApiModelProperty(required = true, value = "A score from 1-99 that indicates the transaction return risk: a higher risk score suggests a higher return likelihood.") public Integer getScore() { return score; } public void setScore(Integer score) { this.score = score; } public CustomerInitiatedReturnRisk riskTier(Integer riskTier) { this.riskTier = riskTier; return this; } /** * DEPRECATED. Use Signal Rules instead to transform the &#x60;score&#x60; into a useful action. A tier corresponding to the projected likelihood that the transaction, if initiated, will be subject to a return. In the &#x60;customer_initiated_return_risk&#x60; object, there are five risk tiers corresponding to the scores: 1: Predicted customer-initiated return incidence rate between 0.00% - 0.02% 2: Predicted customer-initiated return incidence rate between 0.02% - 0.05% 3: Predicted customer-initiated return incidence rate between 0.05% - 0.1% 4: Predicted customer-initiated return incidence rate between 0.1% - 0.5% 5: Predicted customer-initiated return incidence rate greater than 0.5% * minimum: 1 * maximum: 5 * @return riskTier **/ @ApiModelProperty(required = true, value = "DEPRECATED. Use Signal Rules instead to transform the `score` into a useful action. A tier corresponding to the projected likelihood that the transaction, if initiated, will be subject to a return. In the `customer_initiated_return_risk` object, there are five risk tiers corresponding to the scores: 1: Predicted customer-initiated return incidence rate between 0.00% - 0.02% 2: Predicted customer-initiated return incidence rate between 0.02% - 0.05% 3: Predicted customer-initiated return incidence rate between 0.05% - 0.1% 4: Predicted customer-initiated return incidence rate between 0.1% - 0.5% 5: Predicted customer-initiated return incidence rate greater than 0.5% ") public Integer getRiskTier() { return riskTier; } public void setRiskTier(Integer riskTier) { this.riskTier = riskTier; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CustomerInitiatedReturnRisk customerInitiatedReturnRisk = (CustomerInitiatedReturnRisk) o; return Objects.equals(this.score, customerInitiatedReturnRisk.score) && Objects.equals(this.riskTier, customerInitiatedReturnRisk.riskTier); } @Override public int hashCode() { return Objects.hash(score, riskTier); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CustomerInitiatedReturnRisk {\n"); sb.append(" score: ").append(toIndentedString(score)).append("\n"); sb.append(" riskTier: ").append(toIndentedString(riskTier)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/RiskCheckBehavior.java
src/main/java/com/plaid/client/model/RiskCheckBehavior.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.RiskCheckBehaviorBotDetectedLabel; import com.plaid.client.model.RiskCheckBehaviorFraudRingDetectedLabel; import com.plaid.client.model.RiskCheckBehaviorUserInteractionsLabel; import com.plaid.client.model.RiskLevelWithNoData; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Result summary object specifying values for &#x60;behavior&#x60; attributes of risk check, when available. */ @ApiModel(description = "Result summary object specifying values for `behavior` attributes of risk check, when available.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class RiskCheckBehavior { public static final String SERIALIZED_NAME_USER_INTERACTIONS = "user_interactions"; @SerializedName(SERIALIZED_NAME_USER_INTERACTIONS) private RiskCheckBehaviorUserInteractionsLabel userInteractions; public static final String SERIALIZED_NAME_FRAUD_RING_DETECTED = "fraud_ring_detected"; @SerializedName(SERIALIZED_NAME_FRAUD_RING_DETECTED) private RiskCheckBehaviorFraudRingDetectedLabel fraudRingDetected; public static final String SERIALIZED_NAME_BOT_DETECTED = "bot_detected"; @SerializedName(SERIALIZED_NAME_BOT_DETECTED) private RiskCheckBehaviorBotDetectedLabel botDetected; public static final String SERIALIZED_NAME_RISK_LEVEL = "risk_level"; @SerializedName(SERIALIZED_NAME_RISK_LEVEL) private RiskLevelWithNoData riskLevel; public RiskCheckBehavior userInteractions(RiskCheckBehaviorUserInteractionsLabel userInteractions) { this.userInteractions = userInteractions; return this; } /** * Get userInteractions * @return userInteractions **/ @ApiModelProperty(required = true, value = "") public RiskCheckBehaviorUserInteractionsLabel getUserInteractions() { return userInteractions; } public void setUserInteractions(RiskCheckBehaviorUserInteractionsLabel userInteractions) { this.userInteractions = userInteractions; } public RiskCheckBehavior fraudRingDetected(RiskCheckBehaviorFraudRingDetectedLabel fraudRingDetected) { this.fraudRingDetected = fraudRingDetected; return this; } /** * Get fraudRingDetected * @return fraudRingDetected **/ @ApiModelProperty(required = true, value = "") public RiskCheckBehaviorFraudRingDetectedLabel getFraudRingDetected() { return fraudRingDetected; } public void setFraudRingDetected(RiskCheckBehaviorFraudRingDetectedLabel fraudRingDetected) { this.fraudRingDetected = fraudRingDetected; } public RiskCheckBehavior botDetected(RiskCheckBehaviorBotDetectedLabel botDetected) { this.botDetected = botDetected; return this; } /** * Get botDetected * @return botDetected **/ @ApiModelProperty(required = true, value = "") public RiskCheckBehaviorBotDetectedLabel getBotDetected() { return botDetected; } public void setBotDetected(RiskCheckBehaviorBotDetectedLabel botDetected) { this.botDetected = botDetected; } public RiskCheckBehavior riskLevel(RiskLevelWithNoData riskLevel) { this.riskLevel = riskLevel; return this; } /** * Get riskLevel * @return riskLevel **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public RiskLevelWithNoData getRiskLevel() { return riskLevel; } public void setRiskLevel(RiskLevelWithNoData riskLevel) { this.riskLevel = riskLevel; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } RiskCheckBehavior riskCheckBehavior = (RiskCheckBehavior) o; return Objects.equals(this.userInteractions, riskCheckBehavior.userInteractions) && Objects.equals(this.fraudRingDetected, riskCheckBehavior.fraudRingDetected) && Objects.equals(this.botDetected, riskCheckBehavior.botDetected) && Objects.equals(this.riskLevel, riskCheckBehavior.riskLevel); } @Override public int hashCode() { return Objects.hash(userInteractions, fraudRingDetected, botDetected, riskLevel); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class RiskCheckBehavior {\n"); sb.append(" userInteractions: ").append(toIndentedString(userInteractions)).append("\n"); sb.append(" fraudRingDetected: ").append(toIndentedString(fraudRingDetected)).append("\n"); sb.append(" botDetected: ").append(toIndentedString(botDetected)).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/ProcessorTransactionsRefreshResponse.java
src/main/java/com/plaid/client/model/ProcessorTransactionsRefreshResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * ProcessorTransactionsRefreshResponse defines the response schema for &#x60;/processor/transactions/refresh&#x60; */ @ApiModel(description = "ProcessorTransactionsRefreshResponse defines the response schema for `/processor/transactions/refresh`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorTransactionsRefreshResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public ProcessorTransactionsRefreshResponse 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; } ProcessorTransactionsRefreshResponse processorTransactionsRefreshResponse = (ProcessorTransactionsRefreshResponse) o; return Objects.equals(this.requestId, processorTransactionsRefreshResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorTransactionsRefreshResponse {\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/TransferConfigurationGetRequest.java
src/main/java/com/plaid/client/model/TransferConfigurationGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the request schema for &#x60;/transfer/configuration/get&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/configuration/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferConfigurationGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_ORIGINATOR_CLIENT_ID = "originator_client_id"; @SerializedName(SERIALIZED_NAME_ORIGINATOR_CLIENT_ID) private String originatorClientId; public TransferConfigurationGetRequest 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 TransferConfigurationGetRequest 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 TransferConfigurationGetRequest 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 [Platform customer](https://plaid.com/docs/transfer/application/#originators-vs-platforms). * @return originatorClientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The Plaid client ID of the transfer originator. Should only be present if `client_id` is a [Platform customer](https://plaid.com/docs/transfer/application/#originators-vs-platforms).") public String getOriginatorClientId() { return originatorClientId; } public void setOriginatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferConfigurationGetRequest transferConfigurationGetRequest = (TransferConfigurationGetRequest) o; return Objects.equals(this.clientId, transferConfigurationGetRequest.clientId) && Objects.equals(this.secret, transferConfigurationGetRequest.secret) && Objects.equals(this.originatorClientId, transferConfigurationGetRequest.originatorClientId); } @Override public int hashCode() { return Objects.hash(clientId, secret, originatorClientId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferConfigurationGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" originatorClientId: ").append(toIndentedString(originatorClientId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/Employer.java
src/main/java/com/plaid/client/model/Employer.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.AddressDataNullable; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Data about the employer. */ @ApiModel(description = "Data about the employer.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Employer { public static final String SERIALIZED_NAME_EMPLOYER_ID = "employer_id"; @SerializedName(SERIALIZED_NAME_EMPLOYER_ID) private String employerId; 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 AddressDataNullable address; public static final String SERIALIZED_NAME_CONFIDENCE_SCORE = "confidence_score"; @SerializedName(SERIALIZED_NAME_CONFIDENCE_SCORE) private Double confidenceScore; public Employer employerId(String employerId) { this.employerId = employerId; return this; } /** * Plaid&#39;s unique identifier for the employer. * @return employerId **/ @ApiModelProperty(required = true, value = "Plaid's unique identifier for the employer.") public String getEmployerId() { return employerId; } public void setEmployerId(String employerId) { this.employerId = employerId; } public Employer name(String name) { this.name = name; return this; } /** * The name of the employer * @return name **/ @ApiModelProperty(required = true, value = "The name of the employer") public String getName() { return name; } public void setName(String name) { this.name = name; } public Employer address(AddressDataNullable address) { this.address = address; return this; } /** * Get address * @return address **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public AddressDataNullable getAddress() { return address; } public void setAddress(AddressDataNullable address) { this.address = address; } public Employer confidenceScore(Double confidenceScore) { this.confidenceScore = confidenceScore; return this; } /** * A number from 0 to 1 indicating Plaid&#39;s level of confidence in the pairing between the employer and the institution (not yet implemented). * @return confidenceScore **/ @ApiModelProperty(required = true, value = "A number from 0 to 1 indicating Plaid's level of confidence in the pairing between the employer and the institution (not yet implemented).") public Double getConfidenceScore() { return confidenceScore; } public void setConfidenceScore(Double confidenceScore) { this.confidenceScore = confidenceScore; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Employer employer = (Employer) o; return Objects.equals(this.employerId, employer.employerId) && Objects.equals(this.name, employer.name) && Objects.equals(this.address, employer.address) && Objects.equals(this.confidenceScore, employer.confidenceScore); } @Override public int hashCode() { return Objects.hash(employerId, name, address, confidenceScore); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Employer {\n"); sb.append(" employerId: ").append(toIndentedString(employerId)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" confidenceScore: ").append(toIndentedString(confidenceScore)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ClientUserIdentityName.java
src/main/java/com/plaid/client/model/ClientUserIdentityName.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * User name information. */ @ApiModel(description = "User name information.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ClientUserIdentityName { public static final String SERIALIZED_NAME_GIVEN_NAME = "given_name"; @SerializedName(SERIALIZED_NAME_GIVEN_NAME) private String givenName; public static final String SERIALIZED_NAME_FAMILY_NAME = "family_name"; @SerializedName(SERIALIZED_NAME_FAMILY_NAME) private String familyName; public ClientUserIdentityName givenName(String givenName) { this.givenName = givenName; return this; } /** * User&#39;s given name. * @return givenName **/ @ApiModelProperty(required = true, value = "User's given name.") public String getGivenName() { return givenName; } public void setGivenName(String givenName) { this.givenName = givenName; } public ClientUserIdentityName familyName(String familyName) { this.familyName = familyName; return this; } /** * User&#39;s family name. * @return familyName **/ @ApiModelProperty(required = true, value = "User's family name.") public String getFamilyName() { return familyName; } public void setFamilyName(String familyName) { this.familyName = familyName; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ClientUserIdentityName clientUserIdentityName = (ClientUserIdentityName) o; return Objects.equals(this.givenName, clientUserIdentityName.givenName) && Objects.equals(this.familyName, clientUserIdentityName.familyName); } @Override public int hashCode() { return Objects.hash(givenName, familyName); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ClientUserIdentityName {\n"); sb.append(" givenName: ").append(toIndentedString(givenName)).append("\n"); sb.append(" familyName: ").append(toIndentedString(familyName)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BankIncomeRefreshUpdateWebhook.java
src/main/java/com/plaid/client/model/BankIncomeRefreshUpdateWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 a change to the user&#39;s income is detected. You should call &#x60;/credit/bank_income/refresh&#x60; to get updated income data for the user. To receive this webhook, subscribe in the [Dashboard](https://dashboard.plaid.com/developers/webhooks). */ @ApiModel(description = "Fired when a change to the user's income is detected. You should call `/credit/bank_income/refresh` to get updated income data for the user. To receive this webhook, subscribe in the [Dashboard](https://dashboard.plaid.com/developers/webhooks).") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BankIncomeRefreshUpdateWebhook { 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_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public BankIncomeRefreshUpdateWebhook 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 BankIncomeRefreshUpdateWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;BANK_INCOME_REFRESH_UPDATE&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`BANK_INCOME_REFRESH_UPDATE`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public BankIncomeRefreshUpdateWebhook 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 BankIncomeRefreshUpdateWebhook 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; } BankIncomeRefreshUpdateWebhook bankIncomeRefreshUpdateWebhook = (BankIncomeRefreshUpdateWebhook) o; return Objects.equals(this.webhookType, bankIncomeRefreshUpdateWebhook.webhookType) && Objects.equals(this.webhookCode, bankIncomeRefreshUpdateWebhook.webhookCode) && Objects.equals(this.userId, bankIncomeRefreshUpdateWebhook.userId) && Objects.equals(this.environment, bankIncomeRefreshUpdateWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, userId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BankIncomeRefreshUpdateWebhook {\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(" 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/UserAddress.java
src/main/java/com/plaid/client/model/UserAddress.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Home address for the user. Supported values are: not provided, address with only country code or full address. For more context on this field, see [Input Validation by Country](https://plaid.com/docs/identity-verification/hybrid-input-validation/#input-validation-by-country). */ @ApiModel(description = "Home address for the user. Supported values are: not provided, address with only country code or full address. For more context on this field, see [Input Validation by Country](https://plaid.com/docs/identity-verification/hybrid-input-validation/#input-validation-by-country).") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class UserAddress { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) private String street; public static final String SERIALIZED_NAME_STREET2 = "street2"; @SerializedName(SERIALIZED_NAME_STREET2) private String street2; public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) private String city; public static final String SERIALIZED_NAME_REGION = "region"; @SerializedName(SERIALIZED_NAME_REGION) private String region; public static final String SERIALIZED_NAME_POSTAL_CODE = "postal_code"; @SerializedName(SERIALIZED_NAME_POSTAL_CODE) private String postalCode; public static final String SERIALIZED_NAME_COUNTRY = "country"; @SerializedName(SERIALIZED_NAME_COUNTRY) private String country; public UserAddress street(String street) { this.street = street; return this; } /** * The primary street portion of an address. If an address is provided, this field will always be filled. A string with at least one non-whitespace alphabetical character, with a max length of 80 characters. * @return street **/ @javax.annotation.Nullable @ApiModelProperty(example = "123 Main St.", value = "The primary street portion of an address. If an address is provided, this field will always be filled. A string with at least one non-whitespace alphabetical character, with a max length of 80 characters.") public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } public UserAddress street2(String street2) { this.street2 = street2; return this; } /** * Extra street information, like an apartment or suite number. If provided, a string with at least one non-whitespace character, with a max length of 50 characters. * @return street2 **/ @javax.annotation.Nullable @ApiModelProperty(example = "Unit 42", value = "Extra street information, like an apartment or suite number. If provided, a string with at least one non-whitespace character, with a max length of 50 characters.") public String getStreet2() { return street2; } public void setStreet2(String street2) { this.street2 = street2; } public UserAddress city(String city) { this.city = city; return this; } /** * City from the address. A string with at least one non-whitespace alphabetical character, with a max length of 100 characters. * @return city **/ @javax.annotation.Nullable @ApiModelProperty(example = "Pawnee", value = "City from the address. A string with at least one non-whitespace alphabetical character, with a max length of 100 characters.") public String getCity() { return city; } public void setCity(String city) { this.city = city; } public UserAddress region(String region) { this.region = region; return this; } /** * A subdivision code. \&quot;Subdivision\&quot; is a generic term for \&quot;state\&quot;, \&quot;province\&quot;, \&quot;prefecture\&quot;, \&quot;zone\&quot;, etc. For the list of valid codes, see [country subdivision codes](https://plaid.com/documents/country_subdivision_codes.json). Country prefixes are omitted, since they are inferred from the &#x60;country&#x60; field. * @return region **/ @javax.annotation.Nullable @ApiModelProperty(example = "IN", value = "A subdivision code. \"Subdivision\" is a generic term for \"state\", \"province\", \"prefecture\", \"zone\", etc. For the list of valid codes, see [country subdivision codes](https://plaid.com/documents/country_subdivision_codes.json). Country prefixes are omitted, since they are inferred from the `country` field.") public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public UserAddress postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * The postal code for the associated address. Between 2 and 10 alphanumeric characters. For US-based addresses this must be 5 numeric digits. * @return postalCode **/ @javax.annotation.Nullable @ApiModelProperty(example = "46001", value = "The postal code for the associated address. Between 2 and 10 alphanumeric characters. For US-based addresses this must be 5 numeric digits.") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public UserAddress country(String country) { this.country = country; return this; } /** * Valid, capitalized, two-letter ISO code representing the country of this object. Must be in ISO 3166-1 alpha-2 form. * @return country **/ @ApiModelProperty(example = "US", required = true, value = "Valid, capitalized, two-letter ISO code representing the country of this object. Must be in ISO 3166-1 alpha-2 form.") public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } UserAddress userAddress = (UserAddress) o; return Objects.equals(this.street, userAddress.street) && Objects.equals(this.street2, userAddress.street2) && Objects.equals(this.city, userAddress.city) && Objects.equals(this.region, userAddress.region) && Objects.equals(this.postalCode, userAddress.postalCode) && Objects.equals(this.country, userAddress.country); } @Override public int hashCode() { return Objects.hash(street, street2, city, region, postalCode, country); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class UserAddress {\n"); sb.append(" street: ").append(toIndentedString(street)).append("\n"); sb.append(" street2: ").append(toIndentedString(street2)).append("\n"); sb.append(" city: ").append(toIndentedString(city)).append("\n"); sb.append(" region: ").append(toIndentedString(region)).append("\n"); sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n"); sb.append(" country: ").append(toIndentedString(country)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaymentInitiationPaymentTokenCreateRequest.java
src/main/java/com/plaid/client/model/PaymentInitiationPaymentTokenCreateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * PaymentInitiationPaymentTokenCreateRequest defines the request schema for &#x60;/payment_initiation/payment/token/create&#x60; */ @ApiModel(description = "PaymentInitiationPaymentTokenCreateRequest defines the request schema for `/payment_initiation/payment/token/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentInitiationPaymentTokenCreateRequest { 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_ID = "payment_id"; @SerializedName(SERIALIZED_NAME_PAYMENT_ID) private String paymentId; public PaymentInitiationPaymentTokenCreateRequest 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 PaymentInitiationPaymentTokenCreateRequest 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 PaymentInitiationPaymentTokenCreateRequest paymentId(String paymentId) { this.paymentId = paymentId; return this; } /** * The &#x60;payment_id&#x60; returned from &#x60;/payment_initiation/payment/create&#x60;. * @return paymentId **/ @ApiModelProperty(required = true, value = "The `payment_id` returned from `/payment_initiation/payment/create`.") public String getPaymentId() { return paymentId; } public void setPaymentId(String paymentId) { this.paymentId = paymentId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaymentInitiationPaymentTokenCreateRequest paymentInitiationPaymentTokenCreateRequest = (PaymentInitiationPaymentTokenCreateRequest) o; return Objects.equals(this.clientId, paymentInitiationPaymentTokenCreateRequest.clientId) && Objects.equals(this.secret, paymentInitiationPaymentTokenCreateRequest.secret) && Objects.equals(this.paymentId, paymentInitiationPaymentTokenCreateRequest.paymentId); } @Override public int hashCode() { return Objects.hash(clientId, secret, paymentId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentInitiationPaymentTokenCreateRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" paymentId: ").append(toIndentedString(paymentId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PhoneNumberMatchScore.java
src/main/java/com/plaid/client/model/PhoneNumberMatchScore.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Score found by matching phone number provided by the API with the phone number on the account at the financial institution. 100 is a perfect match and 0 is a no match. If the account contains multiple owners, the maximum match score is filled. */ @ApiModel(description = "Score found by matching phone number provided by the API with the phone number on the account at the financial institution. 100 is a perfect match and 0 is a no match. If the account contains multiple owners, the maximum match score is filled.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PhoneNumberMatchScore { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) private Integer score; public PhoneNumberMatchScore score(Integer score) { this.score = score; return this; } /** * Match score for normalized phone number. 100 is a perfect match, 99-70 is a partial match (matching the same phone number with extension against one without extension, etc.), anything below 70 is considered a mismatch. Typically, the match threshold should be set to a score of 70 or higher. If the phone number is missing from either the API or financial institution, this is null. * @return score **/ @javax.annotation.Nullable @ApiModelProperty(value = "Match score for normalized phone number. 100 is a perfect match, 99-70 is a partial match (matching the same phone number with extension against one without extension, etc.), anything below 70 is considered a mismatch. Typically, the match threshold should be set to a score of 70 or higher. If the phone number is missing from either the API or financial institution, this is null.") public Integer getScore() { return score; } public void setScore(Integer score) { this.score = score; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PhoneNumberMatchScore phoneNumberMatchScore = (PhoneNumberMatchScore) o; return Objects.equals(this.score, phoneNumberMatchScore.score); } @Override public int hashCode() { return Objects.hash(score); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PhoneNumberMatchScore {\n"); sb.append(" score: ").append(toIndentedString(score)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WalletTransactionGetResponse.java
src/main/java/com/plaid/client/model/WalletTransactionGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.PaymentInitiationRecipientGetResponseAllOf; import com.plaid.client.model.PlaidError; import com.plaid.client.model.WalletPaymentScheme; import com.plaid.client.model.WalletTransaction; import com.plaid.client.model.WalletTransactionAmount; import com.plaid.client.model.WalletTransactionCounterparty; import com.plaid.client.model.WalletTransactionFailureReason; import com.plaid.client.model.WalletTransactionRelation; import com.plaid.client.model.WalletTransactionStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.List; /** * WalletTransactionGetResponse defines the response schema for &#x60;/wallet/transaction/get&#x60; */ @ApiModel(description = "WalletTransactionGetResponse defines the response schema for `/wallet/transaction/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WalletTransactionGetResponse { public static final String SERIALIZED_NAME_TRANSACTION_ID = "transaction_id"; @SerializedName(SERIALIZED_NAME_TRANSACTION_ID) private String transactionId; public static final String SERIALIZED_NAME_WALLET_ID = "wallet_id"; @SerializedName(SERIALIZED_NAME_WALLET_ID) private String walletId; public static final String SERIALIZED_NAME_REFERENCE = "reference"; @SerializedName(SERIALIZED_NAME_REFERENCE) private String reference; /** * The type of the transaction. The supported transaction types that are returned are: &#x60;BANK_TRANSFER:&#x60; a transaction which credits an e-wallet through an external bank transfer. &#x60;PAYOUT:&#x60; a transaction which debits an e-wallet by disbursing funds to a counterparty. &#x60;PIS_PAY_IN:&#x60; a payment which credits an e-wallet through Plaid&#39;s Payment Initiation Services (PIS) APIs. For more information see the [Payment Initiation endpoints](https://plaid.com/docs/api/products/payment-initiation/). &#x60;REFUND:&#x60; a transaction which debits an e-wallet by refunding a previously initiated payment made through Plaid&#39;s [PIS APIs](https://plaid.com/docs/api/products/payment-initiation/). &#x60;FUNDS_SWEEP&#x60;: an automated transaction which debits funds from an e-wallet to a designated client-owned account. &#x60;RETURN&#x60;: an automated transaction where a debit transaction was reversed and money moved back to originating account. &#x60;RECALL&#x60;: a transaction where the sending bank has requested the return of funds due to a fraud claim, technical error, or other issue associated with the payment. */ @JsonAdapter(TypeEnum.Adapter.class) public enum TypeEnum { BANK_TRANSFER("BANK_TRANSFER"), PAYOUT("PAYOUT"), PIS_PAY_IN("PIS_PAY_IN"), REFUND("REFUND"), FUNDS_SWEEP("FUNDS_SWEEP"), RETURN("RETURN"), RECALL("RECALL"); private String value; TypeEnum(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TypeEnum fromValue(String value) { for (TypeEnum b : TypeEnum.values()) { if (b.value.equals(value)) { return b; } } throw new IllegalArgumentException("Unexpected value '" + value + "'"); } public static class Adapter extends TypeAdapter<TypeEnum> { @Override public void write(final JsonWriter jsonWriter, final TypeEnum enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TypeEnum read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TypeEnum.fromValue(value); } } } public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private TypeEnum type; public static final String SERIALIZED_NAME_SCHEME = "scheme"; @SerializedName(SERIALIZED_NAME_SCHEME) private WalletPaymentScheme scheme; public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private WalletTransactionAmount amount; public static final String SERIALIZED_NAME_COUNTERPARTY = "counterparty"; @SerializedName(SERIALIZED_NAME_COUNTERPARTY) private WalletTransactionCounterparty counterparty; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private WalletTransactionStatus status; public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) private OffsetDateTime createdAt; public static final String SERIALIZED_NAME_LAST_STATUS_UPDATE = "last_status_update"; @SerializedName(SERIALIZED_NAME_LAST_STATUS_UPDATE) private OffsetDateTime lastStatusUpdate; public static final String SERIALIZED_NAME_PAYMENT_ID = "payment_id"; @SerializedName(SERIALIZED_NAME_PAYMENT_ID) private String paymentId; public static final String SERIALIZED_NAME_FAILURE_REASON = "failure_reason"; @SerializedName(SERIALIZED_NAME_FAILURE_REASON) private WalletTransactionFailureReason failureReason; public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private PlaidError error; public static final String SERIALIZED_NAME_RELATED_TRANSACTIONS = "related_transactions"; @SerializedName(SERIALIZED_NAME_RELATED_TRANSACTIONS) private List<WalletTransactionRelation> relatedTransactions = null; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public WalletTransactionGetResponse transactionId(String transactionId) { this.transactionId = transactionId; return this; } /** * A unique ID identifying the transaction * @return transactionId **/ @ApiModelProperty(required = true, value = "A unique ID identifying the transaction") public String getTransactionId() { return transactionId; } public void setTransactionId(String transactionId) { this.transactionId = transactionId; } public WalletTransactionGetResponse walletId(String walletId) { this.walletId = walletId; return this; } /** * The EMI (E-Money Institution) wallet that this payment is associated with, if any. This wallet is used as an intermediary account to enable Plaid to reconcile the settlement of funds for Payment Initiation requests. * @return walletId **/ @ApiModelProperty(required = true, value = "The EMI (E-Money Institution) wallet that this payment is associated with, if any. This wallet is used as an intermediary account to enable Plaid to reconcile the settlement of funds for Payment Initiation requests.") public String getWalletId() { return walletId; } public void setWalletId(String walletId) { this.walletId = walletId; } public WalletTransactionGetResponse reference(String reference) { this.reference = reference; return this; } /** * A reference for the transaction * @return reference **/ @ApiModelProperty(required = true, value = "A reference for the transaction") public String getReference() { return reference; } public void setReference(String reference) { this.reference = reference; } public WalletTransactionGetResponse type(TypeEnum type) { this.type = type; return this; } /** * The type of the transaction. The supported transaction types that are returned are: &#x60;BANK_TRANSFER:&#x60; a transaction which credits an e-wallet through an external bank transfer. &#x60;PAYOUT:&#x60; a transaction which debits an e-wallet by disbursing funds to a counterparty. &#x60;PIS_PAY_IN:&#x60; a payment which credits an e-wallet through Plaid&#39;s Payment Initiation Services (PIS) APIs. For more information see the [Payment Initiation endpoints](https://plaid.com/docs/api/products/payment-initiation/). &#x60;REFUND:&#x60; a transaction which debits an e-wallet by refunding a previously initiated payment made through Plaid&#39;s [PIS APIs](https://plaid.com/docs/api/products/payment-initiation/). &#x60;FUNDS_SWEEP&#x60;: an automated transaction which debits funds from an e-wallet to a designated client-owned account. &#x60;RETURN&#x60;: an automated transaction where a debit transaction was reversed and money moved back to originating account. &#x60;RECALL&#x60;: a transaction where the sending bank has requested the return of funds due to a fraud claim, technical error, or other issue associated with the payment. * @return type **/ @ApiModelProperty(required = true, value = "The type of the transaction. The supported transaction types that are returned are: `BANK_TRANSFER:` a transaction which credits an e-wallet through an external bank transfer. `PAYOUT:` a transaction which debits an e-wallet by disbursing funds to a counterparty. `PIS_PAY_IN:` a payment which credits an e-wallet through Plaid's Payment Initiation Services (PIS) APIs. For more information see the [Payment Initiation endpoints](https://plaid.com/docs/api/products/payment-initiation/). `REFUND:` a transaction which debits an e-wallet by refunding a previously initiated payment made through Plaid's [PIS APIs](https://plaid.com/docs/api/products/payment-initiation/). `FUNDS_SWEEP`: an automated transaction which debits funds from an e-wallet to a designated client-owned account. `RETURN`: an automated transaction where a debit transaction was reversed and money moved back to originating account. `RECALL`: a transaction where the sending bank has requested the return of funds due to a fraud claim, technical error, or other issue associated with the payment.") public TypeEnum getType() { return type; } public void setType(TypeEnum type) { this.type = type; } public WalletTransactionGetResponse scheme(WalletPaymentScheme scheme) { this.scheme = scheme; return this; } /** * Get scheme * @return scheme **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public WalletPaymentScheme getScheme() { return scheme; } public void setScheme(WalletPaymentScheme scheme) { this.scheme = scheme; } public WalletTransactionGetResponse 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 WalletTransactionGetResponse 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 WalletTransactionGetResponse status(WalletTransactionStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public WalletTransactionStatus getStatus() { return status; } public void setStatus(WalletTransactionStatus status) { this.status = status; } public WalletTransactionGetResponse createdAt(OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** * Timestamp when the transaction was created, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format. * @return createdAt **/ @ApiModelProperty(required = true, value = "Timestamp when the transaction was created, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format.") public OffsetDateTime getCreatedAt() { return createdAt; } public void setCreatedAt(OffsetDateTime createdAt) { this.createdAt = createdAt; } public WalletTransactionGetResponse lastStatusUpdate(OffsetDateTime lastStatusUpdate) { this.lastStatusUpdate = lastStatusUpdate; return this; } /** * The date and time of the last time the &#x60;status&#x60; was updated, in IS0 8601 format * @return lastStatusUpdate **/ @ApiModelProperty(required = true, value = "The date and time of the last time the `status` was updated, in IS0 8601 format") public OffsetDateTime getLastStatusUpdate() { return lastStatusUpdate; } public void setLastStatusUpdate(OffsetDateTime lastStatusUpdate) { this.lastStatusUpdate = lastStatusUpdate; } public WalletTransactionGetResponse paymentId(String paymentId) { this.paymentId = paymentId; return this; } /** * The payment id that this transaction is associated with, if any. This is present only for transaction types &#x60;PIS_PAY_IN&#x60; and &#x60;REFUND&#x60;. * @return paymentId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The payment id that this transaction is associated with, if any. This is present only for transaction types `PIS_PAY_IN` and `REFUND`.") public String getPaymentId() { return paymentId; } public void setPaymentId(String paymentId) { this.paymentId = paymentId; } public WalletTransactionGetResponse failureReason(WalletTransactionFailureReason failureReason) { this.failureReason = failureReason; return this; } /** * Get failureReason * @return failureReason **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public WalletTransactionFailureReason getFailureReason() { return failureReason; } public void setFailureReason(WalletTransactionFailureReason failureReason) { this.failureReason = failureReason; } public WalletTransactionGetResponse error(PlaidError error) { this.error = error; return this; } /** * Get error * @return error **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PlaidError getError() { return error; } public void setError(PlaidError error) { this.error = error; } public WalletTransactionGetResponse relatedTransactions(List<WalletTransactionRelation> relatedTransactions) { this.relatedTransactions = relatedTransactions; return this; } public WalletTransactionGetResponse addRelatedTransactionsItem(WalletTransactionRelation relatedTransactionsItem) { if (this.relatedTransactions == null) { this.relatedTransactions = new ArrayList<>(); } this.relatedTransactions.add(relatedTransactionsItem); return this; } /** * A list of wallet transactions that this transaction is associated with, if any. * @return relatedTransactions **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of wallet transactions that this transaction is associated with, if any.") public List<WalletTransactionRelation> getRelatedTransactions() { return relatedTransactions; } public void setRelatedTransactions(List<WalletTransactionRelation> relatedTransactions) { this.relatedTransactions = relatedTransactions; } public WalletTransactionGetResponse 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; } WalletTransactionGetResponse walletTransactionGetResponse = (WalletTransactionGetResponse) o; return Objects.equals(this.transactionId, walletTransactionGetResponse.transactionId) && Objects.equals(this.walletId, walletTransactionGetResponse.walletId) && Objects.equals(this.reference, walletTransactionGetResponse.reference) && Objects.equals(this.type, walletTransactionGetResponse.type) && Objects.equals(this.scheme, walletTransactionGetResponse.scheme) && Objects.equals(this.amount, walletTransactionGetResponse.amount) && Objects.equals(this.counterparty, walletTransactionGetResponse.counterparty) && Objects.equals(this.status, walletTransactionGetResponse.status) && Objects.equals(this.createdAt, walletTransactionGetResponse.createdAt) && Objects.equals(this.lastStatusUpdate, walletTransactionGetResponse.lastStatusUpdate) && Objects.equals(this.paymentId, walletTransactionGetResponse.paymentId) && Objects.equals(this.failureReason, walletTransactionGetResponse.failureReason) && Objects.equals(this.error, walletTransactionGetResponse.error) && Objects.equals(this.relatedTransactions, walletTransactionGetResponse.relatedTransactions) && Objects.equals(this.requestId, walletTransactionGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(transactionId, walletId, reference, type, scheme, amount, counterparty, status, createdAt, lastStatusUpdate, paymentId, failureReason, error, relatedTransactions, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WalletTransactionGetResponse {\n"); sb.append(" transactionId: ").append(toIndentedString(transactionId)).append("\n"); sb.append(" walletId: ").append(toIndentedString(walletId)).append("\n"); sb.append(" reference: ").append(toIndentedString(reference)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" scheme: ").append(toIndentedString(scheme)).append("\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" counterparty: ").append(toIndentedString(counterparty)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n"); sb.append(" lastStatusUpdate: ").append(toIndentedString(lastStatusUpdate)).append("\n"); sb.append(" paymentId: ").append(toIndentedString(paymentId)).append("\n"); sb.append(" failureReason: ").append(toIndentedString(failureReason)).append("\n"); sb.append(" error: ").append(toIndentedString(error)).append("\n"); sb.append(" relatedTransactions: ").append(toIndentedString(relatedTransactions)).append("\n"); sb.append(" 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/CraLoanApplication.java
src/main/java/com/plaid/client/model/CraLoanApplication.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CraLoanApplicationDecision; import com.plaid.client.model.CraLoanType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * Contains loan application data. */ @ApiModel(description = "Contains loan application data.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraLoanApplication { public static final String SERIALIZED_NAME_USER_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) private String userToken; public static final String SERIALIZED_NAME_APPLICATION_ID = "application_id"; @SerializedName(SERIALIZED_NAME_APPLICATION_ID) private String applicationId; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private CraLoanType type; public static final String SERIALIZED_NAME_DECISION = "decision"; @SerializedName(SERIALIZED_NAME_DECISION) private CraLoanApplicationDecision decision; public static final String SERIALIZED_NAME_APPLICATION_DATE = "application_date"; @SerializedName(SERIALIZED_NAME_APPLICATION_DATE) private LocalDate applicationDate; public static final String SERIALIZED_NAME_DECISION_DATE = "decision_date"; @SerializedName(SERIALIZED_NAME_DECISION_DATE) private LocalDate decisionDate; public CraLoanApplication userToken(String userToken) { this.userToken = userToken; return this; } /** * The user token for the user associated with the loan. * @return userToken **/ @ApiModelProperty(required = true, value = "The user token for the user associated with the loan.") public String getUserToken() { return userToken; } public void setUserToken(String userToken) { this.userToken = userToken; } public CraLoanApplication applicationId(String applicationId) { this.applicationId = applicationId; return this; } /** * A unique identifier for the loan application. Personally identifiable information, such as an email address or phone number, should not be used in the &#x60;application_id&#x60;. * @return applicationId **/ @ApiModelProperty(required = true, value = "A unique identifier for the loan application. Personally identifiable information, such as an email address or phone number, should not be used in the `application_id`.") public String getApplicationId() { return applicationId; } public void setApplicationId(String applicationId) { this.applicationId = applicationId; } public CraLoanApplication type(CraLoanType type) { this.type = type; return this; } /** * Get type * @return type **/ @ApiModelProperty(required = true, value = "") public CraLoanType getType() { return type; } public void setType(CraLoanType type) { this.type = type; } public CraLoanApplication decision(CraLoanApplicationDecision decision) { this.decision = decision; return this; } /** * Get decision * @return decision **/ @ApiModelProperty(required = true, value = "") public CraLoanApplicationDecision getDecision() { return decision; } public void setDecision(CraLoanApplicationDecision decision) { this.decision = decision; } public CraLoanApplication applicationDate(LocalDate applicationDate) { this.applicationDate = applicationDate; return this; } /** * The date the user applied for the loan. The date should be in ISO 8601 format (YYYY-MM-DD). * @return applicationDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date the user applied for the loan. The date should be in ISO 8601 format (YYYY-MM-DD).") public LocalDate getApplicationDate() { return applicationDate; } public void setApplicationDate(LocalDate applicationDate) { this.applicationDate = applicationDate; } public CraLoanApplication decisionDate(LocalDate decisionDate) { this.decisionDate = decisionDate; return this; } /** * The date when the loan application&#39;s decision was made. The date should be in ISO 8601 format (YYYY-MM-DD). * @return decisionDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date when the loan application's decision was made. The date should be in ISO 8601 format (YYYY-MM-DD).") public LocalDate getDecisionDate() { return decisionDate; } public void setDecisionDate(LocalDate decisionDate) { this.decisionDate = decisionDate; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraLoanApplication craLoanApplication = (CraLoanApplication) o; return Objects.equals(this.userToken, craLoanApplication.userToken) && Objects.equals(this.applicationId, craLoanApplication.applicationId) && Objects.equals(this.type, craLoanApplication.type) && Objects.equals(this.decision, craLoanApplication.decision) && Objects.equals(this.applicationDate, craLoanApplication.applicationDate) && Objects.equals(this.decisionDate, craLoanApplication.decisionDate); } @Override public int hashCode() { return Objects.hash(userToken, applicationId, type, decision, applicationDate, decisionDate); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraLoanApplication {\n"); sb.append(" userToken: ").append(toIndentedString(userToken)).append("\n"); sb.append(" applicationId: ").append(toIndentedString(applicationId)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" decision: ").append(toIndentedString(decision)).append("\n"); sb.append(" applicationDate: ").append(toIndentedString(applicationDate)).append("\n"); sb.append(" decisionDate: ").append(toIndentedString(decisionDate)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthInstitution.java
src/main/java/com/plaid/client/model/PartnerEndCustomerOAuthInstitution.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.PartnerEndCustomerOAuthInstitutionEnvironments; import com.plaid.client.model.PlaidError; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * The OAuth registration information for an institution. */ @ApiModel(description = "The OAuth registration information for an institution.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PartnerEndCustomerOAuthInstitution { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_ID) private String institutionId; public static final String SERIALIZED_NAME_ENVIRONMENTS = "environments"; @SerializedName(SERIALIZED_NAME_ENVIRONMENTS) private PartnerEndCustomerOAuthInstitutionEnvironments environments; public static final String SERIALIZED_NAME_PRODUCTION_ENABLEMENT_DATE = "production_enablement_date"; @SerializedName(SERIALIZED_NAME_PRODUCTION_ENABLEMENT_DATE) private String productionEnablementDate; public static final String SERIALIZED_NAME_CLASSIC_DISABLEMENT_DATE = "classic_disablement_date"; @SerializedName(SERIALIZED_NAME_CLASSIC_DISABLEMENT_DATE) private String classicDisablementDate; public static final String SERIALIZED_NAME_ERRORS = "errors"; @SerializedName(SERIALIZED_NAME_ERRORS) private List<PlaidError> errors = null; public PartnerEndCustomerOAuthInstitution name(String name) { this.name = name; return this; } /** * Get name * @return name **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getName() { return name; } public void setName(String name) { this.name = name; } public PartnerEndCustomerOAuthInstitution institutionId(String institutionId) { this.institutionId = institutionId; return this; } /** * Get institutionId * @return institutionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getInstitutionId() { return institutionId; } public void setInstitutionId(String institutionId) { this.institutionId = institutionId; } public PartnerEndCustomerOAuthInstitution environments(PartnerEndCustomerOAuthInstitutionEnvironments environments) { this.environments = environments; return this; } /** * Get environments * @return environments **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PartnerEndCustomerOAuthInstitutionEnvironments getEnvironments() { return environments; } public void setEnvironments(PartnerEndCustomerOAuthInstitutionEnvironments environments) { this.environments = environments; } public PartnerEndCustomerOAuthInstitution productionEnablementDate(String productionEnablementDate) { this.productionEnablementDate = productionEnablementDate; return this; } /** * The date on which the end customer&#39;s application was approved by the institution, or an empty string if their application has not yet been approved. * @return productionEnablementDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date on which the end customer's application was approved by the institution, or an empty string if their application has not yet been approved.") public String getProductionEnablementDate() { return productionEnablementDate; } public void setProductionEnablementDate(String productionEnablementDate) { this.productionEnablementDate = productionEnablementDate; } public PartnerEndCustomerOAuthInstitution classicDisablementDate(String classicDisablementDate) { this.classicDisablementDate = classicDisablementDate; return this; } /** * The date on which non-OAuth Item adds will no longer be supported for this institution, or an empty string if no such date has been set by the institution. * @return classicDisablementDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date on which non-OAuth Item adds will no longer be supported for this institution, or an empty string if no such date has been set by the institution.") public String getClassicDisablementDate() { return classicDisablementDate; } public void setClassicDisablementDate(String classicDisablementDate) { this.classicDisablementDate = classicDisablementDate; } public PartnerEndCustomerOAuthInstitution errors(List<PlaidError> errors) { this.errors = errors; return this; } public PartnerEndCustomerOAuthInstitution addErrorsItem(PlaidError errorsItem) { if (this.errors == null) { this.errors = new ArrayList<>(); } this.errors.add(errorsItem); return this; } /** * The errors encountered while registering the end customer&#39;s application with the institutions. * @return errors **/ @javax.annotation.Nullable @ApiModelProperty(value = "The errors encountered while registering the end customer's application with the institutions.") public List<PlaidError> getErrors() { return errors; } public void setErrors(List<PlaidError> errors) { this.errors = errors; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PartnerEndCustomerOAuthInstitution partnerEndCustomerOAuthInstitution = (PartnerEndCustomerOAuthInstitution) o; return Objects.equals(this.name, partnerEndCustomerOAuthInstitution.name) && Objects.equals(this.institutionId, partnerEndCustomerOAuthInstitution.institutionId) && Objects.equals(this.environments, partnerEndCustomerOAuthInstitution.environments) && Objects.equals(this.productionEnablementDate, partnerEndCustomerOAuthInstitution.productionEnablementDate) && Objects.equals(this.classicDisablementDate, partnerEndCustomerOAuthInstitution.classicDisablementDate) && Objects.equals(this.errors, partnerEndCustomerOAuthInstitution.errors); } @Override public int hashCode() { return Objects.hash(name, institutionId, environments, productionEnablementDate, classicDisablementDate, errors); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PartnerEndCustomerOAuthInstitution {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" institutionId: ").append(toIndentedString(institutionId)).append("\n"); sb.append(" environments: ").append(toIndentedString(environments)).append("\n"); sb.append(" productionEnablementDate: ").append(toIndentedString(productionEnablementDate)).append("\n"); sb.append(" classicDisablementDate: ").append(toIndentedString(classicDisablementDate)).append("\n"); sb.append(" errors: ").append(toIndentedString(errors)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ItemActivityListRequest.java
src/main/java/com/plaid/client/model/ItemActivityListRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Request to list a historical log of user consent events. */ @ApiModel(description = "Request to list a historical log of user consent events.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ItemActivityListRequest { 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_CURSOR = "cursor"; @SerializedName(SERIALIZED_NAME_CURSOR) private String cursor; public static final String SERIALIZED_NAME_COUNT = "count"; @SerializedName(SERIALIZED_NAME_COUNT) private Integer count = 50; public ItemActivityListRequest 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 ItemActivityListRequest 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 ItemActivityListRequest accessToken(String accessToken) { this.accessToken = accessToken; return this; } /** * The access token associated with the Item data is being requested for. * @return accessToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "The access token associated with the Item data is being requested for.") public String getAccessToken() { return accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; } public ItemActivityListRequest cursor(String cursor) { this.cursor = cursor; return this; } /** * Cursor used for pagination. * @return cursor **/ @javax.annotation.Nullable @ApiModelProperty(value = "Cursor used for pagination.") public String getCursor() { return cursor; } public void setCursor(String cursor) { this.cursor = cursor; } public ItemActivityListRequest count(Integer count) { this.count = count; return this; } /** * Get count * minimum: 1 * maximum: 50 * @return count **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ItemActivityListRequest itemActivityListRequest = (ItemActivityListRequest) o; return Objects.equals(this.clientId, itemActivityListRequest.clientId) && Objects.equals(this.secret, itemActivityListRequest.secret) && Objects.equals(this.accessToken, itemActivityListRequest.accessToken) && Objects.equals(this.cursor, itemActivityListRequest.cursor) && Objects.equals(this.count, itemActivityListRequest.count); } @Override public int hashCode() { return Objects.hash(clientId, secret, accessToken, cursor, count); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ItemActivityListRequest {\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(" cursor: ").append(toIndentedString(cursor)).append("\n"); sb.append(" count: ").append(toIndentedString(count)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/MerchantInsights.java
src/main/java/com/plaid/client/model/MerchantInsights.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Insights into a user’s top merchants. */ @ApiModel(description = "Insights into a user’s top merchants.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class MerchantInsights { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_ENTITY_ID = "entity_id"; @SerializedName(SERIALIZED_NAME_ENTITY_ID) private String entityId; public static final String SERIALIZED_NAME_WEBSITE = "website"; @SerializedName(SERIALIZED_NAME_WEBSITE) private String website; public static final String SERIALIZED_NAME_TRANSACTION_COUNT = "transaction_count"; @SerializedName(SERIALIZED_NAME_TRANSACTION_COUNT) private Integer transactionCount; 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 static final String SERIALIZED_NAME_TOTAL_OUTFLOWS = "total_outflows"; @SerializedName(SERIALIZED_NAME_TOTAL_OUTFLOWS) private Double totalOutflows; public static final String SERIALIZED_NAME_TOTAL_INFLOWS = "total_inflows"; @SerializedName(SERIALIZED_NAME_TOTAL_INFLOWS) private Double totalInflows; public MerchantInsights name(String name) { this.name = name; return this; } /** * The counterparty name. * @return name **/ @ApiModelProperty(required = true, value = "The counterparty name.") public String getName() { return name; } public void setName(String name) { this.name = name; } public MerchantInsights entityId(String entityId) { this.entityId = entityId; return this; } /** * A unique, stable, Plaid-generated id that maps to the merchant. * @return entityId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique, stable, Plaid-generated id that maps to the merchant.") public String getEntityId() { return entityId; } public void setEntityId(String entityId) { this.entityId = entityId; } public MerchantInsights website(String website) { this.website = website; return this; } /** * The website associated with the merchant. * @return website **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The website associated with the merchant.") public String getWebsite() { return website; } public void setWebsite(String website) { this.website = website; } public MerchantInsights transactionCount(Integer transactionCount) { this.transactionCount = transactionCount; return this; } /** * The number of transactions associated with merchant of this type. * @return transactionCount **/ @ApiModelProperty(required = true, value = "The number of transactions associated with merchant of this type.") public Integer getTransactionCount() { return transactionCount; } public void setTransactionCount(Integer transactionCount) { this.transactionCount = transactionCount; } public MerchantInsights personalFinanceCategoryPrimary(String personalFinanceCategoryPrimary) { this.personalFinanceCategoryPrimary = personalFinanceCategoryPrimary; return this; } /** * The primary personal finance category associated with this merchant. * @return personalFinanceCategoryPrimary **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The primary personal finance category associated with this merchant.") public String getPersonalFinanceCategoryPrimary() { return personalFinanceCategoryPrimary; } public void setPersonalFinanceCategoryPrimary(String personalFinanceCategoryPrimary) { this.personalFinanceCategoryPrimary = personalFinanceCategoryPrimary; } public MerchantInsights personalFinanceCategoryDetailed(String personalFinanceCategoryDetailed) { this.personalFinanceCategoryDetailed = personalFinanceCategoryDetailed; return this; } /** * The detailed personal finance category associated with this merchant. * @return personalFinanceCategoryDetailed **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The detailed personal finance category associated with this merchant.") public String getPersonalFinanceCategoryDetailed() { return personalFinanceCategoryDetailed; } public void setPersonalFinanceCategoryDetailed(String personalFinanceCategoryDetailed) { this.personalFinanceCategoryDetailed = personalFinanceCategoryDetailed; } public MerchantInsights totalOutflows(Double totalOutflows) { this.totalOutflows = totalOutflows; return this; } /** * Sum of outflow amounts. * @return totalOutflows **/ @ApiModelProperty(required = true, value = "Sum of outflow amounts.") public Double getTotalOutflows() { return totalOutflows; } public void setTotalOutflows(Double totalOutflows) { this.totalOutflows = totalOutflows; } public MerchantInsights totalInflows(Double totalInflows) { this.totalInflows = totalInflows; return this; } /** * Sum of inflow amounts. * @return totalInflows **/ @ApiModelProperty(required = true, value = "Sum of inflow amounts.") public Double getTotalInflows() { return totalInflows; } public void setTotalInflows(Double totalInflows) { this.totalInflows = totalInflows; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } MerchantInsights merchantInsights = (MerchantInsights) o; return Objects.equals(this.name, merchantInsights.name) && Objects.equals(this.entityId, merchantInsights.entityId) && Objects.equals(this.website, merchantInsights.website) && Objects.equals(this.transactionCount, merchantInsights.transactionCount) && Objects.equals(this.personalFinanceCategoryPrimary, merchantInsights.personalFinanceCategoryPrimary) && Objects.equals(this.personalFinanceCategoryDetailed, merchantInsights.personalFinanceCategoryDetailed) && Objects.equals(this.totalOutflows, merchantInsights.totalOutflows) && Objects.equals(this.totalInflows, merchantInsights.totalInflows); } @Override public int hashCode() { return Objects.hash(name, entityId, website, transactionCount, personalFinanceCategoryPrimary, personalFinanceCategoryDetailed, totalOutflows, totalInflows); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class MerchantInsights {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" entityId: ").append(toIndentedString(entityId)).append("\n"); sb.append(" website: ").append(toIndentedString(website)).append("\n"); sb.append(" transactionCount: ").append(toIndentedString(transactionCount)).append("\n"); sb.append(" personalFinanceCategoryPrimary: ").append(toIndentedString(personalFinanceCategoryPrimary)).append("\n"); sb.append(" personalFinanceCategoryDetailed: ").append(toIndentedString(personalFinanceCategoryDetailed)).append("\n"); sb.append(" totalOutflows: ").append(toIndentedString(totalOutflows)).append("\n"); sb.append(" totalInflows: ").append(toIndentedString(totalInflows)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditBankIncomeWebhookUpdateRequest.java
src/main/java/com/plaid/client/model/CreditBankIncomeWebhookUpdateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * CreditBankIncomeWebhookUpdateRequest defines the request schema for &#x60;/credit/bank_income/webhook/update&#x60;. */ @ApiModel(description = "CreditBankIncomeWebhookUpdateRequest defines the request schema for `/credit/bank_income/webhook/update`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditBankIncomeWebhookUpdateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_USER_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) private String userToken; public static final String SERIALIZED_NAME_ENABLE_WEBHOOKS = "enable_webhooks"; @SerializedName(SERIALIZED_NAME_ENABLE_WEBHOOKS) private Boolean enableWebhooks; public CreditBankIncomeWebhookUpdateRequest 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 CreditBankIncomeWebhookUpdateRequest 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 CreditBankIncomeWebhookUpdateRequest userToken(String userToken) { this.userToken = userToken; return this; } /** * The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the &#x60;user_token&#x60; field. All other customers should use the &#x60;user_id&#x60; instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis). * @return userToken **/ @ApiModelProperty(required = true, value = "The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the `user_token` field. All other customers should use the `user_id` instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis).") public String getUserToken() { return userToken; } public void setUserToken(String userToken) { this.userToken = userToken; } public CreditBankIncomeWebhookUpdateRequest enableWebhooks(Boolean enableWebhooks) { this.enableWebhooks = enableWebhooks; return this; } /** * Whether the user should be enabled for proactive webhook notifications when their income changes * @return enableWebhooks **/ @ApiModelProperty(required = true, value = "Whether the user should be enabled for proactive webhook notifications when their income changes") public Boolean getEnableWebhooks() { return enableWebhooks; } public void setEnableWebhooks(Boolean enableWebhooks) { this.enableWebhooks = enableWebhooks; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditBankIncomeWebhookUpdateRequest creditBankIncomeWebhookUpdateRequest = (CreditBankIncomeWebhookUpdateRequest) o; return Objects.equals(this.clientId, creditBankIncomeWebhookUpdateRequest.clientId) && Objects.equals(this.secret, creditBankIncomeWebhookUpdateRequest.secret) && Objects.equals(this.userToken, creditBankIncomeWebhookUpdateRequest.userToken) && Objects.equals(this.enableWebhooks, creditBankIncomeWebhookUpdateRequest.enableWebhooks); } @Override public int hashCode() { return Objects.hash(clientId, secret, userToken, enableWebhooks); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditBankIncomeWebhookUpdateRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" userToken: ").append(toIndentedString(userToken)).append("\n"); sb.append(" enableWebhooks: ").append(toIndentedString(enableWebhooks)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditDocumentMetadata.java
src/main/java/com/plaid/client/model/CreditDocumentMetadata.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Object representing metadata pertaining to the document. */ @ApiModel(description = "Object representing 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 CreditDocumentMetadata { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_DOCUMENT_TYPE = "document_type"; @SerializedName(SERIALIZED_NAME_DOCUMENT_TYPE) private String documentType; public static final String SERIALIZED_NAME_DOWNLOAD_URL = "download_url"; @SerializedName(SERIALIZED_NAME_DOWNLOAD_URL) private String downloadUrl; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private String status; public static final String SERIALIZED_NAME_PAGE_COUNT = "page_count"; @SerializedName(SERIALIZED_NAME_PAGE_COUNT) private Integer pageCount; public static final String SERIALIZED_NAME_ERROR_MESSAGE = "error_message"; @SerializedName(SERIALIZED_NAME_ERROR_MESSAGE) private String errorMessage; public CreditDocumentMetadata name(String name) { this.name = name; return this; } /** * The name of the document. * @return name **/ @ApiModelProperty(required = true, value = "The name of the document.") public String getName() { return name; } public void setName(String name) { this.name = name; } public CreditDocumentMetadata documentType(String documentType) { this.documentType = documentType; return this; } /** * The type of document. &#x60;PAYSTUB&#x60;: A paystub. &#x60;BANK_STATEMENT&#x60;: A bank statement. &#x60;US_TAX_W2&#x60;: A W-2 wage and tax statement provided by a US employer reflecting wages earned by the employee. &#x60;US_MILITARY_ERAS&#x60;: An electronic Retirement Account Statement (eRAS) issued by the US military. &#x60;US_MILITARY_LES&#x60;: A Leave and Earnings Statement (LES) issued by the US military. &#x60;US_MILITARY_CLES&#x60;: A Civilian Leave and Earnings Statement (CLES) issued by the US military. &#x60;GIG&#x60;: Used to indicate that the income is related to gig work. Does not necessarily correspond to a specific document type. &#x60;PLAID_GENERATED_PAYSTUB_PDF&#x60;: Used to indicate that the PDF for the paystub was generated by Plaid. &#x60;NONE&#x60;: Used to indicate that there is no underlying document for the data. &#x60;UNKNOWN&#x60;: Document type could not be determined. * @return documentType **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The type of document. `PAYSTUB`: A paystub. `BANK_STATEMENT`: A bank statement. `US_TAX_W2`: A W-2 wage and tax statement provided by a US employer reflecting wages earned by the employee. `US_MILITARY_ERAS`: An electronic Retirement Account Statement (eRAS) issued by the US military. `US_MILITARY_LES`: A Leave and Earnings Statement (LES) issued by the US military. `US_MILITARY_CLES`: A Civilian Leave and Earnings Statement (CLES) issued by the US military. `GIG`: Used to indicate that the income is related to gig work. Does not necessarily correspond to a specific document type. `PLAID_GENERATED_PAYSTUB_PDF`: Used to indicate that the PDF for the paystub was generated by Plaid. `NONE`: Used to indicate that there is no underlying document for the data. `UNKNOWN`: Document type could not be determined.") public String getDocumentType() { return documentType; } public void setDocumentType(String documentType) { this.documentType = documentType; } public CreditDocumentMetadata downloadUrl(String downloadUrl) { this.downloadUrl = downloadUrl; return this; } /** * Signed URL to retrieve the document(s). The payload will be a .zip file containing the document(s). For Payroll Income, the file type of the documents will always be PDF, and the documents may not be available, in which case the field will be &#x60;null&#x60;. If you would like Plaid to generate a PDF if the original is not available, contact your Account Manager. [Example generated pay stub](https://plaid.com/documents/plaid-generated-mock-paystub.pdf). For Document Income, this field will not be &#x60;null&#x60;, and the file type of the underlying document(s) will be the original file type uploaded by the user. For more details on available file types, see the [Document Income](https://plaid.com/docs/income/payroll-income) documentation. This download URL can only be used once and expires after two minutes. To generate a new download URL, call &#x60;/credit/payroll_income/get&#x60; again. * @return downloadUrl **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Signed URL to retrieve the document(s). The payload will be a .zip file containing the document(s). For Payroll Income, the file type of the documents will always be PDF, and the documents may not be available, in which case the field will be `null`. If you would like Plaid to generate a PDF if the original is not available, contact your Account Manager. [Example generated pay stub](https://plaid.com/documents/plaid-generated-mock-paystub.pdf). For Document Income, this field will not be `null`, and the file type of the underlying document(s) will be the original file type uploaded by the user. For more details on available file types, see the [Document Income](https://plaid.com/docs/income/payroll-income) documentation. This download URL can only be used once and expires after two minutes. To generate a new download URL, call `/credit/payroll_income/get` again.") public String getDownloadUrl() { return downloadUrl; } public void setDownloadUrl(String downloadUrl) { this.downloadUrl = downloadUrl; } public CreditDocumentMetadata status(String status) { this.status = status; return this; } /** * The processing status of the document. &#x60;PROCESSING_COMPLETE&#x60;: The document was successfully processed. &#x60;DOCUMENT_ERROR&#x60;: The document could not be processed. Possible causes include: The document was an unacceptable document type such as an offer letter or bank statement, the document image was cropped or blurry, or the document was corrupted. &#x60;UNKNOWN&#x60; or &#x60;null&#x60;: An internal error occurred. If this happens repeatedly, contact support or your Plaid account manager. * @return status **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The processing status of the document. `PROCESSING_COMPLETE`: The document was successfully processed. `DOCUMENT_ERROR`: The document could not be processed. Possible causes include: The document was an unacceptable document type such as an offer letter or bank statement, the document image was cropped or blurry, or the document was corrupted. `UNKNOWN` or `null`: An internal error occurred. If this happens repeatedly, contact support or your Plaid account manager.") public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public CreditDocumentMetadata pageCount(Integer pageCount) { this.pageCount = pageCount; return this; } /** * The number of pages of the uploaded document (if available). * @return pageCount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of pages of the uploaded document (if available).") public Integer getPageCount() { return pageCount; } public void setPageCount(Integer pageCount) { this.pageCount = pageCount; } public CreditDocumentMetadata errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * The reason why a failure occurred during document processing (if available). * @return errorMessage **/ @javax.annotation.Nullable @ApiModelProperty(value = "The reason why a failure occurred during document processing (if available).") public String getErrorMessage() { return errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditDocumentMetadata creditDocumentMetadata = (CreditDocumentMetadata) o; return Objects.equals(this.name, creditDocumentMetadata.name) && Objects.equals(this.documentType, creditDocumentMetadata.documentType) && Objects.equals(this.downloadUrl, creditDocumentMetadata.downloadUrl) && Objects.equals(this.status, creditDocumentMetadata.status) && Objects.equals(this.pageCount, creditDocumentMetadata.pageCount) && Objects.equals(this.errorMessage, creditDocumentMetadata.errorMessage); } @Override public int hashCode() { return Objects.hash(name, documentType, downloadUrl, status, pageCount, errorMessage); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditDocumentMetadata {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" documentType: ").append(toIndentedString(documentType)).append("\n"); sb.append(" downloadUrl: ").append(toIndentedString(downloadUrl)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" pageCount: ").append(toIndentedString(pageCount)).append("\n"); sb.append(" errorMessage: ").append(toIndentedString(errorMessage)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BankTransferSweepGetResponse.java
src/main/java/com/plaid/client/model/BankTransferSweepGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.BankTransferSweep; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * BankTransferSweepGetResponse defines the response schema for &#x60;/bank_transfer/sweep/get&#x60; */ @ApiModel(description = "BankTransferSweepGetResponse defines the response schema for `/bank_transfer/sweep/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BankTransferSweepGetResponse { public static final String SERIALIZED_NAME_SWEEP = "sweep"; @SerializedName(SERIALIZED_NAME_SWEEP) private BankTransferSweep sweep; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public BankTransferSweepGetResponse sweep(BankTransferSweep sweep) { this.sweep = sweep; return this; } /** * Get sweep * @return sweep **/ @ApiModelProperty(required = true, value = "") public BankTransferSweep getSweep() { return sweep; } public void setSweep(BankTransferSweep sweep) { this.sweep = sweep; } public BankTransferSweepGetResponse 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; } BankTransferSweepGetResponse bankTransferSweepGetResponse = (BankTransferSweepGetResponse) o; return Objects.equals(this.sweep, bankTransferSweepGetResponse.sweep) && Objects.equals(this.requestId, bankTransferSweepGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(sweep, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BankTransferSweepGetResponse {\n"); sb.append(" sweep: ").append(toIndentedString(sweep)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraCheckReportFailedWebhook.java
src/main/java/com/plaid/client/model/CraCheckReportFailedWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 a Check Report has failed to generate */ @ApiModel(description = "Fired when a Check Report has failed to generate") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCheckReportFailedWebhook { 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_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public CraCheckReportFailedWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;CHECK_REPORT&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`CHECK_REPORT`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public CraCheckReportFailedWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;CHECK_REPORT_FAILED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`CHECK_REPORT_FAILED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public CraCheckReportFailedWebhook 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 CraCheckReportFailedWebhook 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; } CraCheckReportFailedWebhook craCheckReportFailedWebhook = (CraCheckReportFailedWebhook) o; return Objects.equals(this.webhookType, craCheckReportFailedWebhook.webhookType) && Objects.equals(this.webhookCode, craCheckReportFailedWebhook.webhookCode) && Objects.equals(this.userId, craCheckReportFailedWebhook.userId) && Objects.equals(this.environment, craCheckReportFailedWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, userId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportFailedWebhook {\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(" 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/ProcessorTokenPermissionsGetRequest.java
src/main/java/com/plaid/client/model/ProcessorTokenPermissionsGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * ProcessorTokenPermissionsGetRequest defines the request schema for &#x60;/processor/token/permissions/get&#x60; */ @ApiModel(description = "ProcessorTokenPermissionsGetRequest defines the request schema for `/processor/token/permissions/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorTokenPermissionsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_PROCESSOR_TOKEN = "processor_token"; @SerializedName(SERIALIZED_NAME_PROCESSOR_TOKEN) private String processorToken; public ProcessorTokenPermissionsGetRequest 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 ProcessorTokenPermissionsGetRequest 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 ProcessorTokenPermissionsGetRequest processorToken(String processorToken) { this.processorToken = processorToken; return this; } /** * The processor token obtained from the Plaid integration partner. Processor tokens are in the format: &#x60;processor-&lt;environment&gt;-&lt;identifier&gt;&#x60; * @return processorToken **/ @ApiModelProperty(required = true, value = "The processor token obtained from the Plaid integration partner. Processor tokens are in the format: `processor-<environment>-<identifier>`") public String getProcessorToken() { return processorToken; } public void setProcessorToken(String processorToken) { this.processorToken = processorToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProcessorTokenPermissionsGetRequest processorTokenPermissionsGetRequest = (ProcessorTokenPermissionsGetRequest) o; return Objects.equals(this.clientId, processorTokenPermissionsGetRequest.clientId) && Objects.equals(this.secret, processorTokenPermissionsGetRequest.secret) && Objects.equals(this.processorToken, processorTokenPermissionsGetRequest.processorToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, processorToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorTokenPermissionsGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" processorToken: ").append(toIndentedString(processorToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BankTransferCreateRequest.java
src/main/java/com/plaid/client/model/BankTransferCreateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.BankTransferNetwork; 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.util.HashMap; import java.util.List; import java.util.Map; /** * Defines the request schema for &#x60;/bank_transfer/create&#x60; */ @ApiModel(description = "Defines the request schema for `/bank_transfer/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BankTransferCreateRequest { 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_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) private String accessToken; public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private BankTransferType type; public static final String SERIALIZED_NAME_NETWORK = "network"; @SerializedName(SERIALIZED_NAME_NETWORK) private BankTransferNetwork network; 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_ACH_CLASS = "ach_class"; @SerializedName(SERIALIZED_NAME_ACH_CLASS) private ACHClass achClass; public static final String SERIALIZED_NAME_USER = "user"; @SerializedName(SERIALIZED_NAME_USER) private BankTransferUser user; 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 = null; public static final String SERIALIZED_NAME_ORIGINATION_ACCOUNT_ID = "origination_account_id"; @SerializedName(SERIALIZED_NAME_ORIGINATION_ACCOUNT_ID) private String originationAccountId; public BankTransferCreateRequest 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 BankTransferCreateRequest 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 BankTransferCreateRequest idempotencyKey(String idempotencyKey) { this.idempotencyKey = idempotencyKey; return this; } /** * A random key provided by the client, per unique bank transfer. Maximum of 50 characters. The API supports idempotency for safely retrying requests without accidentally performing the same operation twice. For example, if a request to create a bank transfer fails due to a network connection error, you can retry the request with the same idempotency key to guarantee that only a single bank transfer is created. * @return idempotencyKey **/ @ApiModelProperty(required = true, value = "A random key provided by the client, per unique bank transfer. Maximum of 50 characters. The API supports idempotency for safely retrying requests without accidentally performing the same operation twice. For example, if a request to create a bank transfer fails due to a network connection error, you can retry the request with the same idempotency key to guarantee that only a single bank transfer is created.") public String getIdempotencyKey() { return idempotencyKey; } public void setIdempotencyKey(String idempotencyKey) { this.idempotencyKey = idempotencyKey; } public BankTransferCreateRequest accessToken(String accessToken) { this.accessToken = accessToken; return this; } /** * The Plaid &#x60;access_token&#x60; for the account that will be debited or credited. * @return accessToken **/ @ApiModelProperty(required = true, value = "The Plaid `access_token` for the account that will be debited or credited.") public String getAccessToken() { return accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; } public BankTransferCreateRequest accountId(String accountId) { this.accountId = accountId; return this; } /** * The Plaid &#x60;account_id&#x60; for the account that will be debited or credited. * @return accountId **/ @ApiModelProperty(required = true, value = "The Plaid `account_id` for the account that will be debited or credited.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public BankTransferCreateRequest 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 BankTransferCreateRequest 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 BankTransferCreateRequest 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 BankTransferCreateRequest isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The currency of the transfer amount – should be set to \&quot;USD\&quot;. * @return isoCurrencyCode **/ @ApiModelProperty(required = true, value = "The currency of the transfer amount – should be set to \"USD\".") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public BankTransferCreateRequest description(String description) { this.description = description; return this; } /** * The transfer description. Maximum of 10 characters. * @return description **/ @ApiModelProperty(required = true, value = "The transfer description. Maximum of 10 characters.") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public BankTransferCreateRequest achClass(ACHClass achClass) { this.achClass = achClass; return this; } /** * Get achClass * @return achClass **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ACHClass getAchClass() { return achClass; } public void setAchClass(ACHClass achClass) { this.achClass = achClass; } public BankTransferCreateRequest 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 BankTransferCreateRequest customTag(String customTag) { this.customTag = customTag; return this; } /** * An arbitrary string provided by the client for storage with the bank transfer. May be up to 100 characters. * @return customTag **/ @javax.annotation.Nullable @ApiModelProperty(value = "An arbitrary string provided by the client for storage with the bank transfer. May be up to 100 characters.") public String getCustomTag() { return customTag; } public void setCustomTag(String customTag) { this.customTag = customTag; } public BankTransferCreateRequest metadata(Map<String, String> metadata) { this.metadata = metadata; return this; } public BankTransferCreateRequest putMetadataItem(String key, String metadataItem) { if (this.metadata == null) { this.metadata = new HashMap<>(); } 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(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 BankTransferCreateRequest originationAccountId(String originationAccountId) { this.originationAccountId = originationAccountId; return this; } /** * Plaid’s unique identifier for the origination account for this transfer. If you have more than one origination account, this value must be specified. Otherwise, this field should be left blank. * @return originationAccountId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Plaid’s unique identifier for the origination account for this transfer. If you have more than one origination account, this value must be specified. Otherwise, this field should be left blank.") public String getOriginationAccountId() { return originationAccountId; } public void setOriginationAccountId(String originationAccountId) { this.originationAccountId = originationAccountId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BankTransferCreateRequest bankTransferCreateRequest = (BankTransferCreateRequest) o; return Objects.equals(this.clientId, bankTransferCreateRequest.clientId) && Objects.equals(this.secret, bankTransferCreateRequest.secret) && Objects.equals(this.idempotencyKey, bankTransferCreateRequest.idempotencyKey) && Objects.equals(this.accessToken, bankTransferCreateRequest.accessToken) && Objects.equals(this.accountId, bankTransferCreateRequest.accountId) && Objects.equals(this.type, bankTransferCreateRequest.type) && Objects.equals(this.network, bankTransferCreateRequest.network) && Objects.equals(this.amount, bankTransferCreateRequest.amount) && Objects.equals(this.isoCurrencyCode, bankTransferCreateRequest.isoCurrencyCode) && Objects.equals(this.description, bankTransferCreateRequest.description) && Objects.equals(this.achClass, bankTransferCreateRequest.achClass) && Objects.equals(this.user, bankTransferCreateRequest.user) && Objects.equals(this.customTag, bankTransferCreateRequest.customTag) && Objects.equals(this.metadata, bankTransferCreateRequest.metadata) && Objects.equals(this.originationAccountId, bankTransferCreateRequest.originationAccountId); } @Override public int hashCode() { return Objects.hash(clientId, secret, idempotencyKey, accessToken, accountId, type, network, amount, isoCurrencyCode, description, achClass, user, customTag, metadata, originationAccountId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BankTransferCreateRequest {\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(" accessToken: ").append(toIndentedString(accessToken)).append("\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" network: ").append(toIndentedString(network)).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(" achClass: ").append(toIndentedString(achClass)).append("\n"); sb.append(" user: ").append(toIndentedString(user)).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("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/VerificationRefreshStatus.java
src/main/java/com/plaid/client/model/VerificationRefreshStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 verification refresh status. One of the following: &#x60;\&quot;VERIFICATION_REFRESH_STATUS_USER_PRESENCE_REQUIRED\&quot;&#x60; User presence is required to refresh an income verification. &#x60;\&quot;VERIFICATION_REFRESH_SUCCESSFUL\&quot;&#x60; The income verification refresh was successful. &#x60;\&quot;VERIFICATION_REFRESH_NOT_FOUND\&quot;&#x60; No new data was found after the income verification refresh. */ @JsonAdapter(VerificationRefreshStatus.Adapter.class) public enum VerificationRefreshStatus { STATUS_USER_PRESENCE_REQUIRED("VERIFICATION_REFRESH_STATUS_USER_PRESENCE_REQUIRED"), SUCCESSFUL("VERIFICATION_REFRESH_SUCCESSFUL"), NOT_FOUND("VERIFICATION_REFRESH_NOT_FOUND"), // 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; VerificationRefreshStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static VerificationRefreshStatus fromValue(String value) { for (VerificationRefreshStatus b : VerificationRefreshStatus.values()) { if (b.value.equals(value)) { return b; } } return VerificationRefreshStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<VerificationRefreshStatus> { @Override public void write(final JsonWriter jsonWriter, final VerificationRefreshStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public VerificationRefreshStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return VerificationRefreshStatus.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/StudentLoanStatus.java
src/main/java/com/plaid/client/model/StudentLoanStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * An object representing the status of the student loan */ @ApiModel(description = "An object representing the status of the student loan") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class StudentLoanStatus { public static final String SERIALIZED_NAME_END_DATE = "end_date"; @SerializedName(SERIALIZED_NAME_END_DATE) private LocalDate endDate; /** * The status type of the student loan */ @JsonAdapter(TypeEnum.Adapter.class) public enum TypeEnum { CANCELLED("cancelled"), CHARGED_OFF("charged off"), CLAIM("claim"), CONSOLIDATED("consolidated"), DEFERMENT("deferment"), DELINQUENT("delinquent"), DISCHARGED("discharged"), EXTENSION("extension"), FORBEARANCE("forbearance"), IN_GRACE("in grace"), IN_MILITARY("in military"), IN_SCHOOL("in school"), NOT_FULLY_DISBURSED("not fully disbursed"), OTHER("other"), PAID_IN_FULL("paid in full"), REFUNDED("refunded"), REPAYMENT("repayment"), TRANSFERRED("transferred"), PENDING_IDR("pending idr"); private String value; TypeEnum(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TypeEnum fromValue(String value) { for (TypeEnum b : TypeEnum.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<TypeEnum> { @Override public void write(final JsonWriter jsonWriter, final TypeEnum enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TypeEnum read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TypeEnum.fromValue(value); } } } public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private TypeEnum type; public StudentLoanStatus endDate(LocalDate endDate) { this.endDate = endDate; return this; } /** * The date until which the loan will be in its current status. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). * @return endDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The date until which the loan will be in its current status. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). ") public LocalDate getEndDate() { return endDate; } public void setEndDate(LocalDate endDate) { this.endDate = endDate; } public StudentLoanStatus type(TypeEnum type) { this.type = type; return this; } /** * The status type of the student loan * @return type **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The status type of the student loan") public TypeEnum getType() { return type; } public void setType(TypeEnum type) { this.type = type; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } StudentLoanStatus studentLoanStatus = (StudentLoanStatus) o; return Objects.equals(this.endDate, studentLoanStatus.endDate) && Objects.equals(this.type, studentLoanStatus.type); } @Override public int hashCode() { return Objects.hash(endDate, type); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class StudentLoanStatus {\n"); sb.append(" endDate: ").append(toIndentedString(endDate)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferLedgerWithdrawRequest.java
src/main/java/com/plaid/client/model/TransferLedgerWithdrawRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.TransferNetwork; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the request schema for &#x60;/transfer/ledger/withdraw&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/ledger/withdraw`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferLedgerWithdrawRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_ORIGINATOR_CLIENT_ID = "originator_client_id"; @SerializedName(SERIALIZED_NAME_ORIGINATOR_CLIENT_ID) private String originatorClientId; public static final String SERIALIZED_NAME_FUNDING_ACCOUNT_ID = "funding_account_id"; @SerializedName(SERIALIZED_NAME_FUNDING_ACCOUNT_ID) private String fundingAccountId; public static final String SERIALIZED_NAME_LEDGER_ID = "ledger_id"; @SerializedName(SERIALIZED_NAME_LEDGER_ID) private String ledgerId; public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private String amount; public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) private String description; public static final String SERIALIZED_NAME_IDEMPOTENCY_KEY = "idempotency_key"; @SerializedName(SERIALIZED_NAME_IDEMPOTENCY_KEY) private String idempotencyKey; public static final String SERIALIZED_NAME_NETWORK = "network"; @SerializedName(SERIALIZED_NAME_NETWORK) private TransferNetwork network; public TransferLedgerWithdrawRequest 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 TransferLedgerWithdrawRequest 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 TransferLedgerWithdrawRequest originatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; return this; } /** * Client ID of the customer that owns the Ledger balance. This is so Plaid knows which of your customers to payout or collect funds. Only applicable for [Platform customers](https://plaid.com/docs/transfer/application/#originators-vs-platforms). Do not include if you’re paying out to yourself. * @return originatorClientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Client ID of the customer that owns the Ledger balance. This is so Plaid knows which of your customers to payout or collect funds. Only applicable for [Platform customers](https://plaid.com/docs/transfer/application/#originators-vs-platforms). Do not include if you’re paying out to yourself.") public String getOriginatorClientId() { return originatorClientId; } public void setOriginatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; } public TransferLedgerWithdrawRequest fundingAccountId(String fundingAccountId) { this.fundingAccountId = fundingAccountId; return this; } /** * Specify which funding account to use. Customers can find a list of &#x60;funding_account_id&#x60;s in the Accounts page of the Plaid Dashboard, under the \&quot;Account ID\&quot; column. If this field is left blank, the funding account associated with the specified Ledger will be used. If an &#x60;originator_client_id&#x60; is specified, the &#x60;funding_account_id&#x60; must belong to the specified originator. * @return fundingAccountId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Specify which funding account to use. Customers can find a list of `funding_account_id`s in the Accounts page of the Plaid Dashboard, under the \"Account ID\" column. If this field is left blank, the funding account associated with the specified Ledger will be used. If an `originator_client_id` is specified, the `funding_account_id` must belong to the specified originator.") public String getFundingAccountId() { return fundingAccountId; } public void setFundingAccountId(String fundingAccountId) { this.fundingAccountId = fundingAccountId; } public TransferLedgerWithdrawRequest ledgerId(String ledgerId) { this.ledgerId = ledgerId; return this; } /** * Specify which ledger balance to withdraw from. Customers can find a list of &#x60;ledger_id&#x60;s in the Accounts page of your Plaid Dashboard. If this field is left blank, this will default to id of the default ledger balance. * @return ledgerId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Specify which ledger balance to withdraw from. Customers can find a list of `ledger_id`s in the Accounts page of your Plaid Dashboard. If this field is left blank, this will default to id of the default ledger balance.") public String getLedgerId() { return ledgerId; } public void setLedgerId(String ledgerId) { this.ledgerId = ledgerId; } public TransferLedgerWithdrawRequest amount(String amount) { this.amount = amount; return this; } /** * A positive amount of how much will be withdrawn from the ledger balance (decimal string with two digits of precision e.g. \&quot;5.50\&quot;). * @return amount **/ @ApiModelProperty(required = true, value = "A positive amount of how much will be withdrawn from the ledger balance (decimal string with two digits of precision e.g. \"5.50\").") public String getAmount() { return amount; } public void setAmount(String amount) { this.amount = amount; } public TransferLedgerWithdrawRequest description(String description) { this.description = description; return this; } /** * The description of the deposit that will be passed to the receiving bank (up to 10 characters). Note that banks utilize this field differently, and may or may not show it on the bank statement. * @return description **/ @javax.annotation.Nullable @ApiModelProperty(value = "The description of the deposit that will be passed to the receiving bank (up to 10 characters). Note that banks utilize this field differently, and may or may not show it on the bank statement.") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public TransferLedgerWithdrawRequest idempotencyKey(String idempotencyKey) { this.idempotencyKey = idempotencyKey; return this; } /** * A unique key provided by the client, per unique ledger withdraw. Maximum of 50 characters. The API supports idempotency for safely retrying the request without accidentally performing the same operation twice. For example, if a request to create a ledger withdraw fails due to a network connection error, you can retry the request with the same idempotency key to guarantee that only a single withdraw is created. * @return idempotencyKey **/ @ApiModelProperty(required = true, value = "A unique key provided by the client, per unique ledger withdraw. Maximum of 50 characters. The API supports idempotency for safely retrying the request without accidentally performing the same operation twice. For example, if a request to create a ledger withdraw fails due to a network connection error, you can retry the request with the same idempotency key to guarantee that only a single withdraw is created.") public String getIdempotencyKey() { return idempotencyKey; } public void setIdempotencyKey(String idempotencyKey) { this.idempotencyKey = idempotencyKey; } public TransferLedgerWithdrawRequest network(TransferNetwork network) { this.network = network; return this; } /** * Get network * @return network **/ @ApiModelProperty(required = true, value = "") public TransferNetwork getNetwork() { return network; } public void setNetwork(TransferNetwork network) { this.network = network; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferLedgerWithdrawRequest transferLedgerWithdrawRequest = (TransferLedgerWithdrawRequest) o; return Objects.equals(this.clientId, transferLedgerWithdrawRequest.clientId) && Objects.equals(this.secret, transferLedgerWithdrawRequest.secret) && Objects.equals(this.originatorClientId, transferLedgerWithdrawRequest.originatorClientId) && Objects.equals(this.fundingAccountId, transferLedgerWithdrawRequest.fundingAccountId) && Objects.equals(this.ledgerId, transferLedgerWithdrawRequest.ledgerId) && Objects.equals(this.amount, transferLedgerWithdrawRequest.amount) && Objects.equals(this.description, transferLedgerWithdrawRequest.description) && Objects.equals(this.idempotencyKey, transferLedgerWithdrawRequest.idempotencyKey) && Objects.equals(this.network, transferLedgerWithdrawRequest.network); } @Override public int hashCode() { return Objects.hash(clientId, secret, originatorClientId, fundingAccountId, ledgerId, amount, description, idempotencyKey, network); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferLedgerWithdrawRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" originatorClientId: ").append(toIndentedString(originatorClientId)).append("\n"); sb.append(" fundingAccountId: ").append(toIndentedString(fundingAccountId)).append("\n"); sb.append(" ledgerId: ").append(toIndentedString(ledgerId)).append("\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" description: ").append(toIndentedString(description)).append("\n"); sb.append(" idempotencyKey: ").append(toIndentedString(idempotencyKey)).append("\n"); sb.append(" network: ").append(toIndentedString(network)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/InstitutionsGetResponse.java
src/main/java/com/plaid/client/model/InstitutionsGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.Institution; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * InstitutionsGetResponse defines the response schema for &#x60;/institutions/get&#x60; */ @ApiModel(description = "InstitutionsGetResponse defines the response schema for `/institutions/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InstitutionsGetResponse { public static final String SERIALIZED_NAME_INSTITUTIONS = "institutions"; @SerializedName(SERIALIZED_NAME_INSTITUTIONS) private List<Institution> institutions = new ArrayList<>(); public static final String SERIALIZED_NAME_TOTAL = "total"; @SerializedName(SERIALIZED_NAME_TOTAL) private Integer total; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public InstitutionsGetResponse institutions(List<Institution> institutions) { this.institutions = institutions; return this; } public InstitutionsGetResponse addInstitutionsItem(Institution institutionsItem) { this.institutions.add(institutionsItem); return this; } /** * A list of Plaid institutions * @return institutions **/ @ApiModelProperty(required = true, value = "A list of Plaid institutions") public List<Institution> getInstitutions() { return institutions; } public void setInstitutions(List<Institution> institutions) { this.institutions = institutions; } public InstitutionsGetResponse total(Integer total) { this.total = total; return this; } /** * The total number of institutions available via this endpoint * @return total **/ @ApiModelProperty(required = true, value = "The total number of institutions available via this endpoint") public Integer getTotal() { return total; } public void setTotal(Integer total) { this.total = total; } public InstitutionsGetResponse 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; } InstitutionsGetResponse institutionsGetResponse = (InstitutionsGetResponse) o; return Objects.equals(this.institutions, institutionsGetResponse.institutions) && Objects.equals(this.total, institutionsGetResponse.total) && Objects.equals(this.requestId, institutionsGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(institutions, total, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InstitutionsGetResponse {\n"); sb.append(" institutions: ").append(toIndentedString(institutions)).append("\n"); sb.append(" total: ").append(toIndentedString(total)).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/IdentityDefaultUpdateWebhook.java
src/main/java/com/plaid/client/model/IdentityDefaultUpdateWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.IdentityUpdateTypes; import com.plaid.client.model.PlaidError; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.HashMap; import java.util.List; import java.util.Map; /** * Fired when a change to identity data has been detected on an Item. Items are checked for identity updates every 30-90 days. We recommend that upon receiving this webhook you make another call to &#x60;/identity/get&#x60; to fetch the user&#39;s latest identity data. */ @ApiModel(description = "Fired when a change to identity data has been detected on an Item. Items are checked for identity updates every 30-90 days. We recommend that upon receiving this webhook you make another call to `/identity/get` to fetch the user's latest identity data.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityDefaultUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_ACCOUNT_IDS_WITH_UPDATED_IDENTITY = "account_ids_with_updated_identity"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS_WITH_UPDATED_IDENTITY) private Map<String, List<IdentityUpdateTypes>> accountIdsWithUpdatedIdentity = new HashMap<>(); public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private PlaidError error; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public IdentityDefaultUpdateWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;IDENTITY&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`IDENTITY`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public IdentityDefaultUpdateWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;DEFAULT_UPDATE&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`DEFAULT_UPDATE`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public IdentityDefaultUpdateWebhook 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 IdentityDefaultUpdateWebhook accountIdsWithUpdatedIdentity(Map<String, List<IdentityUpdateTypes>> accountIdsWithUpdatedIdentity) { this.accountIdsWithUpdatedIdentity = accountIdsWithUpdatedIdentity; return this; } public IdentityDefaultUpdateWebhook putAccountIdsWithUpdatedIdentityItem(String key, List<IdentityUpdateTypes> accountIdsWithUpdatedIdentityItem) { this.accountIdsWithUpdatedIdentity.put(key, accountIdsWithUpdatedIdentityItem); return this; } /** * An object with keys of &#x60;account_id&#x60;&#39;s that are mapped to their respective identity attributes that changed. Example: &#x60;{ \&quot;XMBvvyMGQ1UoLbKByoMqH3nXMj84ALSdE5B58\&quot;: [\&quot;PHONES\&quot;] }&#x60; * @return accountIdsWithUpdatedIdentity **/ @ApiModelProperty(required = true, value = "An object with keys of `account_id`'s that are mapped to their respective identity attributes that changed. Example: `{ \"XMBvvyMGQ1UoLbKByoMqH3nXMj84ALSdE5B58\": [\"PHONES\"] }` ") public Map<String, List<IdentityUpdateTypes>> getAccountIdsWithUpdatedIdentity() { return accountIdsWithUpdatedIdentity; } public void setAccountIdsWithUpdatedIdentity(Map<String, List<IdentityUpdateTypes>> accountIdsWithUpdatedIdentity) { this.accountIdsWithUpdatedIdentity = accountIdsWithUpdatedIdentity; } public IdentityDefaultUpdateWebhook 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 IdentityDefaultUpdateWebhook 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; } IdentityDefaultUpdateWebhook identityDefaultUpdateWebhook = (IdentityDefaultUpdateWebhook) o; return Objects.equals(this.webhookType, identityDefaultUpdateWebhook.webhookType) && Objects.equals(this.webhookCode, identityDefaultUpdateWebhook.webhookCode) && Objects.equals(this.itemId, identityDefaultUpdateWebhook.itemId) && Objects.equals(this.accountIdsWithUpdatedIdentity, identityDefaultUpdateWebhook.accountIdsWithUpdatedIdentity) && Objects.equals(this.error, identityDefaultUpdateWebhook.error) && Objects.equals(this.environment, identityDefaultUpdateWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, itemId, accountIdsWithUpdatedIdentity, error, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityDefaultUpdateWebhook {\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(" accountIdsWithUpdatedIdentity: ").append(toIndentedString(accountIdsWithUpdatedIdentity)).append("\n"); sb.append(" error: ").append(toIndentedString(error)).append("\n"); sb.append(" environment: ").append(toIndentedString(environment)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/OAuthIntrospectResponse.java
src/main/java/com/plaid/client/model/OAuthIntrospectResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * OAuth token introspect response */ @ApiModel(description = "OAuth token introspect response") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class OAuthIntrospectResponse { public static final String SERIALIZED_NAME_ACTIVE = "active"; @SerializedName(SERIALIZED_NAME_ACTIVE) private Boolean active; public static final String SERIALIZED_NAME_SCOPE = "scope"; @SerializedName(SERIALIZED_NAME_SCOPE) private String scope; public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_EXP = "exp"; @SerializedName(SERIALIZED_NAME_EXP) private Integer exp; public static final String SERIALIZED_NAME_IAT = "iat"; @SerializedName(SERIALIZED_NAME_IAT) private Integer iat; public static final String SERIALIZED_NAME_SUB = "sub"; @SerializedName(SERIALIZED_NAME_SUB) private String sub; public static final String SERIALIZED_NAME_AUD = "aud"; @SerializedName(SERIALIZED_NAME_AUD) private String aud; public static final String SERIALIZED_NAME_ISS = "iss"; @SerializedName(SERIALIZED_NAME_ISS) private String iss; public static final String SERIALIZED_NAME_TOKEN_TYPE = "token_type"; @SerializedName(SERIALIZED_NAME_TOKEN_TYPE) private String tokenType; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public OAuthIntrospectResponse active(Boolean active) { this.active = active; return this; } /** * Boolean indicator of whether or not the presented token is currently active. A &#x60;true&#x60; value indicates that the token has been issued, has not been revoked, and is within the time window of validity. * @return active **/ @ApiModelProperty(required = true, value = "Boolean indicator of whether or not the presented token is currently active. A `true` value indicates that the token has been issued, has not been revoked, and is within the time window of validity.") public Boolean getActive() { return active; } public void setActive(Boolean active) { this.active = active; } public OAuthIntrospectResponse scope(String scope) { this.scope = scope; return this; } /** * A JSON string containing a space-separated list of scopes associated with this token, in the format described in [https://datatracker.ietf.org/doc/html/rfc6749#section-3.3](https://datatracker.ietf.org/doc/html/rfc6749#section-3.3). Currently accepted values are: &#x60;user:read&#x60; allows reading user data. &#x60;user:write&#x60; allows writing user data. &#x60;exchange&#x60; allows exchanging a token using the &#x60;urn:plaid:params:oauth:user-token&#x60; grant type. &#x60;mcp:dashboard&#x60; allows access to the MCP dashboard server. * @return scope **/ @javax.annotation.Nullable @ApiModelProperty(example = "user:read user:write exchange", value = "A JSON string containing a space-separated list of scopes associated with this token, in the format described in [https://datatracker.ietf.org/doc/html/rfc6749#section-3.3](https://datatracker.ietf.org/doc/html/rfc6749#section-3.3). Currently accepted values are: `user:read` allows reading user data. `user:write` allows writing user data. `exchange` allows exchanging a token using the `urn:plaid:params:oauth:user-token` grant type. `mcp:dashboard` allows access to the MCP dashboard server.") public String getScope() { return scope; } public void setScope(String scope) { this.scope = scope; } public OAuthIntrospectResponse 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 OAuthIntrospectResponse exp(Integer exp) { this.exp = exp; return this; } /** * Expiration time as UNIX timestamp since January 1 1970 UTC * @return exp **/ @javax.annotation.Nullable @ApiModelProperty(example = "1670000000", value = "Expiration time as UNIX timestamp since January 1 1970 UTC") public Integer getExp() { return exp; } public void setExp(Integer exp) { this.exp = exp; } public OAuthIntrospectResponse iat(Integer iat) { this.iat = iat; return this; } /** * Issued at time as UNIX timestamp since January 1 1970 UTC * @return iat **/ @javax.annotation.Nullable @ApiModelProperty(example = "1670000000", value = "Issued at time as UNIX timestamp since January 1 1970 UTC") public Integer getIat() { return iat; } public void setIat(Integer iat) { this.iat = iat; } public OAuthIntrospectResponse sub(String sub) { this.sub = sub; return this; } /** * Subject of the token * @return sub **/ @javax.annotation.Nullable @ApiModelProperty(example = "68028ce48d2b0dec68747f6c", value = "Subject of the token") public String getSub() { return sub; } public void setSub(String sub) { this.sub = sub; } public OAuthIntrospectResponse aud(String aud) { this.aud = aud; return this; } /** * Audience of the token * @return aud **/ @javax.annotation.Nullable @ApiModelProperty(example = "https://production.plaid.com", value = "Audience of the token") public String getAud() { return aud; } public void setAud(String aud) { this.aud = aud; } public OAuthIntrospectResponse iss(String iss) { this.iss = iss; return this; } /** * Issuer of the token * @return iss **/ @javax.annotation.Nullable @ApiModelProperty(example = "https://production.plaid.com", value = "Issuer of the token") public String getIss() { return iss; } public void setIss(String iss) { this.iss = iss; } public OAuthIntrospectResponse tokenType(String tokenType) { this.tokenType = tokenType; return this; } /** * Type of the token * @return tokenType **/ @javax.annotation.Nullable @ApiModelProperty(example = "Bearer", value = "Type of the token") public String getTokenType() { return tokenType; } public void setTokenType(String tokenType) { this.tokenType = tokenType; } public OAuthIntrospectResponse userId(String userId) { this.userId = userId; return this; } /** * User ID of the token * @return userId **/ @javax.annotation.Nullable @ApiModelProperty(example = "wz666MBjYWTp2PDzzggYhM6oWWmBb", value = "User ID of the token") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public OAuthIntrospectResponse 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; } OAuthIntrospectResponse oauthIntrospectResponse = (OAuthIntrospectResponse) o; return Objects.equals(this.active, oauthIntrospectResponse.active) && Objects.equals(this.scope, oauthIntrospectResponse.scope) && Objects.equals(this.clientId, oauthIntrospectResponse.clientId) && Objects.equals(this.exp, oauthIntrospectResponse.exp) && Objects.equals(this.iat, oauthIntrospectResponse.iat) && Objects.equals(this.sub, oauthIntrospectResponse.sub) && Objects.equals(this.aud, oauthIntrospectResponse.aud) && Objects.equals(this.iss, oauthIntrospectResponse.iss) && Objects.equals(this.tokenType, oauthIntrospectResponse.tokenType) && Objects.equals(this.userId, oauthIntrospectResponse.userId) && Objects.equals(this.requestId, oauthIntrospectResponse.requestId); } @Override public int hashCode() { return Objects.hash(active, scope, clientId, exp, iat, sub, aud, iss, tokenType, userId, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class OAuthIntrospectResponse {\n"); sb.append(" active: ").append(toIndentedString(active)).append("\n"); sb.append(" scope: ").append(toIndentedString(scope)).append("\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" exp: ").append(toIndentedString(exp)).append("\n"); sb.append(" iat: ").append(toIndentedString(iat)).append("\n"); sb.append(" sub: ").append(toIndentedString(sub)).append("\n"); sb.append(" aud: ").append(toIndentedString(aud)).append("\n"); sb.append(" iss: ").append(toIndentedString(iss)).append("\n"); sb.append(" tokenType: ").append(toIndentedString(tokenType)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).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/ClientProvidedTransaction.java
src/main/java/com/plaid/client/model/ClientProvidedTransaction.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.ClientProvidedTransactionLocation; import com.plaid.client.model.EnrichTransactionDirection; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * A client-provided transaction for Plaid to enrich. */ @ApiModel(description = "A client-provided transaction for Plaid to enrich.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ClientProvidedTransaction { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) private String id; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id"; @SerializedName(SERIALIZED_NAME_CLIENT_USER_ID) private String clientUserId; public static final String SERIALIZED_NAME_CLIENT_ACCOUNT_ID = "client_account_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ACCOUNT_ID) private String clientAccountId; public static final String SERIALIZED_NAME_ACCOUNT_TYPE = "account_type"; @SerializedName(SERIALIZED_NAME_ACCOUNT_TYPE) private String accountType; public static final String SERIALIZED_NAME_ACCOUNT_SUBTYPE = "account_subtype"; @SerializedName(SERIALIZED_NAME_ACCOUNT_SUBTYPE) private String accountSubtype; public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) private String description; public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private Double amount; public static final String SERIALIZED_NAME_DIRECTION = "direction"; @SerializedName(SERIALIZED_NAME_DIRECTION) private EnrichTransactionDirection direction; 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_LOCATION = "location"; @SerializedName(SERIALIZED_NAME_LOCATION) private ClientProvidedTransactionLocation location; public static final String SERIALIZED_NAME_MCC = "mcc"; @SerializedName(SERIALIZED_NAME_MCC) private String mcc; public static final String SERIALIZED_NAME_DATE_POSTED = "date_posted"; @SerializedName(SERIALIZED_NAME_DATE_POSTED) private LocalDate datePosted; public ClientProvidedTransaction id(String id) { this.id = id; return this; } /** * A unique ID for the transaction used to help you tie data back to your systems. * @return id **/ @ApiModelProperty(required = true, value = "A unique ID for the transaction used to help you tie data back to your systems.") public String getId() { return id; } public void setId(String id) { this.id = id; } public ClientProvidedTransaction userId(String userId) { this.userId = userId; return this; } /** * The Plaid generated ID that identifies the end user for whom you would like to enrich transactions. * @return userId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The Plaid generated ID that identifies the end user for whom you would like to enrich transactions.") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public ClientProvidedTransaction clientUserId(String clientUserId) { this.clientUserId = clientUserId; return this; } /** * A unique user id used to group transactions for a given user, as a unique identifier 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;. * @return clientUserId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique user id used to group transactions for a given user, as a unique identifier from your application. 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 ClientProvidedTransaction clientAccountId(String clientAccountId) { this.clientAccountId = clientAccountId; return this; } /** * A unique account id used to group transactions for a given account, as a unique identifier from your application. Personally identifiable information, such as an email address or phone number, should not be used in the &#x60;client_account_id&#x60;. * @return clientAccountId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique account id used to group transactions for a given account, as a unique identifier from your application. Personally identifiable information, such as an email address or phone number, should not be used in the `client_account_id`.") public String getClientAccountId() { return clientAccountId; } public void setClientAccountId(String clientAccountId) { this.clientAccountId = clientAccountId; } public ClientProvidedTransaction accountType(String accountType) { this.accountType = accountType; return this; } /** * The account type associated with the transaction. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema). * @return accountType **/ @javax.annotation.Nullable @ApiModelProperty(value = "The account type associated with the transaction. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema).") public String getAccountType() { return accountType; } public void setAccountType(String accountType) { this.accountType = accountType; } public ClientProvidedTransaction accountSubtype(String accountSubtype) { this.accountSubtype = accountSubtype; return this; } /** * The account subtype associated with the transaction. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema). * @return accountSubtype **/ @javax.annotation.Nullable @ApiModelProperty(value = "The account subtype associated with the transaction. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema).") public String getAccountSubtype() { return accountSubtype; } public void setAccountSubtype(String accountSubtype) { this.accountSubtype = accountSubtype; } public ClientProvidedTransaction description(String description) { this.description = description; return this; } /** * The raw description of the transaction. If you have location data in available an unstructured format, it may be appended to the &#x60;description&#x60; field. * @return description **/ @ApiModelProperty(required = true, value = "The raw description of the transaction. If you have location data in available an unstructured format, it may be appended to the `description` field.") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public ClientProvidedTransaction amount(Double amount) { this.amount = amount; return this; } /** * The absolute value of the transaction (&gt;&#x3D; 0). When testing Enrich, note that &#x60;amount&#x60; data should be realistic. Unrealistic or inaccurate &#x60;amount&#x60; data may result in reduced quality output. * @return amount **/ @ApiModelProperty(required = true, value = "The absolute value of the transaction (>= 0). When testing Enrich, note that `amount` data should be realistic. Unrealistic or inaccurate `amount` data may result in reduced quality output.") public Double getAmount() { return amount; } public void setAmount(Double amount) { this.amount = amount; } public ClientProvidedTransaction direction(EnrichTransactionDirection direction) { this.direction = direction; return this; } /** * Get direction * @return direction **/ @ApiModelProperty(required = true, value = "") public EnrichTransactionDirection getDirection() { return direction; } public void setDirection(EnrichTransactionDirection direction) { this.direction = direction; } public ClientProvidedTransaction isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO-4217 currency code of the transaction e.g. USD. * @return isoCurrencyCode **/ @ApiModelProperty(required = true, value = "The ISO-4217 currency code of the transaction e.g. USD.") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public ClientProvidedTransaction location(ClientProvidedTransactionLocation location) { this.location = location; return this; } /** * Get location * @return location **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ClientProvidedTransactionLocation getLocation() { return location; } public void setLocation(ClientProvidedTransactionLocation location) { this.location = location; } public ClientProvidedTransaction mcc(String mcc) { this.mcc = mcc; return this; } /** * Merchant category codes (MCCs) are four-digit numbers that describe a merchant&#39;s primary business activities. * @return mcc **/ @javax.annotation.Nullable @ApiModelProperty(value = "Merchant category codes (MCCs) are four-digit numbers that describe a merchant's primary business activities.") public String getMcc() { return mcc; } public void setMcc(String mcc) { this.mcc = mcc; } public ClientProvidedTransaction datePosted(LocalDate datePosted) { this.datePosted = datePosted; return this; } /** * The date the transaction posted, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) (YYYY-MM-DD) format. * @return datePosted **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date the transaction posted, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) (YYYY-MM-DD) format.") public LocalDate getDatePosted() { return datePosted; } public void setDatePosted(LocalDate datePosted) { this.datePosted = datePosted; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ClientProvidedTransaction clientProvidedTransaction = (ClientProvidedTransaction) o; return Objects.equals(this.id, clientProvidedTransaction.id) && Objects.equals(this.userId, clientProvidedTransaction.userId) && Objects.equals(this.clientUserId, clientProvidedTransaction.clientUserId) && Objects.equals(this.clientAccountId, clientProvidedTransaction.clientAccountId) && Objects.equals(this.accountType, clientProvidedTransaction.accountType) && Objects.equals(this.accountSubtype, clientProvidedTransaction.accountSubtype) && Objects.equals(this.description, clientProvidedTransaction.description) && Objects.equals(this.amount, clientProvidedTransaction.amount) && Objects.equals(this.direction, clientProvidedTransaction.direction) && Objects.equals(this.isoCurrencyCode, clientProvidedTransaction.isoCurrencyCode) && Objects.equals(this.location, clientProvidedTransaction.location) && Objects.equals(this.mcc, clientProvidedTransaction.mcc) && Objects.equals(this.datePosted, clientProvidedTransaction.datePosted); } @Override public int hashCode() { return Objects.hash(id, userId, clientUserId, clientAccountId, accountType, accountSubtype, description, amount, direction, isoCurrencyCode, location, mcc, datePosted); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ClientProvidedTransaction {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n"); sb.append(" clientAccountId: ").append(toIndentedString(clientAccountId)).append("\n"); sb.append(" accountType: ").append(toIndentedString(accountType)).append("\n"); sb.append(" accountSubtype: ").append(toIndentedString(accountSubtype)).append("\n"); sb.append(" description: ").append(toIndentedString(description)).append("\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" direction: ").append(toIndentedString(direction)).append("\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append(" location: ").append(toIndentedString(location)).append("\n"); sb.append(" mcc: ").append(toIndentedString(mcc)).append("\n"); sb.append(" datePosted: ").append(toIndentedString(datePosted)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorTransactionsSyncResponse.java
src/main/java/com/plaid/client/model/ProcessorTransactionsSyncResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.AccountBaseNullable; import com.plaid.client.model.RemovedTransaction; import com.plaid.client.model.Transaction; import com.plaid.client.model.TransactionsUpdateStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * ProcessorTransactionsSyncResponse defines the response schema for &#x60;/processor/transactions/sync&#x60; */ @ApiModel(description = "ProcessorTransactionsSyncResponse defines the response schema for `/processor/transactions/sync`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorTransactionsSyncResponse { public static final String SERIALIZED_NAME_TRANSACTIONS_UPDATE_STATUS = "transactions_update_status"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS_UPDATE_STATUS) private TransactionsUpdateStatus transactionsUpdateStatus; public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) private AccountBaseNullable account; public static final String SERIALIZED_NAME_ADDED = "added"; @SerializedName(SERIALIZED_NAME_ADDED) private List<Transaction> added = new ArrayList<>(); public static final String SERIALIZED_NAME_MODIFIED = "modified"; @SerializedName(SERIALIZED_NAME_MODIFIED) private List<Transaction> modified = new ArrayList<>(); public static final String SERIALIZED_NAME_REMOVED = "removed"; @SerializedName(SERIALIZED_NAME_REMOVED) private List<RemovedTransaction> removed = new ArrayList<>(); public static final String SERIALIZED_NAME_NEXT_CURSOR = "next_cursor"; @SerializedName(SERIALIZED_NAME_NEXT_CURSOR) private String nextCursor; public static final String SERIALIZED_NAME_HAS_MORE = "has_more"; @SerializedName(SERIALIZED_NAME_HAS_MORE) private Boolean hasMore; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public ProcessorTransactionsSyncResponse transactionsUpdateStatus(TransactionsUpdateStatus transactionsUpdateStatus) { this.transactionsUpdateStatus = transactionsUpdateStatus; return this; } /** * Get transactionsUpdateStatus * @return transactionsUpdateStatus **/ @ApiModelProperty(required = true, value = "") public TransactionsUpdateStatus getTransactionsUpdateStatus() { return transactionsUpdateStatus; } public void setTransactionsUpdateStatus(TransactionsUpdateStatus transactionsUpdateStatus) { this.transactionsUpdateStatus = transactionsUpdateStatus; } public ProcessorTransactionsSyncResponse account(AccountBaseNullable account) { this.account = account; return this; } /** * Get account * @return account **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public AccountBaseNullable getAccount() { return account; } public void setAccount(AccountBaseNullable account) { this.account = account; } public ProcessorTransactionsSyncResponse added(List<Transaction> added) { this.added = added; return this; } public ProcessorTransactionsSyncResponse addAddedItem(Transaction addedItem) { this.added.add(addedItem); return this; } /** * Transactions that have been added to the Item since &#x60;cursor&#x60; ordered by ascending last modified time. * @return added **/ @ApiModelProperty(required = true, value = "Transactions that have been added to the Item since `cursor` ordered by ascending last modified time.") public List<Transaction> getAdded() { return added; } public void setAdded(List<Transaction> added) { this.added = added; } public ProcessorTransactionsSyncResponse modified(List<Transaction> modified) { this.modified = modified; return this; } public ProcessorTransactionsSyncResponse addModifiedItem(Transaction modifiedItem) { this.modified.add(modifiedItem); return this; } /** * Transactions that have been modified on the Item since &#x60;cursor&#x60; ordered by ascending last modified time. * @return modified **/ @ApiModelProperty(required = true, value = "Transactions that have been modified on the Item since `cursor` ordered by ascending last modified time.") public List<Transaction> getModified() { return modified; } public void setModified(List<Transaction> modified) { this.modified = modified; } public ProcessorTransactionsSyncResponse removed(List<RemovedTransaction> removed) { this.removed = removed; return this; } public ProcessorTransactionsSyncResponse addRemovedItem(RemovedTransaction removedItem) { this.removed.add(removedItem); return this; } /** * Transactions that have been removed from the Item since &#x60;cursor&#x60; ordered by ascending last modified time. * @return removed **/ @ApiModelProperty(required = true, value = "Transactions that have been removed from the Item since `cursor` ordered by ascending last modified time.") public List<RemovedTransaction> getRemoved() { return removed; } public void setRemoved(List<RemovedTransaction> removed) { this.removed = removed; } public ProcessorTransactionsSyncResponse nextCursor(String nextCursor) { this.nextCursor = nextCursor; return this; } /** * Cursor used for fetching any future updates after the latest update provided in this response. The cursor obtained after all pages have been pulled (indicated by &#x60;has_more&#x60; being &#x60;false&#x60;) will be valid for at least 1 year. This cursor should be persisted for later calls. If transactions are not yet available, this will be an empty string. * @return nextCursor **/ @ApiModelProperty(required = true, value = "Cursor used for fetching any future updates after the latest update provided in this response. The cursor obtained after all pages have been pulled (indicated by `has_more` being `false`) will be valid for at least 1 year. This cursor should be persisted for later calls. If transactions are not yet available, this will be an empty string.") public String getNextCursor() { return nextCursor; } public void setNextCursor(String nextCursor) { this.nextCursor = nextCursor; } public ProcessorTransactionsSyncResponse hasMore(Boolean hasMore) { this.hasMore = hasMore; return this; } /** * Represents if more than requested count of transaction updates exist. If true, the additional updates can be fetched by making an additional request with &#x60;cursor&#x60; set to &#x60;next_cursor&#x60;. If &#x60;has_more&#x60; is true, it’s important to pull all available pages, to make it less likely for underlying data changes to conflict with pagination. * @return hasMore **/ @ApiModelProperty(required = true, value = "Represents if more than requested count of transaction updates exist. If true, the additional updates can be fetched by making an additional request with `cursor` set to `next_cursor`. If `has_more` is true, it’s important to pull all available pages, to make it less likely for underlying data changes to conflict with pagination.") public Boolean getHasMore() { return hasMore; } public void setHasMore(Boolean hasMore) { this.hasMore = hasMore; } public ProcessorTransactionsSyncResponse 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; } ProcessorTransactionsSyncResponse processorTransactionsSyncResponse = (ProcessorTransactionsSyncResponse) o; return Objects.equals(this.transactionsUpdateStatus, processorTransactionsSyncResponse.transactionsUpdateStatus) && Objects.equals(this.account, processorTransactionsSyncResponse.account) && Objects.equals(this.added, processorTransactionsSyncResponse.added) && Objects.equals(this.modified, processorTransactionsSyncResponse.modified) && Objects.equals(this.removed, processorTransactionsSyncResponse.removed) && Objects.equals(this.nextCursor, processorTransactionsSyncResponse.nextCursor) && Objects.equals(this.hasMore, processorTransactionsSyncResponse.hasMore) && Objects.equals(this.requestId, processorTransactionsSyncResponse.requestId); } @Override public int hashCode() { return Objects.hash(transactionsUpdateStatus, account, added, modified, removed, nextCursor, hasMore, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorTransactionsSyncResponse {\n"); sb.append(" transactionsUpdateStatus: ").append(toIndentedString(transactionsUpdateStatus)).append("\n"); sb.append(" account: ").append(toIndentedString(account)).append("\n"); sb.append(" added: ").append(toIndentedString(added)).append("\n"); sb.append(" modified: ").append(toIndentedString(modified)).append("\n"); sb.append(" removed: ").append(toIndentedString(removed)).append("\n"); sb.append(" nextCursor: ").append(toIndentedString(nextCursor)).append("\n"); sb.append(" hasMore: ").append(toIndentedString(hasMore)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraVoaReportTransactionsInsights.java
src/main/java/com/plaid/client/model/CraVoaReportTransactionsInsights.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.BaseReportTransaction; 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; /** * Transaction data associated with the account. */ @ApiModel(description = "Transaction data associated with the account.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraVoaReportTransactionsInsights { public static final String SERIALIZED_NAME_ALL_TRANSACTIONS = "all_transactions"; @SerializedName(SERIALIZED_NAME_ALL_TRANSACTIONS) private List<BaseReportTransaction> allTransactions = new ArrayList<>(); public static final String SERIALIZED_NAME_END_DATE = "end_date"; @SerializedName(SERIALIZED_NAME_END_DATE) private LocalDate endDate; public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) private LocalDate startDate; public CraVoaReportTransactionsInsights allTransactions(List<BaseReportTransaction> allTransactions) { this.allTransactions = allTransactions; return this; } public CraVoaReportTransactionsInsights addAllTransactionsItem(BaseReportTransaction allTransactionsItem) { this.allTransactions.add(allTransactionsItem); return this; } /** * Transaction history associated with the account. * @return allTransactions **/ @ApiModelProperty(required = true, value = "Transaction history associated with the account.") public List<BaseReportTransaction> getAllTransactions() { return allTransactions; } public void setAllTransactions(List<BaseReportTransaction> allTransactions) { this.allTransactions = allTransactions; } public CraVoaReportTransactionsInsights endDate(LocalDate endDate) { this.endDate = endDate; return this; } /** * The latest timeframe provided by the FI, in an ISO 8601 format (YYYY-MM-DD). * @return endDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The latest timeframe provided by the FI, in an ISO 8601 format (YYYY-MM-DD).") public LocalDate getEndDate() { return endDate; } public void setEndDate(LocalDate endDate) { this.endDate = endDate; } public CraVoaReportTransactionsInsights startDate(LocalDate startDate) { this.startDate = startDate; return this; } /** * The earliest timeframe provided by the FI, in an ISO 8601 format (YYYY-MM-DD). * @return startDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The earliest timeframe provided by the FI, in an ISO 8601 format (YYYY-MM-DD).") public LocalDate getStartDate() { return startDate; } public void setStartDate(LocalDate startDate) { this.startDate = startDate; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraVoaReportTransactionsInsights craVoaReportTransactionsInsights = (CraVoaReportTransactionsInsights) o; return Objects.equals(this.allTransactions, craVoaReportTransactionsInsights.allTransactions) && Objects.equals(this.endDate, craVoaReportTransactionsInsights.endDate) && Objects.equals(this.startDate, craVoaReportTransactionsInsights.startDate); } @Override public int hashCode() { return Objects.hash(allTransactions, endDate, startDate); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraVoaReportTransactionsInsights {\n"); sb.append(" allTransactions: ").append(toIndentedString(allTransactions)).append("\n"); sb.append(" endDate: ").append(toIndentedString(endDate)).append("\n"); sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferStatus.java
src/main/java/com/plaid/client/model/TransferStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The status of the transfer. &#x60;pending&#x60;: A new transfer was created; it is in the pending state. &#x60;posted&#x60;: The transfer has been successfully submitted to the payment network. &#x60;settled&#x60;: The transfer was successfully completed by the payment network. Note that funds from received debits are not available to be moved out of the Ledger until the transfer reaches &#x60;funds_available&#x60; status. For credit transactions, &#x60;settled&#x60; means the funds have been delivered to the receiving bank account. This is the terminal state of a successful credit transfer. &#x60;funds_available&#x60;: Funds from the transfer have been released from hold and applied to the ledger&#39;s available balance. (Only applicable to ACH debits.) This is the terminal state of a successful debit transfer. &#x60;cancelled&#x60;: The transfer was cancelled by the client. This is the terminal state of a cancelled transfer. &#x60;failed&#x60;: The transfer failed, no funds were moved. This is the terminal state of a failed transfer. &#x60;returned&#x60;: A posted transfer was returned. This is the terminal state of a returned transfer. */ @JsonAdapter(TransferStatus.Adapter.class) public enum TransferStatus { PENDING("pending"), POSTED("posted"), SETTLED("settled"), FUNDS_AVAILABLE("funds_available"), CANCELLED("cancelled"), FAILED("failed"), RETURNED("returned"), // 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; TransferStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransferStatus fromValue(String value) { for (TransferStatus b : TransferStatus.values()) { if (b.value.equals(value)) { return b; } } return TransferStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<TransferStatus> { @Override public void write(final JsonWriter jsonWriter, final TransferStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransferStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransferStatus.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/CraNetworkInsightsItem.java
src/main/java/com/plaid/client/model/CraNetworkInsightsItem.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Contains data about the connected Item. */ @ApiModel(description = "Contains data about the connected Item.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraNetworkInsightsItem { 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 CraNetworkInsightsItem institutionId(String institutionId) { this.institutionId = institutionId; return this; } /** * The ID for the institution the user linked. * @return institutionId **/ @ApiModelProperty(required = true, value = "The ID for the institution the user linked.") public String getInstitutionId() { return institutionId; } public void setInstitutionId(String institutionId) { this.institutionId = institutionId; } public CraNetworkInsightsItem institutionName(String institutionName) { this.institutionName = institutionName; return this; } /** * The name of the institution the user linked. * @return institutionName **/ @ApiModelProperty(required = true, value = "The name of the institution the user linked.") public String getInstitutionName() { return institutionName; } public void setInstitutionName(String institutionName) { this.institutionName = institutionName; } public CraNetworkInsightsItem itemId(String itemId) { this.itemId = itemId; return this; } /** * The identifier for the Item. * @return itemId **/ @ApiModelProperty(required = true, value = "The identifier for the Item.") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraNetworkInsightsItem craNetworkInsightsItem = (CraNetworkInsightsItem) o; return Objects.equals(this.institutionId, craNetworkInsightsItem.institutionId) && Objects.equals(this.institutionName, craNetworkInsightsItem.institutionName) && Objects.equals(this.itemId, craNetworkInsightsItem.itemId); } @Override public int hashCode() { return Objects.hash(institutionId, institutionName, itemId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraNetworkInsightsItem {\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/TransferCreditUsageConfiguration.java
src/main/java/com/plaid/client/model/TransferCreditUsageConfiguration.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CreditACHClass; import com.plaid.client.model.OriginatorExpectedTransferFrequency; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Specifies the originator&#39;s expected usage of credits. For all dollar amounts, use a decimal string with two digits of precision e.g. \&quot;10.00\&quot;. This field is required if the originator is expected to process credit transfers. */ @ApiModel(description = "Specifies the originator's expected usage of credits. For all dollar amounts, use a decimal string with two digits of precision e.g. \"10.00\". This field is required if the originator is expected to process credit transfers.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferCreditUsageConfiguration { public static final String SERIALIZED_NAME_EXPECTED_FREQUENCY = "expected_frequency"; @SerializedName(SERIALIZED_NAME_EXPECTED_FREQUENCY) private OriginatorExpectedTransferFrequency expectedFrequency; public static final String SERIALIZED_NAME_EXPECTED_HIGHEST_AMOUNT = "expected_highest_amount"; @SerializedName(SERIALIZED_NAME_EXPECTED_HIGHEST_AMOUNT) private String expectedHighestAmount; public static final String SERIALIZED_NAME_EXPECTED_AVERAGE_AMOUNT = "expected_average_amount"; @SerializedName(SERIALIZED_NAME_EXPECTED_AVERAGE_AMOUNT) private String expectedAverageAmount; public static final String SERIALIZED_NAME_EXPECTED_MONTHLY_AMOUNT = "expected_monthly_amount"; @SerializedName(SERIALIZED_NAME_EXPECTED_MONTHLY_AMOUNT) private String expectedMonthlyAmount; public static final String SERIALIZED_NAME_SEC_CODES = "sec_codes"; @SerializedName(SERIALIZED_NAME_SEC_CODES) private List<CreditACHClass> secCodes = new ArrayList<>(); public TransferCreditUsageConfiguration expectedFrequency(OriginatorExpectedTransferFrequency expectedFrequency) { this.expectedFrequency = expectedFrequency; return this; } /** * Get expectedFrequency * @return expectedFrequency **/ @ApiModelProperty(required = true, value = "") public OriginatorExpectedTransferFrequency getExpectedFrequency() { return expectedFrequency; } public void setExpectedFrequency(OriginatorExpectedTransferFrequency expectedFrequency) { this.expectedFrequency = expectedFrequency; } public TransferCreditUsageConfiguration expectedHighestAmount(String expectedHighestAmount) { this.expectedHighestAmount = expectedHighestAmount; return this; } /** * The originator’s expected highest amount for a single credit transfer. * @return expectedHighestAmount **/ @ApiModelProperty(required = true, value = "The originator’s expected highest amount for a single credit transfer.") public String getExpectedHighestAmount() { return expectedHighestAmount; } public void setExpectedHighestAmount(String expectedHighestAmount) { this.expectedHighestAmount = expectedHighestAmount; } public TransferCreditUsageConfiguration expectedAverageAmount(String expectedAverageAmount) { this.expectedAverageAmount = expectedAverageAmount; return this; } /** * The originator’s expected average amount per credit. * @return expectedAverageAmount **/ @ApiModelProperty(required = true, value = "The originator’s expected average amount per credit.") public String getExpectedAverageAmount() { return expectedAverageAmount; } public void setExpectedAverageAmount(String expectedAverageAmount) { this.expectedAverageAmount = expectedAverageAmount; } public TransferCreditUsageConfiguration expectedMonthlyAmount(String expectedMonthlyAmount) { this.expectedMonthlyAmount = expectedMonthlyAmount; return this; } /** * The originator’s monthly expected ACH credit processing amount for the next 6-12 months. * @return expectedMonthlyAmount **/ @ApiModelProperty(required = true, value = "The originator’s monthly expected ACH credit processing amount for the next 6-12 months.") public String getExpectedMonthlyAmount() { return expectedMonthlyAmount; } public void setExpectedMonthlyAmount(String expectedMonthlyAmount) { this.expectedMonthlyAmount = expectedMonthlyAmount; } public TransferCreditUsageConfiguration secCodes(List<CreditACHClass> secCodes) { this.secCodes = secCodes; return this; } public TransferCreditUsageConfiguration addSecCodesItem(CreditACHClass secCodesItem) { this.secCodes.add(secCodesItem); return this; } /** * Specifies the expected use cases for the originator’s credit transfers. This should be a list that contains one or more of the following codes: &#x60;\&quot;ccd\&quot;&#x60; - Corporate Credit or Debit - fund transfer between two corporate bank accounts &#x60;\&quot;ppd\&quot;&#x60; - Prearranged Payment or Deposit. The transfer is part of a pre-existing relationship with a consumer. Authorization was obtained from the consumer in person via writing, or through online authorization, or via an electronic document signing, e.g. Docusign. For example language for online authorization, see the 2025 Nacha Operating Rules — Section 2.3.2, Authorization of Entries via Electronic Means. Can be used for credits or debits. &#x60;\&quot;web\&quot;&#x60; - Internet-Initiated Entry. The transfer debits a consumer’s bank account. Authorization from the consumer is obtained over the Internet (e.g. a web or mobile application). Can be used for single debits or recurring debits. * @return secCodes **/ @ApiModelProperty(required = true, value = "Specifies the expected use cases for the originator’s credit transfers. This should be a list that contains one or more of the following codes: `\"ccd\"` - Corporate Credit or Debit - fund transfer between two corporate bank accounts `\"ppd\"` - Prearranged Payment or Deposit. The transfer is part of a pre-existing relationship with a consumer. Authorization was obtained from the consumer in person via writing, or through online authorization, or via an electronic document signing, e.g. Docusign. For example language for online authorization, see the 2025 Nacha Operating Rules — Section 2.3.2, Authorization of Entries via Electronic Means. Can be used for credits or debits. `\"web\"` - Internet-Initiated Entry. The transfer debits a consumer’s bank account. Authorization from the consumer is obtained over the Internet (e.g. a web or mobile application). Can be used for single debits or recurring debits.") public List<CreditACHClass> getSecCodes() { return secCodes; } public void setSecCodes(List<CreditACHClass> secCodes) { this.secCodes = secCodes; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferCreditUsageConfiguration transferCreditUsageConfiguration = (TransferCreditUsageConfiguration) o; return Objects.equals(this.expectedFrequency, transferCreditUsageConfiguration.expectedFrequency) && Objects.equals(this.expectedHighestAmount, transferCreditUsageConfiguration.expectedHighestAmount) && Objects.equals(this.expectedAverageAmount, transferCreditUsageConfiguration.expectedAverageAmount) && Objects.equals(this.expectedMonthlyAmount, transferCreditUsageConfiguration.expectedMonthlyAmount) && Objects.equals(this.secCodes, transferCreditUsageConfiguration.secCodes); } @Override public int hashCode() { return Objects.hash(expectedFrequency, expectedHighestAmount, expectedAverageAmount, expectedMonthlyAmount, secCodes); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferCreditUsageConfiguration {\n"); sb.append(" expectedFrequency: ").append(toIndentedString(expectedFrequency)).append("\n"); sb.append(" expectedHighestAmount: ").append(toIndentedString(expectedHighestAmount)).append("\n"); sb.append(" expectedAverageAmount: ").append(toIndentedString(expectedAverageAmount)).append("\n"); sb.append(" expectedMonthlyAmount: ").append(toIndentedString(expectedMonthlyAmount)).append("\n"); sb.append(" secCodes: ").append(toIndentedString(secCodes)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IncomeVerificationCreateRequest.java
src/main/java/com/plaid/client/model/IncomeVerificationCreateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.IncomeVerificationCreateRequestOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * IncomeVerificationCreateRequest defines the request schema for &#x60;/income/verification/create&#x60; */ @ApiModel(description = "IncomeVerificationCreateRequest defines the request schema for `/income/verification/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IncomeVerificationCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_WEBHOOK = "webhook"; @SerializedName(SERIALIZED_NAME_WEBHOOK) private String webhook; public static final String SERIALIZED_NAME_PRECHECK_ID = "precheck_id"; @SerializedName(SERIALIZED_NAME_PRECHECK_ID) private String precheckId; public static final String SERIALIZED_NAME_OPTIONS = "options"; @SerializedName(SERIALIZED_NAME_OPTIONS) private IncomeVerificationCreateRequestOptions options; public IncomeVerificationCreateRequest 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 IncomeVerificationCreateRequest 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 IncomeVerificationCreateRequest webhook(String webhook) { this.webhook = webhook; return this; } /** * The URL endpoint to which Plaid should send webhooks related to the progress of the income verification process. * @return webhook **/ @ApiModelProperty(required = true, value = "The URL endpoint to which Plaid should send webhooks related to the progress of the income verification process.") public String getWebhook() { return webhook; } public void setWebhook(String webhook) { this.webhook = webhook; } public IncomeVerificationCreateRequest precheckId(String precheckId) { this.precheckId = precheckId; return this; } /** * The ID of a precheck created with &#x60;/income/verification/precheck&#x60;. Will be used to improve conversion of the income verification flow. * @return precheckId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ID of a precheck created with `/income/verification/precheck`. Will be used to improve conversion of the income verification flow.") public String getPrecheckId() { return precheckId; } public void setPrecheckId(String precheckId) { this.precheckId = precheckId; } public IncomeVerificationCreateRequest options(IncomeVerificationCreateRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public IncomeVerificationCreateRequestOptions getOptions() { return options; } public void setOptions(IncomeVerificationCreateRequestOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IncomeVerificationCreateRequest incomeVerificationCreateRequest = (IncomeVerificationCreateRequest) o; return Objects.equals(this.clientId, incomeVerificationCreateRequest.clientId) && Objects.equals(this.secret, incomeVerificationCreateRequest.secret) && Objects.equals(this.webhook, incomeVerificationCreateRequest.webhook) && Objects.equals(this.precheckId, incomeVerificationCreateRequest.precheckId) && Objects.equals(this.options, incomeVerificationCreateRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, secret, webhook, precheckId, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IncomeVerificationCreateRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" webhook: ").append(toIndentedString(webhook)).append("\n"); sb.append(" precheckId: ").append(toIndentedString(precheckId)).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/PaymentAmountNullable.java
src/main/java/com/plaid/client/model/PaymentAmountNullable.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.PaymentAmountCurrency; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The amount and currency of a payment */ @ApiModel(description = "The amount and currency of a payment") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentAmountNullable { public static final String SERIALIZED_NAME_CURRENCY = "currency"; @SerializedName(SERIALIZED_NAME_CURRENCY) private PaymentAmountCurrency currency; public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) private Double value; public PaymentAmountNullable currency(PaymentAmountCurrency currency) { this.currency = currency; return this; } /** * Get currency * @return currency **/ @ApiModelProperty(required = true, value = "") public PaymentAmountCurrency getCurrency() { return currency; } public void setCurrency(PaymentAmountCurrency currency) { this.currency = currency; } public PaymentAmountNullable value(Double value) { this.value = value; return this; } /** * The amount of the payment. Must contain at most two digits of precision e.g. &#x60;1.23&#x60;. * minimum: 0.01 * @return value **/ @ApiModelProperty(required = true, value = "The amount of the payment. Must contain at most two digits of precision e.g. `1.23`.") public Double getValue() { return value; } public void setValue(Double value) { this.value = value; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaymentAmountNullable paymentAmountNullable = (PaymentAmountNullable) o; return Objects.equals(this.currency, paymentAmountNullable.currency) && Objects.equals(this.value, paymentAmountNullable.value); } @Override public int hashCode() { return Objects.hash(currency, value); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentAmountNullable {\n"); sb.append(" currency: ").append(toIndentedString(currency)).append("\n"); sb.append(" value: ").append(toIndentedString(value)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckMilitaryInfo.java
src/main/java/com/plaid/client/model/IncomeVerificationPrecheckMilitaryInfo.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Data about military info in the income verification precheck. */ @ApiModel(description = "Data about military info in the income verification precheck.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IncomeVerificationPrecheckMilitaryInfo { public static final String SERIALIZED_NAME_IS_ACTIVE_DUTY = "is_active_duty"; @SerializedName(SERIALIZED_NAME_IS_ACTIVE_DUTY) private Boolean isActiveDuty; public static final String SERIALIZED_NAME_BRANCH = "branch"; @SerializedName(SERIALIZED_NAME_BRANCH) private String branch; public IncomeVerificationPrecheckMilitaryInfo isActiveDuty(Boolean isActiveDuty) { this.isActiveDuty = isActiveDuty; return this; } /** * Is the user currently active duty in the US military * @return isActiveDuty **/ @javax.annotation.Nullable @ApiModelProperty(value = "Is the user currently active duty in the US military") public Boolean getIsActiveDuty() { return isActiveDuty; } public void setIsActiveDuty(Boolean isActiveDuty) { this.isActiveDuty = isActiveDuty; } public IncomeVerificationPrecheckMilitaryInfo branch(String branch) { this.branch = branch; return this; } /** * If the user is currently serving in the US military, the branch of the military in which they are serving Valid values: &#39;AIR FORCE&#39;, &#39;ARMY&#39;, &#39;COAST GUARD&#39;, &#39;MARINES&#39;, &#39;NAVY&#39;, &#39;UNKNOWN&#39; * @return branch **/ @javax.annotation.Nullable @ApiModelProperty(value = "If the user is currently serving in the US military, the branch of the military in which they are serving Valid values: 'AIR FORCE', 'ARMY', 'COAST GUARD', 'MARINES', 'NAVY', 'UNKNOWN'") public String getBranch() { return branch; } public void setBranch(String branch) { this.branch = branch; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IncomeVerificationPrecheckMilitaryInfo incomeVerificationPrecheckMilitaryInfo = (IncomeVerificationPrecheckMilitaryInfo) o; return Objects.equals(this.isActiveDuty, incomeVerificationPrecheckMilitaryInfo.isActiveDuty) && Objects.equals(this.branch, incomeVerificationPrecheckMilitaryInfo.branch); } @Override public int hashCode() { return Objects.hash(isActiveDuty, branch); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IncomeVerificationPrecheckMilitaryInfo {\n"); sb.append(" isActiveDuty: ").append(toIndentedString(isActiveDuty)).append("\n"); sb.append(" branch: ").append(toIndentedString(branch)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramListRequest.java
src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramListRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Request input for listing watchlist screening programs for individuals */ @ApiModel(description = "Request input for listing watchlist screening programs for individuals") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WatchlistScreeningIndividualProgramListRequest { public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_CURSOR = "cursor"; @SerializedName(SERIALIZED_NAME_CURSOR) private String cursor; public WatchlistScreeningIndividualProgramListRequest 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 WatchlistScreeningIndividualProgramListRequest 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 WatchlistScreeningIndividualProgramListRequest cursor(String cursor) { this.cursor = cursor; return this; } /** * An identifier that determines which page of results you receive. * @return cursor **/ @javax.annotation.Nullable @ApiModelProperty(example = "eyJkaXJlY3Rpb24iOiJuZXh0Iiwib2Zmc2V0IjoiMTU5NDM", value = "An identifier that determines which page of results you receive.") public String getCursor() { return cursor; } public void setCursor(String cursor) { this.cursor = cursor; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } WatchlistScreeningIndividualProgramListRequest watchlistScreeningIndividualProgramListRequest = (WatchlistScreeningIndividualProgramListRequest) o; return Objects.equals(this.secret, watchlistScreeningIndividualProgramListRequest.secret) && Objects.equals(this.clientId, watchlistScreeningIndividualProgramListRequest.clientId) && Objects.equals(this.cursor, watchlistScreeningIndividualProgramListRequest.cursor); } @Override public int hashCode() { return Objects.hash(secret, clientId, cursor); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WatchlistScreeningIndividualProgramListRequest {\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" cursor: ").append(toIndentedString(cursor)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkTokenCreateDepositoryFilter.java
src/main/java/com/plaid/client/model/LinkTokenCreateDepositoryFilter.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.DepositoryAccountSubtype; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * A filter to apply to &#x60;depository&#x60;-type accounts */ @ApiModel(description = "A filter to apply to `depository`-type accounts") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkTokenCreateDepositoryFilter { public static final String SERIALIZED_NAME_ACCOUNT_SUBTYPES = "account_subtypes"; @SerializedName(SERIALIZED_NAME_ACCOUNT_SUBTYPES) private List<DepositoryAccountSubtype> accountSubtypes = null; public LinkTokenCreateDepositoryFilter accountSubtypes(List<DepositoryAccountSubtype> accountSubtypes) { this.accountSubtypes = accountSubtypes; return this; } public LinkTokenCreateDepositoryFilter addAccountSubtypesItem(DepositoryAccountSubtype accountSubtypesItem) { if (this.accountSubtypes == null) { this.accountSubtypes = new ArrayList<>(); } this.accountSubtypes.add(accountSubtypesItem); return this; } /** * An array of account subtypes to display in Link. If not specified, all account subtypes will be shown. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema). * @return accountSubtypes **/ @javax.annotation.Nullable @ApiModelProperty(value = "An array of account subtypes to display in Link. If not specified, all account subtypes will be shown. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema). ") public List<DepositoryAccountSubtype> getAccountSubtypes() { return accountSubtypes; } public void setAccountSubtypes(List<DepositoryAccountSubtype> accountSubtypes) { this.accountSubtypes = accountSubtypes; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkTokenCreateDepositoryFilter linkTokenCreateDepositoryFilter = (LinkTokenCreateDepositoryFilter) o; return Objects.equals(this.accountSubtypes, linkTokenCreateDepositoryFilter.accountSubtypes); } @Override public int hashCode() { return Objects.hash(accountSubtypes); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkTokenCreateDepositoryFilter {\n"); sb.append(" accountSubtypes: ").append(toIndentedString(accountSubtypes)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/RiskCheckFacialDuplicate.java
src/main/java/com/plaid/client/model/RiskCheckFacialDuplicate.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Result summary object specifying values for the &#x60;facial_duplicate&#x60; attributes of risk check. */ @ApiModel(description = "Result summary object specifying values for the `facial_duplicate` attributes of risk check.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class RiskCheckFacialDuplicate { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) private String id; public static final String SERIALIZED_NAME_SIMILARITY = "similarity"; @SerializedName(SERIALIZED_NAME_SIMILARITY) private Integer similarity; public static final String SERIALIZED_NAME_MATCHED_AFTER_COMPLETED = "matched_after_completed"; @SerializedName(SERIALIZED_NAME_MATCHED_AFTER_COMPLETED) private Boolean matchedAfterCompleted; public RiskCheckFacialDuplicate id(String id) { this.id = id; return this; } /** * ID of the associated Identity Verification attempt. * @return id **/ @ApiModelProperty(example = "idv_52xR9LKo77r1Np", required = true, value = "ID of the associated Identity Verification attempt.") public String getId() { return id; } public void setId(String id) { this.id = id; } public RiskCheckFacialDuplicate similarity(Integer similarity) { this.similarity = similarity; return this; } /** * Similarity score of the match. Ranges from 0 to 100. * @return similarity **/ @ApiModelProperty(example = "95", required = true, value = "Similarity score of the match. Ranges from 0 to 100.") public Integer getSimilarity() { return similarity; } public void setSimilarity(Integer similarity) { this.similarity = similarity; } public RiskCheckFacialDuplicate matchedAfterCompleted(Boolean matchedAfterCompleted) { this.matchedAfterCompleted = matchedAfterCompleted; return this; } /** * Whether this match occurred after the session was complete. For example, this would be &#x60;true&#x60; if a later session ended up matching this one. * @return matchedAfterCompleted **/ @ApiModelProperty(example = "true", required = true, value = "Whether this match occurred after the session was complete. For example, this would be `true` if a later session ended up matching this one.") public Boolean getMatchedAfterCompleted() { return matchedAfterCompleted; } public void setMatchedAfterCompleted(Boolean matchedAfterCompleted) { this.matchedAfterCompleted = matchedAfterCompleted; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } RiskCheckFacialDuplicate riskCheckFacialDuplicate = (RiskCheckFacialDuplicate) o; return Objects.equals(this.id, riskCheckFacialDuplicate.id) && Objects.equals(this.similarity, riskCheckFacialDuplicate.similarity) && Objects.equals(this.matchedAfterCompleted, riskCheckFacialDuplicate.matchedAfterCompleted); } @Override public int hashCode() { return Objects.hash(id, similarity, matchedAfterCompleted); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class RiskCheckFacialDuplicate {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" similarity: ").append(toIndentedString(similarity)).append("\n"); sb.append(" matchedAfterCompleted: ").append(toIndentedString(matchedAfterCompleted)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorIdentityMatchResponse.java
src/main/java/com/plaid/client/model/ProcessorIdentityMatchResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.AccountIdentityMatchScore; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * ProcessorIdentityMatchResponse defines the response schema for &#x60;/processor/identity/match&#x60; */ @ApiModel(description = "ProcessorIdentityMatchResponse defines the response schema for `/processor/identity/match`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorIdentityMatchResponse { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) private AccountIdentityMatchScore account; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public ProcessorIdentityMatchResponse account(AccountIdentityMatchScore account) { this.account = account; return this; } /** * Get account * @return account **/ @ApiModelProperty(required = true, value = "") public AccountIdentityMatchScore getAccount() { return account; } public void setAccount(AccountIdentityMatchScore account) { this.account = account; } public ProcessorIdentityMatchResponse 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; } ProcessorIdentityMatchResponse processorIdentityMatchResponse = (ProcessorIdentityMatchResponse) o; return Objects.equals(this.account, processorIdentityMatchResponse.account) && Objects.equals(this.requestId, processorIdentityMatchResponse.requestId); } @Override public int hashCode() { return Objects.hash(account, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorIdentityMatchResponse {\n"); sb.append(" account: ").append(toIndentedString(account)).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/PartnerEndCustomerCRAPurposes.java
src/main/java/com/plaid/client/model/PartnerEndCustomerCRAPurposes.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.PartnerEndCustomerCRAUseCases; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * A map of permissible purposes to their corresponding use cases. */ @ApiModel(description = "A map of permissible purposes to their corresponding use cases.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PartnerEndCustomerCRAPurposes { public static final String SERIALIZED_NAME_W_R_I_T_T_E_N_I_N_S_T_R_U_C_T_I_O_N = "WRITTEN_INSTRUCTION"; @SerializedName(SERIALIZED_NAME_W_R_I_T_T_E_N_I_N_S_T_R_U_C_T_I_O_N) private PartnerEndCustomerCRAUseCases WRITTEN_INSTRUCTION; public static final String SERIALIZED_NAME_E_X_T_E_N_S_I_O_N_O_F_C_R_E_D_I_T_O_R_A_C_C_O_U_N_T_R_E_V_I_E_W = "EXTENSION_OF_CREDIT_OR_ACCOUNT_REVIEW"; @SerializedName(SERIALIZED_NAME_E_X_T_E_N_S_I_O_N_O_F_C_R_E_D_I_T_O_R_A_C_C_O_U_N_T_R_E_V_I_E_W) private PartnerEndCustomerCRAUseCases EXTENSION_OF_CREDIT_OR_ACCOUNT_REVIEW; public static final String SERIALIZED_NAME_E_M_P_L_O_Y_M_E_N_T = "EMPLOYMENT"; @SerializedName(SERIALIZED_NAME_E_M_P_L_O_Y_M_E_N_T) private PartnerEndCustomerCRAUseCases EMPLOYMENT; public static final String SERIALIZED_NAME_I_N_S_U_R_A_N_C_E_U_N_D_E_R_W_R_I_T_I_N_G = "INSURANCE_UNDERWRITING"; @SerializedName(SERIALIZED_NAME_I_N_S_U_R_A_N_C_E_U_N_D_E_R_W_R_I_T_I_N_G) private PartnerEndCustomerCRAUseCases INSURANCE_UNDERWRITING; public static final String SERIALIZED_NAME_L_I_C_E_N_S_E_E_L_I_G_I_B_I_L_I_T_Y = "LICENSE_ELIGIBILITY"; @SerializedName(SERIALIZED_NAME_L_I_C_E_N_S_E_E_L_I_G_I_B_I_L_I_T_Y) private PartnerEndCustomerCRAUseCases LICENSE_ELIGIBILITY; public static final String SERIALIZED_NAME_R_I_S_K_A_S_S_E_S_S_M_E_N_T = "RISK_ASSESSMENT"; @SerializedName(SERIALIZED_NAME_R_I_S_K_A_S_S_E_S_S_M_E_N_T) private PartnerEndCustomerCRAUseCases RISK_ASSESSMENT; public static final String SERIALIZED_NAME_B_U_S_I_N_E_S_S_N_E_E_D_T_R_A_N_S_A_C_T_I_O_N = "BUSINESS_NEED_TRANSACTION"; @SerializedName(SERIALIZED_NAME_B_U_S_I_N_E_S_S_N_E_E_D_T_R_A_N_S_A_C_T_I_O_N) private PartnerEndCustomerCRAUseCases BUSINESS_NEED_TRANSACTION; public static final String SERIALIZED_NAME_B_U_S_I_N_E_S_S_N_E_E_D_A_C_C_O_U_N_T_R_E_V_I_E_W = "BUSINESS_NEED_ACCOUNT_REVIEW"; @SerializedName(SERIALIZED_NAME_B_U_S_I_N_E_S_S_N_E_E_D_A_C_C_O_U_N_T_R_E_V_I_E_W) private PartnerEndCustomerCRAUseCases BUSINESS_NEED_ACCOUNT_REVIEW; public PartnerEndCustomerCRAPurposes WRITTEN_INSTRUCTION(PartnerEndCustomerCRAUseCases WRITTEN_INSTRUCTION) { this.WRITTEN_INSTRUCTION = WRITTEN_INSTRUCTION; return this; } /** * Get WRITTEN_INSTRUCTION * @return WRITTEN_INSTRUCTION **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PartnerEndCustomerCRAUseCases getWRITTENINSTRUCTION() { return WRITTEN_INSTRUCTION; } public void setWRITTENINSTRUCTION(PartnerEndCustomerCRAUseCases WRITTEN_INSTRUCTION) { this.WRITTEN_INSTRUCTION = WRITTEN_INSTRUCTION; } public PartnerEndCustomerCRAPurposes EXTENSION_OF_CREDIT_OR_ACCOUNT_REVIEW(PartnerEndCustomerCRAUseCases EXTENSION_OF_CREDIT_OR_ACCOUNT_REVIEW) { this.EXTENSION_OF_CREDIT_OR_ACCOUNT_REVIEW = EXTENSION_OF_CREDIT_OR_ACCOUNT_REVIEW; return this; } /** * Get EXTENSION_OF_CREDIT_OR_ACCOUNT_REVIEW * @return EXTENSION_OF_CREDIT_OR_ACCOUNT_REVIEW **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PartnerEndCustomerCRAUseCases getEXTENSIONOFCREDITORACCOUNTREVIEW() { return EXTENSION_OF_CREDIT_OR_ACCOUNT_REVIEW; } public void setEXTENSIONOFCREDITORACCOUNTREVIEW(PartnerEndCustomerCRAUseCases EXTENSION_OF_CREDIT_OR_ACCOUNT_REVIEW) { this.EXTENSION_OF_CREDIT_OR_ACCOUNT_REVIEW = EXTENSION_OF_CREDIT_OR_ACCOUNT_REVIEW; } public PartnerEndCustomerCRAPurposes EMPLOYMENT(PartnerEndCustomerCRAUseCases EMPLOYMENT) { this.EMPLOYMENT = EMPLOYMENT; return this; } /** * Get EMPLOYMENT * @return EMPLOYMENT **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PartnerEndCustomerCRAUseCases getEMPLOYMENT() { return EMPLOYMENT; } public void setEMPLOYMENT(PartnerEndCustomerCRAUseCases EMPLOYMENT) { this.EMPLOYMENT = EMPLOYMENT; } public PartnerEndCustomerCRAPurposes INSURANCE_UNDERWRITING(PartnerEndCustomerCRAUseCases INSURANCE_UNDERWRITING) { this.INSURANCE_UNDERWRITING = INSURANCE_UNDERWRITING; return this; } /** * Get INSURANCE_UNDERWRITING * @return INSURANCE_UNDERWRITING **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PartnerEndCustomerCRAUseCases getINSURANCEUNDERWRITING() { return INSURANCE_UNDERWRITING; } public void setINSURANCEUNDERWRITING(PartnerEndCustomerCRAUseCases INSURANCE_UNDERWRITING) { this.INSURANCE_UNDERWRITING = INSURANCE_UNDERWRITING; } public PartnerEndCustomerCRAPurposes LICENSE_ELIGIBILITY(PartnerEndCustomerCRAUseCases LICENSE_ELIGIBILITY) { this.LICENSE_ELIGIBILITY = LICENSE_ELIGIBILITY; return this; } /** * Get LICENSE_ELIGIBILITY * @return LICENSE_ELIGIBILITY **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PartnerEndCustomerCRAUseCases getLICENSEELIGIBILITY() { return LICENSE_ELIGIBILITY; } public void setLICENSEELIGIBILITY(PartnerEndCustomerCRAUseCases LICENSE_ELIGIBILITY) { this.LICENSE_ELIGIBILITY = LICENSE_ELIGIBILITY; } public PartnerEndCustomerCRAPurposes RISK_ASSESSMENT(PartnerEndCustomerCRAUseCases RISK_ASSESSMENT) { this.RISK_ASSESSMENT = RISK_ASSESSMENT; return this; } /** * Get RISK_ASSESSMENT * @return RISK_ASSESSMENT **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PartnerEndCustomerCRAUseCases getRISKASSESSMENT() { return RISK_ASSESSMENT; } public void setRISKASSESSMENT(PartnerEndCustomerCRAUseCases RISK_ASSESSMENT) { this.RISK_ASSESSMENT = RISK_ASSESSMENT; } public PartnerEndCustomerCRAPurposes BUSINESS_NEED_TRANSACTION(PartnerEndCustomerCRAUseCases BUSINESS_NEED_TRANSACTION) { this.BUSINESS_NEED_TRANSACTION = BUSINESS_NEED_TRANSACTION; return this; } /** * Get BUSINESS_NEED_TRANSACTION * @return BUSINESS_NEED_TRANSACTION **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PartnerEndCustomerCRAUseCases getBUSINESSNEEDTRANSACTION() { return BUSINESS_NEED_TRANSACTION; } public void setBUSINESSNEEDTRANSACTION(PartnerEndCustomerCRAUseCases BUSINESS_NEED_TRANSACTION) { this.BUSINESS_NEED_TRANSACTION = BUSINESS_NEED_TRANSACTION; } public PartnerEndCustomerCRAPurposes BUSINESS_NEED_ACCOUNT_REVIEW(PartnerEndCustomerCRAUseCases BUSINESS_NEED_ACCOUNT_REVIEW) { this.BUSINESS_NEED_ACCOUNT_REVIEW = BUSINESS_NEED_ACCOUNT_REVIEW; return this; } /** * Get BUSINESS_NEED_ACCOUNT_REVIEW * @return BUSINESS_NEED_ACCOUNT_REVIEW **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PartnerEndCustomerCRAUseCases getBUSINESSNEEDACCOUNTREVIEW() { return BUSINESS_NEED_ACCOUNT_REVIEW; } public void setBUSINESSNEEDACCOUNTREVIEW(PartnerEndCustomerCRAUseCases BUSINESS_NEED_ACCOUNT_REVIEW) { this.BUSINESS_NEED_ACCOUNT_REVIEW = BUSINESS_NEED_ACCOUNT_REVIEW; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PartnerEndCustomerCRAPurposes partnerEndCustomerCRAPurposes = (PartnerEndCustomerCRAPurposes) o; return Objects.equals(this.WRITTEN_INSTRUCTION, partnerEndCustomerCRAPurposes.WRITTEN_INSTRUCTION) && Objects.equals(this.EXTENSION_OF_CREDIT_OR_ACCOUNT_REVIEW, partnerEndCustomerCRAPurposes.EXTENSION_OF_CREDIT_OR_ACCOUNT_REVIEW) && Objects.equals(this.EMPLOYMENT, partnerEndCustomerCRAPurposes.EMPLOYMENT) && Objects.equals(this.INSURANCE_UNDERWRITING, partnerEndCustomerCRAPurposes.INSURANCE_UNDERWRITING) && Objects.equals(this.LICENSE_ELIGIBILITY, partnerEndCustomerCRAPurposes.LICENSE_ELIGIBILITY) && Objects.equals(this.RISK_ASSESSMENT, partnerEndCustomerCRAPurposes.RISK_ASSESSMENT) && Objects.equals(this.BUSINESS_NEED_TRANSACTION, partnerEndCustomerCRAPurposes.BUSINESS_NEED_TRANSACTION) && Objects.equals(this.BUSINESS_NEED_ACCOUNT_REVIEW, partnerEndCustomerCRAPurposes.BUSINESS_NEED_ACCOUNT_REVIEW); } @Override public int hashCode() { return Objects.hash(WRITTEN_INSTRUCTION, EXTENSION_OF_CREDIT_OR_ACCOUNT_REVIEW, EMPLOYMENT, INSURANCE_UNDERWRITING, LICENSE_ELIGIBILITY, RISK_ASSESSMENT, BUSINESS_NEED_TRANSACTION, BUSINESS_NEED_ACCOUNT_REVIEW); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PartnerEndCustomerCRAPurposes {\n"); sb.append(" WRITTEN_INSTRUCTION: ").append(toIndentedString(WRITTEN_INSTRUCTION)).append("\n"); sb.append(" EXTENSION_OF_CREDIT_OR_ACCOUNT_REVIEW: ").append(toIndentedString(EXTENSION_OF_CREDIT_OR_ACCOUNT_REVIEW)).append("\n"); sb.append(" EMPLOYMENT: ").append(toIndentedString(EMPLOYMENT)).append("\n"); sb.append(" INSURANCE_UNDERWRITING: ").append(toIndentedString(INSURANCE_UNDERWRITING)).append("\n"); sb.append(" LICENSE_ELIGIBILITY: ").append(toIndentedString(LICENSE_ELIGIBILITY)).append("\n"); sb.append(" RISK_ASSESSMENT: ").append(toIndentedString(RISK_ASSESSMENT)).append("\n"); sb.append(" BUSINESS_NEED_TRANSACTION: ").append(toIndentedString(BUSINESS_NEED_TRANSACTION)).append("\n"); sb.append(" BUSINESS_NEED_ACCOUNT_REVIEW: ").append(toIndentedString(BUSINESS_NEED_ACCOUNT_REVIEW)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/InvestmentsRefreshRequest.java
src/main/java/com/plaid/client/model/InvestmentsRefreshRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * InvestmentsRefreshRequest defines the request schema for &#x60;/investments/refresh&#x60; */ @ApiModel(description = "InvestmentsRefreshRequest defines the request schema for `/investments/refresh`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InvestmentsRefreshRequest { 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 InvestmentsRefreshRequest 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 InvestmentsRefreshRequest 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 InvestmentsRefreshRequest 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; } InvestmentsRefreshRequest investmentsRefreshRequest = (InvestmentsRefreshRequest) o; return Objects.equals(this.clientId, investmentsRefreshRequest.clientId) && Objects.equals(this.accessToken, investmentsRefreshRequest.accessToken) && Objects.equals(this.secret, investmentsRefreshRequest.secret); } @Override public int hashCode() { return Objects.hash(clientId, accessToken, secret); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InvestmentsRefreshRequest {\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("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false