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/IncomeVerificationCreateResponse.java
src/main/java/com/plaid/client/model/IncomeVerificationCreateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * IncomeVerificationCreateResponse defines the response schema for `/income/verification/create`. */ @ApiModel(description = "IncomeVerificationCreateResponse defines the response 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 IncomeVerificationCreateResponse { public static final String SERIALIZED_NAME_INCOME_VERIFICATION_ID = "income_verification_id"; @SerializedName(SERIALIZED_NAME_INCOME_VERIFICATION_ID) private String incomeVerificationId; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public IncomeVerificationCreateResponse incomeVerificationId(String incomeVerificationId) { this.incomeVerificationId = incomeVerificationId; return this; } /** * ID of the verification. This ID is persisted throughout the lifetime of the verification. * @return incomeVerificationId **/ @ApiModelProperty(required = true, value = "ID of the verification. This ID is persisted throughout the lifetime of the verification.") public String getIncomeVerificationId() { return incomeVerificationId; } public void setIncomeVerificationId(String incomeVerificationId) { this.incomeVerificationId = incomeVerificationId; } public IncomeVerificationCreateResponse 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; } IncomeVerificationCreateResponse incomeVerificationCreateResponse = (IncomeVerificationCreateResponse) o; return Objects.equals(this.incomeVerificationId, incomeVerificationCreateResponse.incomeVerificationId) && Objects.equals(this.requestId, incomeVerificationCreateResponse.requestId); } @Override public int hashCode() { return Objects.hash(incomeVerificationId, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IncomeVerificationCreateResponse {\n"); sb.append(" incomeVerificationId: ").append(toIndentedString(incomeVerificationId)).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/TransactionsUserInsightsGetRequest.java
src/main/java/com/plaid/client/model/TransactionsUserInsightsGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * TransactionsUserInsightsGetRequest defines the request schema for `/beta/transactions/user_insights/v1/get`. */ @ApiModel(description = "TransactionsUserInsightsGetRequest defines the request schema for `/beta/transactions/user_insights/v1/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionsUserInsightsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id"; @SerializedName(SERIALIZED_NAME_CLIENT_USER_ID) private String clientUserId; public TransactionsUserInsightsGetRequest clientId(String clientId) { this.clientId = clientId; return this; } /** * Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public TransactionsUserInsightsGetRequest secret(String secret) { this.secret = secret; return this; } /** * Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body. * @return secret **/ @javax.annotation.Nullable @ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.") public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } public TransactionsUserInsightsGetRequest clientUserId(String clientUserId) { this.clientUserId = clientUserId; return this; } /** * A unique client-provided `client_user_id` to retrieve insights for. * @return clientUserId **/ @ApiModelProperty(required = true, value = "A unique client-provided `client_user_id` to retrieve insights for.") public String getClientUserId() { return clientUserId; } public void setClientUserId(String clientUserId) { this.clientUserId = clientUserId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransactionsUserInsightsGetRequest transactionsUserInsightsGetRequest = (TransactionsUserInsightsGetRequest) o; return Objects.equals(this.clientId, transactionsUserInsightsGetRequest.clientId) && Objects.equals(this.secret, transactionsUserInsightsGetRequest.secret) && Objects.equals(this.clientUserId, transactionsUserInsightsGetRequest.clientUserId); } @Override public int hashCode() { return Objects.hash(clientId, secret, clientUserId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsUserInsightsGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferOriginatorGetResponse.java
src/main/java/com/plaid/client/model/TransferOriginatorGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.DetailedOriginator; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the response schema for `/transfer/originator/get` */ @ApiModel(description = "Defines the response schema for `/transfer/originator/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferOriginatorGetResponse { public static final String SERIALIZED_NAME_ORIGINATOR = "originator"; @SerializedName(SERIALIZED_NAME_ORIGINATOR) private DetailedOriginator originator; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public TransferOriginatorGetResponse originator(DetailedOriginator originator) { this.originator = originator; return this; } /** * Get originator * @return originator **/ @ApiModelProperty(required = true, value = "") public DetailedOriginator getOriginator() { return originator; } public void setOriginator(DetailedOriginator originator) { this.originator = originator; } public TransferOriginatorGetResponse 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; } TransferOriginatorGetResponse transferOriginatorGetResponse = (TransferOriginatorGetResponse) o; return Objects.equals(this.originator, transferOriginatorGetResponse.originator) && Objects.equals(this.requestId, transferOriginatorGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(originator, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferOriginatorGetResponse {\n"); sb.append(" originator: ").append(toIndentedString(originator)).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/TransferBalance.java
src/main/java/com/plaid/client/model/TransferBalance.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.TransferBalanceType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Information about the balance held with Plaid. */ @ApiModel(description = "Information about the balance held with Plaid.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferBalance { public static final String SERIALIZED_NAME_AVAILABLE = "available"; @SerializedName(SERIALIZED_NAME_AVAILABLE) private String available; public static final String SERIALIZED_NAME_CURRENT = "current"; @SerializedName(SERIALIZED_NAME_CURRENT) private String current; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private TransferBalanceType type; public TransferBalance available(String available) { this.available = available; return this; } /** * The amount of this balance available for use (decimal string with two digits of precision e.g. \"10.00\"). * @return available **/ @ApiModelProperty(required = true, value = "The amount of this balance available for use (decimal string with two digits of precision e.g. \"10.00\").") public String getAvailable() { return available; } public void setAvailable(String available) { this.available = available; } public TransferBalance current(String current) { this.current = current; return this; } /** * The available balance, plus amount of pending funds that in processing (decimal string with two digits of precision e.g. \"10.00\"). * @return current **/ @javax.annotation.Nullable @ApiModelProperty(value = "The available balance, plus amount of pending funds that in processing (decimal string with two digits of precision e.g. \"10.00\").") public String getCurrent() { return current; } public void setCurrent(String current) { this.current = current; } public TransferBalance type(TransferBalanceType type) { this.type = type; return this; } /** * Get type * @return type **/ @ApiModelProperty(required = true, value = "") public TransferBalanceType getType() { return type; } public void setType(TransferBalanceType type) { this.type = type; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferBalance transferBalance = (TransferBalance) o; return Objects.equals(this.available, transferBalance.available) && Objects.equals(this.current, transferBalance.current) && Objects.equals(this.type, transferBalance.type); } @Override public int hashCode() { return Objects.hash(available, current, type); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferBalance {\n"); sb.append(" available: ").append(toIndentedString(available)).append("\n"); sb.append(" current: ").append(toIndentedString(current)).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/EmploymentVerificationStatus.java
src/main/java/com/plaid/client/model/EmploymentVerificationStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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; /** * Current employment status. */ @JsonAdapter(EmploymentVerificationStatus.Adapter.class) public enum EmploymentVerificationStatus { EMPLOYMENT_STATUS_ACTIVE("EMPLOYMENT_STATUS_ACTIVE"), EMPLOYMENT_STATUS_INACTIVE("EMPLOYMENT_STATUS_INACTIVE"), 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; EmploymentVerificationStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static EmploymentVerificationStatus fromValue(String value) { for (EmploymentVerificationStatus b : EmploymentVerificationStatus.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<EmploymentVerificationStatus> { @Override public void write(final JsonWriter jsonWriter, final EmploymentVerificationStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public EmploymentVerificationStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return EmploymentVerificationStatus.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/OptionContract.java
src/main/java/com/plaid/client/model/OptionContract.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Details about the option security. For the Sandbox environment, this data is currently only available if the Item is using a [custom Sandbox user](https://plaid.com/docs/sandbox/user-custom/) and the &#x60;ticker&#x60; field of the custom security follows the [OCC Option Symbol](https://en.wikipedia.org/wiki/Option_symbol#The_OCC_Option_Symbol) standard with no spaces. For an example of simulating this in Sandbox, see the [custom Sandbox GitHub](https://github.com/plaid/sandbox-custom-users). */ @ApiModel(description = "Details about the option security. For the Sandbox environment, this data is currently only available if the Item is using a [custom Sandbox user](https://plaid.com/docs/sandbox/user-custom/) and the `ticker` field of the custom security follows the [OCC Option Symbol](https://en.wikipedia.org/wiki/Option_symbol#The_OCC_Option_Symbol) standard with no spaces. For an example of simulating this in Sandbox, see the [custom Sandbox GitHub](https://github.com/plaid/sandbox-custom-users).") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class OptionContract { public static final String SERIALIZED_NAME_CONTRACT_TYPE = "contract_type"; @SerializedName(SERIALIZED_NAME_CONTRACT_TYPE) private String contractType; public static final String SERIALIZED_NAME_EXPIRATION_DATE = "expiration_date"; @SerializedName(SERIALIZED_NAME_EXPIRATION_DATE) private LocalDate expirationDate; public static final String SERIALIZED_NAME_STRIKE_PRICE = "strike_price"; @SerializedName(SERIALIZED_NAME_STRIKE_PRICE) private Double strikePrice; public static final String SERIALIZED_NAME_UNDERLYING_SECURITY_TICKER = "underlying_security_ticker"; @SerializedName(SERIALIZED_NAME_UNDERLYING_SECURITY_TICKER) private String underlyingSecurityTicker; public OptionContract contractType(String contractType) { this.contractType = contractType; return this; } /** * The type of this option contract. It is one of: &#x60;put&#x60;: for Put option contracts &#x60;call&#x60;: for Call option contracts * @return contractType **/ @ApiModelProperty(required = true, value = "The type of this option contract. It is one of: `put`: for Put option contracts `call`: for Call option contracts") public String getContractType() { return contractType; } public void setContractType(String contractType) { this.contractType = contractType; } public OptionContract expirationDate(LocalDate expirationDate) { this.expirationDate = expirationDate; return this; } /** * The expiration date for this option contract, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format. * @return expirationDate **/ @ApiModelProperty(required = true, value = "The expiration date for this option contract, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format.") public LocalDate getExpirationDate() { return expirationDate; } public void setExpirationDate(LocalDate expirationDate) { this.expirationDate = expirationDate; } public OptionContract strikePrice(Double strikePrice) { this.strikePrice = strikePrice; return this; } /** * The strike price for this option contract, per share of security. * @return strikePrice **/ @ApiModelProperty(required = true, value = "The strike price for this option contract, per share of security.") public Double getStrikePrice() { return strikePrice; } public void setStrikePrice(Double strikePrice) { this.strikePrice = strikePrice; } public OptionContract underlyingSecurityTicker(String underlyingSecurityTicker) { this.underlyingSecurityTicker = underlyingSecurityTicker; return this; } /** * The ticker of the underlying security for this option contract. * @return underlyingSecurityTicker **/ @ApiModelProperty(required = true, value = "The ticker of the underlying security for this option contract.") public String getUnderlyingSecurityTicker() { return underlyingSecurityTicker; } public void setUnderlyingSecurityTicker(String underlyingSecurityTicker) { this.underlyingSecurityTicker = underlyingSecurityTicker; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } OptionContract optionContract = (OptionContract) o; return Objects.equals(this.contractType, optionContract.contractType) && Objects.equals(this.expirationDate, optionContract.expirationDate) && Objects.equals(this.strikePrice, optionContract.strikePrice) && Objects.equals(this.underlyingSecurityTicker, optionContract.underlyingSecurityTicker); } @Override public int hashCode() { return Objects.hash(contractType, expirationDate, strikePrice, underlyingSecurityTicker); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class OptionContract {\n"); sb.append(" contractType: ").append(toIndentedString(contractType)).append("\n"); sb.append(" expirationDate: ").append(toIndentedString(expirationDate)).append("\n"); sb.append(" strikePrice: ").append(toIndentedString(strikePrice)).append("\n"); sb.append(" underlyingSecurityTicker: ").append(toIndentedString(underlyingSecurityTicker)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkTokenCreateRequestIncomeVerificationBankIncome.java
src/main/java/com/plaid/client/model/LinkTokenCreateRequestIncomeVerificationBankIncome.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Specifies options for initializing Link for use with Bank Income. This field is required if &#x60;income_verification&#x60; is included in the &#x60;products&#x60; array and &#x60;bank&#x60; is specified in &#x60;income_source_types&#x60;. */ @ApiModel(description = "Specifies options for initializing Link for use with Bank Income. This field is required if `income_verification` is included in the `products` array and `bank` is specified in `income_source_types`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkTokenCreateRequestIncomeVerificationBankIncome { public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) private Integer daysRequested; public static final String SERIALIZED_NAME_ENABLE_MULTIPLE_ITEMS = "enable_multiple_items"; @SerializedName(SERIALIZED_NAME_ENABLE_MULTIPLE_ITEMS) private Boolean enableMultipleItems = false; public LinkTokenCreateRequestIncomeVerificationBankIncome daysRequested(Integer daysRequested) { this.daysRequested = daysRequested; return this; } /** * The number of days of data to request for the Bank Income product * minimum: 1 * maximum: 731 * @return daysRequested **/ @ApiModelProperty(required = true, value = "The number of days of data to request for the Bank Income product") public Integer getDaysRequested() { return daysRequested; } public void setDaysRequested(Integer daysRequested) { this.daysRequested = daysRequested; } public LinkTokenCreateRequestIncomeVerificationBankIncome enableMultipleItems(Boolean enableMultipleItems) { this.enableMultipleItems = enableMultipleItems; return this; } /** * Whether to enable multiple Items to be added in the Link session. This setting is deprecated and has been replaced by the more general &#x60;enable_multi_item_link&#x60; setting, which supports all products. * @return enableMultipleItems **/ @javax.annotation.Nullable @ApiModelProperty(value = "Whether to enable multiple Items to be added in the Link session. This setting is deprecated and has been replaced by the more general `enable_multi_item_link` setting, which supports all products.") public Boolean getEnableMultipleItems() { return enableMultipleItems; } public void setEnableMultipleItems(Boolean enableMultipleItems) { this.enableMultipleItems = enableMultipleItems; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkTokenCreateRequestIncomeVerificationBankIncome linkTokenCreateRequestIncomeVerificationBankIncome = (LinkTokenCreateRequestIncomeVerificationBankIncome) o; return Objects.equals(this.daysRequested, linkTokenCreateRequestIncomeVerificationBankIncome.daysRequested) && Objects.equals(this.enableMultipleItems, linkTokenCreateRequestIncomeVerificationBankIncome.enableMultipleItems); } @Override public int hashCode() { return Objects.hash(daysRequested, enableMultipleItems); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkTokenCreateRequestIncomeVerificationBankIncome {\n"); sb.append(" daysRequested: ").append(toIndentedString(daysRequested)).append("\n"); sb.append(" enableMultipleItems: ").append(toIndentedString(enableMultipleItems)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckUser.java
src/main/java/com/plaid/client/model/IncomeVerificationPrecheckUser.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.SignalAddressData; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Information about the user whose eligibility is being evaluated. */ @ApiModel(description = "Information about the user whose eligibility is being evaluated.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IncomeVerificationPrecheckUser { public static final String SERIALIZED_NAME_FIRST_NAME = "first_name"; @SerializedName(SERIALIZED_NAME_FIRST_NAME) private String firstName; public static final String SERIALIZED_NAME_LAST_NAME = "last_name"; @SerializedName(SERIALIZED_NAME_LAST_NAME) private String lastName; public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) private String emailAddress; public static final String SERIALIZED_NAME_HOME_ADDRESS = "home_address"; @SerializedName(SERIALIZED_NAME_HOME_ADDRESS) private SignalAddressData homeAddress; public IncomeVerificationPrecheckUser firstName(String firstName) { this.firstName = firstName; return this; } /** * The user&#39;s first name * @return firstName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's first name") public String getFirstName() { return firstName; } public void setFirstName(String firstName) { this.firstName = firstName; } public IncomeVerificationPrecheckUser lastName(String lastName) { this.lastName = lastName; return this; } /** * The user&#39;s last name * @return lastName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's last name") public String getLastName() { return lastName; } public void setLastName(String lastName) { this.lastName = lastName; } public IncomeVerificationPrecheckUser emailAddress(String emailAddress) { this.emailAddress = emailAddress; return this; } /** * The user&#39;s email address * @return emailAddress **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's email address") public String getEmailAddress() { return emailAddress; } public void setEmailAddress(String emailAddress) { this.emailAddress = emailAddress; } public IncomeVerificationPrecheckUser homeAddress(SignalAddressData homeAddress) { this.homeAddress = homeAddress; return this; } /** * Get homeAddress * @return homeAddress **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public SignalAddressData getHomeAddress() { return homeAddress; } public void setHomeAddress(SignalAddressData homeAddress) { this.homeAddress = homeAddress; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IncomeVerificationPrecheckUser incomeVerificationPrecheckUser = (IncomeVerificationPrecheckUser) o; return Objects.equals(this.firstName, incomeVerificationPrecheckUser.firstName) && Objects.equals(this.lastName, incomeVerificationPrecheckUser.lastName) && Objects.equals(this.emailAddress, incomeVerificationPrecheckUser.emailAddress) && Objects.equals(this.homeAddress, incomeVerificationPrecheckUser.homeAddress); } @Override public int hashCode() { return Objects.hash(firstName, lastName, emailAddress, homeAddress); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IncomeVerificationPrecheckUser {\n"); sb.append(" firstName: ").append(toIndentedString(firstName)).append("\n"); sb.append(" lastName: ").append(toIndentedString(lastName)).append("\n"); sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n"); sb.append(" homeAddress: ").append(toIndentedString(homeAddress)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LedgerEventSourceType.java
src/main/java/com/plaid/client/model/LedgerEventSourceType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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; /** * Source of the ledger event. &#x60;\&quot;TRANSFER\&quot;&#x60; - The source of the ledger event is a transfer &#x60;\&quot;SWEEP\&quot;&#x60; - The source of the ledger event is a sweep &#x60;\&quot;REFUND\&quot;&#x60; - The source of the ledger event is a refund */ @JsonAdapter(LedgerEventSourceType.Adapter.class) public enum LedgerEventSourceType { TRANSFER("TRANSFER"), SWEEP("SWEEP"), REFUND("REFUND"), // 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; LedgerEventSourceType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static LedgerEventSourceType fromValue(String value) { for (LedgerEventSourceType b : LedgerEventSourceType.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<LedgerEventSourceType> { @Override public void write(final JsonWriter jsonWriter, final LedgerEventSourceType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public LedgerEventSourceType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return LedgerEventSourceType.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/RiskCheckIdentityAbuseSignals.java
src/main/java/com/plaid/client/model/RiskCheckIdentityAbuseSignals.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.RiskCheckStolenIdentity; import com.plaid.client.model.RiskCheckSyntheticIdentity; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Result summary object capturing abuse signals related to &#x60;identity abuse&#x60;, e.g. stolen and synthetic identity fraud. These attributes are only available for US identities and some signals may not be available depending on what information was collected. */ @ApiModel(description = "Result summary object capturing abuse signals related to `identity abuse`, e.g. stolen and synthetic identity fraud. These attributes are only available for US identities and some signals may not be available depending on what information was collected.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class RiskCheckIdentityAbuseSignals { public static final String SERIALIZED_NAME_SYNTHETIC_IDENTITY = "synthetic_identity"; @SerializedName(SERIALIZED_NAME_SYNTHETIC_IDENTITY) private RiskCheckSyntheticIdentity syntheticIdentity; public static final String SERIALIZED_NAME_STOLEN_IDENTITY = "stolen_identity"; @SerializedName(SERIALIZED_NAME_STOLEN_IDENTITY) private RiskCheckStolenIdentity stolenIdentity; public RiskCheckIdentityAbuseSignals syntheticIdentity(RiskCheckSyntheticIdentity syntheticIdentity) { this.syntheticIdentity = syntheticIdentity; return this; } /** * Get syntheticIdentity * @return syntheticIdentity **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public RiskCheckSyntheticIdentity getSyntheticIdentity() { return syntheticIdentity; } public void setSyntheticIdentity(RiskCheckSyntheticIdentity syntheticIdentity) { this.syntheticIdentity = syntheticIdentity; } public RiskCheckIdentityAbuseSignals stolenIdentity(RiskCheckStolenIdentity stolenIdentity) { this.stolenIdentity = stolenIdentity; return this; } /** * Get stolenIdentity * @return stolenIdentity **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public RiskCheckStolenIdentity getStolenIdentity() { return stolenIdentity; } public void setStolenIdentity(RiskCheckStolenIdentity stolenIdentity) { this.stolenIdentity = stolenIdentity; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } RiskCheckIdentityAbuseSignals riskCheckIdentityAbuseSignals = (RiskCheckIdentityAbuseSignals) o; return Objects.equals(this.syntheticIdentity, riskCheckIdentityAbuseSignals.syntheticIdentity) && Objects.equals(this.stolenIdentity, riskCheckIdentityAbuseSignals.stolenIdentity); } @Override public int hashCode() { return Objects.hash(syntheticIdentity, stolenIdentity); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class RiskCheckIdentityAbuseSignals {\n"); sb.append(" syntheticIdentity: ").append(toIndentedString(syntheticIdentity)).append("\n"); sb.append(" stolenIdentity: ").append(toIndentedString(stolenIdentity)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraCheckReportVerificationGetResponse.java
src/main/java/com/plaid/client/model/CraCheckReportVerificationGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CheckReportWarning; import com.plaid.client.model.CraVerificationReport; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * CraCheckReportVerificationGetResponse defines the response schema for &#x60;/cra/check_report/verification/get&#x60;. */ @ApiModel(description = "CraCheckReportVerificationGetResponse defines the response schema for `/cra/check_report/verification/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCheckReportVerificationGetResponse { public static final String SERIALIZED_NAME_REPORT = "report"; @SerializedName(SERIALIZED_NAME_REPORT) private CraVerificationReport report; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public static final String SERIALIZED_NAME_WARNINGS = "warnings"; @SerializedName(SERIALIZED_NAME_WARNINGS) private List<CheckReportWarning> warnings = new ArrayList<>(); public CraCheckReportVerificationGetResponse report(CraVerificationReport report) { this.report = report; return this; } /** * Get report * @return report **/ @ApiModelProperty(required = true, value = "") public CraVerificationReport getReport() { return report; } public void setReport(CraVerificationReport report) { this.report = report; } public CraCheckReportVerificationGetResponse 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 CraCheckReportVerificationGetResponse warnings(List<CheckReportWarning> warnings) { this.warnings = warnings; return this; } public CraCheckReportVerificationGetResponse addWarningsItem(CheckReportWarning warningsItem) { this.warnings.add(warningsItem); return this; } /** * If the verification report generation was successful but a subset of data could not be retrieved, this array will contain information about the errors causing information to be missing. * @return warnings **/ @ApiModelProperty(required = true, value = "If the verification report generation was successful but a subset of data could not be retrieved, this array will contain information about the errors causing information to be missing.") public List<CheckReportWarning> getWarnings() { return warnings; } public void setWarnings(List<CheckReportWarning> warnings) { this.warnings = warnings; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraCheckReportVerificationGetResponse craCheckReportVerificationGetResponse = (CraCheckReportVerificationGetResponse) o; return Objects.equals(this.report, craCheckReportVerificationGetResponse.report) && Objects.equals(this.requestId, craCheckReportVerificationGetResponse.requestId) && Objects.equals(this.warnings, craCheckReportVerificationGetResponse.warnings); } @Override public int hashCode() { return Objects.hash(report, requestId, warnings); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportVerificationGetResponse {\n"); sb.append(" report: ").append(toIndentedString(report)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append(" warnings: ").append(toIndentedString(warnings)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ItemRemoveRequest.java
src/main/java/com/plaid/client/model/ItemRemoveRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.ItemRemoveReasonCode; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * ItemRemoveRequest defines the request schema for &#x60;/item/remove&#x60; */ @ApiModel(description = "ItemRemoveRequest defines the request schema for `/item/remove`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ItemRemoveRequest { 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_REASON_CODE = "reason_code"; @SerializedName(SERIALIZED_NAME_REASON_CODE) private ItemRemoveReasonCode reasonCode; public static final String SERIALIZED_NAME_REASON_NOTE = "reason_note"; @SerializedName(SERIALIZED_NAME_REASON_NOTE) private String reasonNote; public ItemRemoveRequest 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 ItemRemoveRequest 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 ItemRemoveRequest 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 ItemRemoveRequest reasonCode(ItemRemoveReasonCode reasonCode) { this.reasonCode = reasonCode; return this; } /** * Get reasonCode * @return reasonCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ItemRemoveReasonCode getReasonCode() { return reasonCode; } public void setReasonCode(ItemRemoveReasonCode reasonCode) { this.reasonCode = reasonCode; } public ItemRemoveRequest reasonNote(String reasonNote) { this.reasonNote = reasonNote; return this; } /** * Additional context or details about the reason for removing the item. Personally identifiable information, such as an email address or phone number, should not be included in the &#x60;reason_note&#x60;. * @return reasonNote **/ @javax.annotation.Nullable @ApiModelProperty(value = "Additional context or details about the reason for removing the item. Personally identifiable information, such as an email address or phone number, should not be included in the `reason_note`.") public String getReasonNote() { return reasonNote; } public void setReasonNote(String reasonNote) { this.reasonNote = reasonNote; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ItemRemoveRequest itemRemoveRequest = (ItemRemoveRequest) o; return Objects.equals(this.clientId, itemRemoveRequest.clientId) && Objects.equals(this.secret, itemRemoveRequest.secret) && Objects.equals(this.accessToken, itemRemoveRequest.accessToken) && Objects.equals(this.reasonCode, itemRemoveRequest.reasonCode) && Objects.equals(this.reasonNote, itemRemoveRequest.reasonNote); } @Override public int hashCode() { return Objects.hash(clientId, secret, accessToken, reasonCode, reasonNote); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ItemRemoveRequest {\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(" reasonCode: ").append(toIndentedString(reasonCode)).append("\n"); sb.append(" reasonNote: ").append(toIndentedString(reasonNote)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/RiskCheckLinkedService.java
src/main/java/com/plaid/client/model/RiskCheckLinkedService.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * An enum indicating the type of a linked service. Note that &#x60;adult_sites&#x60; refers&#39; to explicit video content, and includes a number of related services. */ @JsonAdapter(RiskCheckLinkedService.Adapter.class) public enum RiskCheckLinkedService { ABOUTME("aboutme"), ADOBE("adobe"), ADULT_SITES("adult_sites"), AIRBNB("airbnb"), ALTBALAJI("altbalaji"), AMAZON("amazon"), APPLE("apple"), ARCHIVEORG("archiveorg"), ATLASSIAN("atlassian"), BITMOJI("bitmoji"), BODYBUILDING("bodybuilding"), BOOKING("booking"), BUKALAPAK("bukalapak"), CODECADEMY("codecademy"), DELIVEROO("deliveroo"), DIIGO("diigo"), DISCORD("discord"), DISNEYPLUS("disneyplus"), DUOLINGO("duolingo"), EBAY("ebay"), ENVATO("envato"), EVENTBRITE("eventbrite"), EVERNOTE("evernote"), FACEBOOK("facebook"), FIREFOX("firefox"), FLICKR("flickr"), FLIPKART("flipkart"), FOURSQUARE("foursquare"), FREELANCER("freelancer"), GAANA("gaana"), GIPHY("giphy"), GITHUB("github"), GOOGLE("google"), GRAVATAR("gravatar"), HUBSPOT("hubspot"), IMGUR("imgur"), INSTAGRAM("instagram"), JDID("jdid"), KAKAO("kakao"), KOMMO("kommo"), KOMOOT("komoot"), LASTFM("lastfm"), LAZADA("lazada"), LINE("line"), LINKEDIN("linkedin"), MAILRU("mailru"), MICROSOFT("microsoft"), MYSPACE("myspace"), NETFLIX("netflix"), NIKE("nike"), OK("ok"), PATREON("patreon"), PINTEREST("pinterest"), PLURK("plurk"), QUORA("quora"), QZONE("qzone"), RAMBLER("rambler"), RAPPI("rappi"), REPLIT("replit"), SAMSUNG("samsung"), SEOCLERKS("seoclerks"), SHOPCLUES("shopclues"), SKYPE("skype"), SNAPCHAT("snapchat"), SNAPDEAL("snapdeal"), SOUNDCLOUD("soundcloud"), SPOTIFY("spotify"), STARZ("starz"), STRAVA("strava"), TARINGA("taringa"), TELEGRAM("telegram"), TIKI("tiki"), TOKOPEDIA("tokopedia"), TREEHOUSE("treehouse"), TUMBLR("tumblr"), TWITTER("twitter"), VENMO("venmo"), VIBER("viber"), VIMEO("vimeo"), VIVINO("vivino"), VKONTAKTE("vkontakte"), WATTPAD("wattpad"), WEIBO("weibo"), WHATSAPP("whatsapp"), WORDPRESS("wordpress"), XING("xing"), YAHOO("yahoo"), YANDEX("yandex"), ZALO("zalo"), ZOHO("zoho"), // 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; RiskCheckLinkedService(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static RiskCheckLinkedService fromValue(String value) { for (RiskCheckLinkedService b : RiskCheckLinkedService.values()) { if (b.value.equals(value)) { return b; } } return RiskCheckLinkedService.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<RiskCheckLinkedService> { @Override public void write(final JsonWriter jsonWriter, final RiskCheckLinkedService enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public RiskCheckLinkedService read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return RiskCheckLinkedService.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/CraCheckReportPartnerInsightsGetRequest.java
src/main/java/com/plaid/client/model/CraCheckReportPartnerInsightsGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CraCheckReportPartnerInsightsGetOptions; import com.plaid.client.model.CraCheckReportPartnerInsightsGetPartnerInsights; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * CraPartnerInsightsGetRequest defines the request schema for &#x60;/cra/partner_insights/get&#x60;. */ @ApiModel(description = "CraPartnerInsightsGetRequest defines the request schema for `/cra/partner_insights/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCheckReportPartnerInsightsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN = "third_party_user_token"; @SerializedName(SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN) private String thirdPartyUserToken; public static final String SERIALIZED_NAME_USER_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) private String userToken; public static final String SERIALIZED_NAME_PARTNER_INSIGHTS = "partner_insights"; @SerializedName(SERIALIZED_NAME_PARTNER_INSIGHTS) private CraCheckReportPartnerInsightsGetPartnerInsights partnerInsights; public static final String SERIALIZED_NAME_OPTIONS = "options"; @SerializedName(SERIALIZED_NAME_OPTIONS) private CraCheckReportPartnerInsightsGetOptions options; public CraCheckReportPartnerInsightsGetRequest 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 CraCheckReportPartnerInsightsGetRequest 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 CraCheckReportPartnerInsightsGetRequest userId(String userId) { this.userId = userId; return this; } /** * A unique user identifier, created by &#x60;/user/create&#x60;. Integrations that began using &#x60;/user/create&#x60; after December 10, 2025 use this field to identify a user instead of the &#x60;user_token&#x60;. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis). * @return userId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique user identifier, created by `/user/create`. Integrations that began using `/user/create` after December 10, 2025 use this field to identify a user instead of the `user_token`. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis).") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public CraCheckReportPartnerInsightsGetRequest thirdPartyUserToken(String thirdPartyUserToken) { this.thirdPartyUserToken = thirdPartyUserToken; return this; } /** * The third-party user token associated with the requested User data. * @return thirdPartyUserToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "The third-party user token associated with the requested User data.") public String getThirdPartyUserToken() { return thirdPartyUserToken; } public void setThirdPartyUserToken(String thirdPartyUserToken) { this.thirdPartyUserToken = thirdPartyUserToken; } public CraCheckReportPartnerInsightsGetRequest userToken(String userToken) { this.userToken = userToken; return this; } /** * The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the &#x60;user_token&#x60; field. All other customers should use the &#x60;user_id&#x60; instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis). * @return userToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the `user_token` field. All other customers should use the `user_id` instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis).") public String getUserToken() { return userToken; } public void setUserToken(String userToken) { this.userToken = userToken; } public CraCheckReportPartnerInsightsGetRequest partnerInsights(CraCheckReportPartnerInsightsGetPartnerInsights partnerInsights) { this.partnerInsights = partnerInsights; return this; } /** * Get partnerInsights * @return partnerInsights **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CraCheckReportPartnerInsightsGetPartnerInsights getPartnerInsights() { return partnerInsights; } public void setPartnerInsights(CraCheckReportPartnerInsightsGetPartnerInsights partnerInsights) { this.partnerInsights = partnerInsights; } public CraCheckReportPartnerInsightsGetRequest options(CraCheckReportPartnerInsightsGetOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CraCheckReportPartnerInsightsGetOptions getOptions() { return options; } public void setOptions(CraCheckReportPartnerInsightsGetOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraCheckReportPartnerInsightsGetRequest craCheckReportPartnerInsightsGetRequest = (CraCheckReportPartnerInsightsGetRequest) o; return Objects.equals(this.clientId, craCheckReportPartnerInsightsGetRequest.clientId) && Objects.equals(this.secret, craCheckReportPartnerInsightsGetRequest.secret) && Objects.equals(this.userId, craCheckReportPartnerInsightsGetRequest.userId) && Objects.equals(this.thirdPartyUserToken, craCheckReportPartnerInsightsGetRequest.thirdPartyUserToken) && Objects.equals(this.userToken, craCheckReportPartnerInsightsGetRequest.userToken) && Objects.equals(this.partnerInsights, craCheckReportPartnerInsightsGetRequest.partnerInsights) && Objects.equals(this.options, craCheckReportPartnerInsightsGetRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, secret, userId, thirdPartyUserToken, userToken, partnerInsights, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportPartnerInsightsGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" thirdPartyUserToken: ").append(toIndentedString(thirdPartyUserToken)).append("\n"); sb.append(" userToken: ").append(toIndentedString(userToken)).append("\n"); sb.append(" partnerInsights: ").append(toIndentedString(partnerInsights)).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/IdentityDocumentsUploadsGetRequest.java
src/main/java/com/plaid/client/model/IdentityDocumentsUploadsGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.IdentityDocumentsUploadsGetRequestOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * IdentityDocumentsUploadsGetRequest defines the request schema for &#x60;/identity/documents/uploads/get&#x60; */ @ApiModel(description = "IdentityDocumentsUploadsGetRequest defines the request schema for `/identity/documents/uploads/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityDocumentsUploadsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) private String accessToken; public static final String SERIALIZED_NAME_OPTIONS = "options"; @SerializedName(SERIALIZED_NAME_OPTIONS) private IdentityDocumentsUploadsGetRequestOptions options; public IdentityDocumentsUploadsGetRequest 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 IdentityDocumentsUploadsGetRequest 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 IdentityDocumentsUploadsGetRequest 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 IdentityDocumentsUploadsGetRequest options(IdentityDocumentsUploadsGetRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public IdentityDocumentsUploadsGetRequestOptions getOptions() { return options; } public void setOptions(IdentityDocumentsUploadsGetRequestOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IdentityDocumentsUploadsGetRequest identityDocumentsUploadsGetRequest = (IdentityDocumentsUploadsGetRequest) o; return Objects.equals(this.clientId, identityDocumentsUploadsGetRequest.clientId) && Objects.equals(this.secret, identityDocumentsUploadsGetRequest.secret) && Objects.equals(this.accessToken, identityDocumentsUploadsGetRequest.accessToken) && Objects.equals(this.options, identityDocumentsUploadsGetRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, secret, accessToken, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityDocumentsUploadsGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n"); sb.append(" options: ").append(toIndentedString(options)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IssuesGetRequest.java
src/main/java/com/plaid/client/model/IssuesGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * IssuesGetRequest defines the request schema for &#x60;/issues/get&#x60;. */ @ApiModel(description = "IssuesGetRequest defines the request schema for `/issues/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IssuesGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_ISSUE_ID = "issue_id"; @SerializedName(SERIALIZED_NAME_ISSUE_ID) private String issueId; public IssuesGetRequest 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 IssuesGetRequest 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 IssuesGetRequest issueId(String issueId) { this.issueId = issueId; return this; } /** * The unique identifier of the issue to retrieve. * @return issueId **/ @ApiModelProperty(required = true, value = "The unique identifier of the issue to retrieve.") public String getIssueId() { return issueId; } public void setIssueId(String issueId) { this.issueId = issueId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IssuesGetRequest issuesGetRequest = (IssuesGetRequest) o; return Objects.equals(this.clientId, issuesGetRequest.clientId) && Objects.equals(this.secret, issuesGetRequest.secret) && Objects.equals(this.issueId, issuesGetRequest.issueId); } @Override public int hashCode() { return Objects.hash(clientId, secret, issueId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IssuesGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" issueId: ").append(toIndentedString(issueId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BaseReportsErrorWebhook.java
src/main/java/com/plaid/client/model/BaseReportsErrorWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.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 Base Report generation has failed. The resulting &#x60;error&#x60; will have an &#x60;error_type&#x60; of &#x60;BASE_REPORT_ERROR&#x60;. */ @ApiModel(description = "Fired when Base Report generation has failed. The resulting `error` will have an `error_type` of `BASE_REPORT_ERROR`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BaseReportsErrorWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private PlaidError error; 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 BaseReportsErrorWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;BASE_REPORT&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`BASE_REPORT`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public BaseReportsErrorWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;ERROR&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`ERROR`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public BaseReportsErrorWebhook 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 BaseReportsErrorWebhook userId(String userId) { this.userId = userId; return this; } /** * The &#x60;user_id&#x60; corresponding to the User ID the webhook has fired for. * @return userId **/ @ApiModelProperty(required = true, value = "The `user_id` corresponding to the User ID the webhook has fired for.") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public BaseReportsErrorWebhook 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; } BaseReportsErrorWebhook baseReportsErrorWebhook = (BaseReportsErrorWebhook) o; return Objects.equals(this.webhookType, baseReportsErrorWebhook.webhookType) && Objects.equals(this.webhookCode, baseReportsErrorWebhook.webhookCode) && Objects.equals(this.error, baseReportsErrorWebhook.error) && Objects.equals(this.userId, baseReportsErrorWebhook.userId) && Objects.equals(this.environment, baseReportsErrorWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, error, userId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BaseReportsErrorWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" error: ").append(toIndentedString(error)).append("\n"); sb.append(" 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/IncomeInsights.java
src/main/java/com/plaid/client/model/IncomeInsights.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AmountWithCurrency; import com.plaid.client.model.AmountWithCurrencyWithMonthlyAverage; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Comprehensive income analysis including total income, income excluding transfers, and inbound transfer amounts. */ @ApiModel(description = "Comprehensive income analysis including total income, income excluding transfers, and inbound transfer amounts.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IncomeInsights { public static final String SERIALIZED_NAME_TOTAL_INCOME = "total_income"; @SerializedName(SERIALIZED_NAME_TOTAL_INCOME) private AmountWithCurrency totalIncome; public static final String SERIALIZED_NAME_INCOME_EXCLUDING_TRANSFERS = "income_excluding_transfers"; @SerializedName(SERIALIZED_NAME_INCOME_EXCLUDING_TRANSFERS) private AmountWithCurrencyWithMonthlyAverage incomeExcludingTransfers; public static final String SERIALIZED_NAME_TRANSFERS_IN = "transfers_in"; @SerializedName(SERIALIZED_NAME_TRANSFERS_IN) private AmountWithCurrencyWithMonthlyAverage transfersIn; public IncomeInsights totalIncome(AmountWithCurrency totalIncome) { this.totalIncome = totalIncome; return this; } /** * The total amount of all income transactions in the given time period. * @return totalIncome **/ @javax.annotation.Nullable @ApiModelProperty(value = "The total amount of all income transactions in the given time period.") public AmountWithCurrency getTotalIncome() { return totalIncome; } public void setTotalIncome(AmountWithCurrency totalIncome) { this.totalIncome = totalIncome; } public IncomeInsights incomeExcludingTransfers(AmountWithCurrencyWithMonthlyAverage incomeExcludingTransfers) { this.incomeExcludingTransfers = incomeExcludingTransfers; return this; } /** * Income excluding account transfer transactions for the period, including a monthly average. * @return incomeExcludingTransfers **/ @javax.annotation.Nullable @ApiModelProperty(value = "Income excluding account transfer transactions for the period, including a monthly average.") public AmountWithCurrencyWithMonthlyAverage getIncomeExcludingTransfers() { return incomeExcludingTransfers; } public void setIncomeExcludingTransfers(AmountWithCurrencyWithMonthlyAverage incomeExcludingTransfers) { this.incomeExcludingTransfers = incomeExcludingTransfers; } public IncomeInsights transfersIn(AmountWithCurrencyWithMonthlyAverage transfersIn) { this.transfersIn = transfersIn; return this; } /** * Sum of inbound transfer transactions for the period, including a monthly average. * @return transfersIn **/ @javax.annotation.Nullable @ApiModelProperty(value = "Sum of inbound transfer transactions for the period, including a monthly average.") public AmountWithCurrencyWithMonthlyAverage getTransfersIn() { return transfersIn; } public void setTransfersIn(AmountWithCurrencyWithMonthlyAverage transfersIn) { this.transfersIn = transfersIn; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IncomeInsights incomeInsights = (IncomeInsights) o; return Objects.equals(this.totalIncome, incomeInsights.totalIncome) && Objects.equals(this.incomeExcludingTransfers, incomeInsights.incomeExcludingTransfers) && Objects.equals(this.transfersIn, incomeInsights.transfersIn); } @Override public int hashCode() { return Objects.hash(totalIncome, incomeExcludingTransfers, transfersIn); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IncomeInsights {\n"); sb.append(" totalIncome: ").append(toIndentedString(totalIncome)).append("\n"); sb.append(" incomeExcludingTransfers: ").append(toIndentedString(incomeExcludingTransfers)).append("\n"); sb.append(" transfersIn: ").append(toIndentedString(transfersIn)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraVoaReportItem.java
src/main/java/com/plaid/client/model/CraVoaReportItem.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CraVoaReportAccount; 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; /** * A representation of an Item within a VOA report. */ @ApiModel(description = "A representation of an Item within a VOA report.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraVoaReportItem { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) private List<CraVoaReportAccount> accounts = new ArrayList<>(); public static final String SERIALIZED_NAME_INSTITUTION_NAME = "institution_name"; @SerializedName(SERIALIZED_NAME_INSTITUTION_NAME) private String institutionName; public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_ID) private String institutionId; public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_LAST_UPDATE_TIME = "last_update_time"; @SerializedName(SERIALIZED_NAME_LAST_UPDATE_TIME) private OffsetDateTime lastUpdateTime; public CraVoaReportItem accounts(List<CraVoaReportAccount> accounts) { this.accounts = accounts; return this; } public CraVoaReportItem addAccountsItem(CraVoaReportAccount accountsItem) { this.accounts.add(accountsItem); return this; } /** * Data about each of the accounts open on the Item. * @return accounts **/ @ApiModelProperty(required = true, value = "Data about each of the accounts open on the Item.") public List<CraVoaReportAccount> getAccounts() { return accounts; } public void setAccounts(List<CraVoaReportAccount> accounts) { this.accounts = accounts; } public CraVoaReportItem institutionName(String institutionName) { this.institutionName = institutionName; return this; } /** * The full financial institution name associated with the Item. * @return institutionName **/ @ApiModelProperty(required = true, value = "The full financial institution name associated with the Item.") public String getInstitutionName() { return institutionName; } public void setInstitutionName(String institutionName) { this.institutionName = institutionName; } public CraVoaReportItem institutionId(String institutionId) { this.institutionId = institutionId; return this; } /** * The id of the financial institution associated with the Item. * @return institutionId **/ @ApiModelProperty(required = true, value = "The id of the financial institution associated with the Item.") public String getInstitutionId() { return institutionId; } public void setInstitutionId(String institutionId) { this.institutionId = institutionId; } public CraVoaReportItem 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 CraVoaReportItem lastUpdateTime(OffsetDateTime lastUpdateTime) { this.lastUpdateTime = lastUpdateTime; return this; } /** * The date and time when this Item’s data was last retrieved from the financial institution, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format. * @return lastUpdateTime **/ @ApiModelProperty(required = true, value = "The date and time when this Item’s data was last retrieved from the financial institution, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format.") public OffsetDateTime getLastUpdateTime() { return lastUpdateTime; } public void setLastUpdateTime(OffsetDateTime lastUpdateTime) { this.lastUpdateTime = lastUpdateTime; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraVoaReportItem craVoaReportItem = (CraVoaReportItem) o; return Objects.equals(this.accounts, craVoaReportItem.accounts) && Objects.equals(this.institutionName, craVoaReportItem.institutionName) && Objects.equals(this.institutionId, craVoaReportItem.institutionId) && Objects.equals(this.itemId, craVoaReportItem.itemId) && Objects.equals(this.lastUpdateTime, craVoaReportItem.lastUpdateTime); } @Override public int hashCode() { return Objects.hash(accounts, institutionName, institutionId, itemId, lastUpdateTime); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraVoaReportItem {\n"); sb.append(" accounts: ").append(toIndentedString(accounts)).append("\n"); sb.append(" institutionName: ").append(toIndentedString(institutionName)).append("\n"); sb.append(" institutionId: ").append(toIndentedString(institutionId)).append("\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" lastUpdateTime: ").append(toIndentedString(lastUpdateTime)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkSessionFinishedWebhook.java
src/main/java/com/plaid/client/model/LinkSessionFinishedWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Contains the state of a completed Link session, along with the public token(s) if available. By default, this webhook is sent only for sessions enabled for the Hosted Link flow (including Link Recovery flows), a Multi-Item Link flow, or a Layer flow. If you would like to receive this webhook for other sessions, contact your Account Manager or Support. This enablement will also enable the &#x60;EVENTS&#x60; webhook for all Link sessions and the ability to use &#x60;/link/token/get&#x60; to retrieve events for non-Hosted-Link sessions. */ @ApiModel(description = "Contains the state of a completed Link session, along with the public token(s) if available. By default, this webhook is sent only for sessions enabled for the Hosted Link flow (including Link Recovery flows), a Multi-Item Link flow, or a Layer flow. If you would like to receive this webhook for other sessions, contact your Account Manager or Support. This enablement will also enable the `EVENTS` webhook for all Link sessions and the ability to use `/link/token/get` to retrieve events for non-Hosted-Link sessions.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkSessionFinishedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private String status; public static final String SERIALIZED_NAME_LINK_SESSION_ID = "link_session_id"; @SerializedName(SERIALIZED_NAME_LINK_SESSION_ID) private String linkSessionId; public static final String SERIALIZED_NAME_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_PUBLIC_TOKENS = "public_tokens"; @SerializedName(SERIALIZED_NAME_PUBLIC_TOKENS) private List<String> publicTokens = null; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public LinkSessionFinishedWebhook 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 LinkSessionFinishedWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;SESSION_FINISHED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`SESSION_FINISHED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public LinkSessionFinishedWebhook status(String status) { this.status = status; return this; } /** * The final status of the Link session. Will always be \&quot;SUCCESS\&quot; or \&quot;EXITED\&quot;. * @return status **/ @ApiModelProperty(required = true, value = "The final status of the Link session. Will always be \"SUCCESS\" or \"EXITED\".") public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public LinkSessionFinishedWebhook 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 LinkSessionFinishedWebhook 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 LinkSessionFinishedWebhook publicToken(String publicToken) { this.publicToken = publicToken; return this; } /** * The public token generated by the Link session. This field has been deprecated; please use &#x60;public_tokens&#x60; instead. * @return publicToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "The public token generated by the Link session. This field has been deprecated; please use `public_tokens` instead.") public String getPublicToken() { return publicToken; } public void setPublicToken(String publicToken) { this.publicToken = publicToken; } public LinkSessionFinishedWebhook publicTokens(List<String> publicTokens) { this.publicTokens = publicTokens; return this; } public LinkSessionFinishedWebhook addPublicTokensItem(String publicTokensItem) { if (this.publicTokens == null) { this.publicTokens = new ArrayList<>(); } this.publicTokens.add(publicTokensItem); return this; } /** * The public tokens generated by the Link session. * @return publicTokens **/ @javax.annotation.Nullable @ApiModelProperty(value = "The public tokens generated by the Link session.") public List<String> getPublicTokens() { return publicTokens; } public void setPublicTokens(List<String> publicTokens) { this.publicTokens = publicTokens; } public LinkSessionFinishedWebhook 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; } LinkSessionFinishedWebhook linkSessionFinishedWebhook = (LinkSessionFinishedWebhook) o; return Objects.equals(this.webhookType, linkSessionFinishedWebhook.webhookType) && Objects.equals(this.webhookCode, linkSessionFinishedWebhook.webhookCode) && Objects.equals(this.status, linkSessionFinishedWebhook.status) && Objects.equals(this.linkSessionId, linkSessionFinishedWebhook.linkSessionId) && Objects.equals(this.linkToken, linkSessionFinishedWebhook.linkToken) && Objects.equals(this.publicToken, linkSessionFinishedWebhook.publicToken) && Objects.equals(this.publicTokens, linkSessionFinishedWebhook.publicTokens) && Objects.equals(this.environment, linkSessionFinishedWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, status, linkSessionId, linkToken, publicToken, publicTokens, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkSessionFinishedWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" linkSessionId: ").append(toIndentedString(linkSessionId)).append("\n"); sb.append(" linkToken: ").append(toIndentedString(linkToken)).append("\n"); sb.append(" publicToken: ").append(toIndentedString(publicToken)).append("\n"); sb.append(" publicTokens: ").append(toIndentedString(publicTokens)).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/AccountBase.java
src/main/java/com/plaid/client/model/AccountBase.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AccountBalance; import com.plaid.client.model.AccountHolderCategory; import com.plaid.client.model.AccountSubtype; import com.plaid.client.model.AccountType; import com.plaid.client.model.AccountVerificationInsights; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * A single account at a financial institution. */ @ApiModel(description = "A single account at a financial institution.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AccountBase { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_BALANCES = "balances"; @SerializedName(SERIALIZED_NAME_BALANCES) private AccountBalance balances; public static final String SERIALIZED_NAME_MASK = "mask"; @SerializedName(SERIALIZED_NAME_MASK) private String mask; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_OFFICIAL_NAME = "official_name"; @SerializedName(SERIALIZED_NAME_OFFICIAL_NAME) private String officialName; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private AccountType type; public static final String SERIALIZED_NAME_SUBTYPE = "subtype"; @SerializedName(SERIALIZED_NAME_SUBTYPE) private AccountSubtype subtype; /** * Indicates an Item&#39;s micro-deposit-based verification or database verification status. This field is only populated when using Auth and falling back to micro-deposit or database verification. Possible values are: &#x60;pending_automatic_verification&#x60;: The Item is pending automatic verification. &#x60;pending_manual_verification&#x60;: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the code. &#x60;automatically_verified&#x60;: The Item has successfully been automatically verified. &#x60;manually_verified&#x60;: The Item has successfully been manually verified. &#x60;verification_expired&#x60;: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. &#x60;verification_failed&#x60;: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. &#x60;unsent&#x60;: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit. &#x60;database_insights_pending&#x60;: The Database Auth result is pending and will be available upon Auth request. &#x60;database_insights_fail&#x60;: The Item&#39;s numbers have been verified using Plaid&#39;s data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth. &#x60;database_insights_pass&#x60;: The Item&#39;s numbers have been verified using Plaid&#39;s data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth. &#x60;database_insights_pass_with_caution&#x60;: The Item&#39;s numbers have been verified using Plaid&#39;s data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth. &#x60;database_matched&#x60;: (deprecated) The Item has successfully been verified using Plaid&#39;s data sources. Only returned for Auth Items created via Database Match. &#x60;null&#x60; or empty string: Neither micro-deposit-based verification nor database verification are being used for the Item. */ @JsonAdapter(VerificationStatusEnum.Adapter.class) public enum VerificationStatusEnum { AUTOMATICALLY_VERIFIED("automatically_verified"), PENDING_AUTOMATIC_VERIFICATION("pending_automatic_verification"), PENDING_MANUAL_VERIFICATION("pending_manual_verification"), UNSENT("unsent"), MANUALLY_VERIFIED("manually_verified"), VERIFICATION_EXPIRED("verification_expired"), VERIFICATION_FAILED("verification_failed"), DATABASE_MATCHED("database_matched"), DATABASE_INSIGHTS_PASS("database_insights_pass"), DATABASE_INSIGHTS_PASS_WITH_CAUTION("database_insights_pass_with_caution"), DATABASE_INSIGHTS_FAIL("database_insights_fail"); private String value; VerificationStatusEnum(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static VerificationStatusEnum fromValue(String value) { for (VerificationStatusEnum b : VerificationStatusEnum.values()) { if (b.value.equals(value)) { return b; } } throw new IllegalArgumentException("Unexpected value '" + value + "'"); } public static class Adapter extends TypeAdapter<VerificationStatusEnum> { @Override public void write(final JsonWriter jsonWriter, final VerificationStatusEnum enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public VerificationStatusEnum read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return VerificationStatusEnum.fromValue(value); } } } public static final String SERIALIZED_NAME_VERIFICATION_STATUS = "verification_status"; @SerializedName(SERIALIZED_NAME_VERIFICATION_STATUS) private VerificationStatusEnum verificationStatus; public static final String SERIALIZED_NAME_VERIFICATION_NAME = "verification_name"; @SerializedName(SERIALIZED_NAME_VERIFICATION_NAME) private String verificationName; public static final String SERIALIZED_NAME_VERIFICATION_INSIGHTS = "verification_insights"; @SerializedName(SERIALIZED_NAME_VERIFICATION_INSIGHTS) private AccountVerificationInsights verificationInsights; public static final String SERIALIZED_NAME_PERSISTENT_ACCOUNT_ID = "persistent_account_id"; @SerializedName(SERIALIZED_NAME_PERSISTENT_ACCOUNT_ID) private String persistentAccountId; public static final String SERIALIZED_NAME_HOLDER_CATEGORY = "holder_category"; @SerializedName(SERIALIZED_NAME_HOLDER_CATEGORY) private AccountHolderCategory holderCategory; public AccountBase accountId(String accountId) { this.accountId = accountId; return this; } /** * Plaid’s unique identifier for the account. This value will not change unless Plaid can&#39;t reconcile the account with the data returned by the financial institution. This may occur, for example, when the name of the account changes. If this happens a new &#x60;account_id&#x60; will be assigned to the account. The &#x60;account_id&#x60; can also change if the &#x60;access_token&#x60; is deleted and the same credentials that were used to generate that &#x60;access_token&#x60; are used to generate a new &#x60;access_token&#x60; on a later date. In that case, the new &#x60;account_id&#x60; will be different from the old &#x60;account_id&#x60;. If an account with a specific &#x60;account_id&#x60; disappears instead of changing, the account is likely closed. Closed accounts are not returned by the Plaid API. When using a CRA endpoint (an endpoint associated with Plaid Check Consumer Report, i.e. any endpoint beginning with &#x60;/cra/&#x60;), the &#x60;account_id&#x60; returned will not match the &#x60;account_id&#x60; returned by a non-CRA endpoint. Like all Plaid identifiers, the &#x60;account_id&#x60; is case sensitive. * @return accountId **/ @ApiModelProperty(required = true, value = "Plaid’s unique identifier for the account. This value will not change unless Plaid can't reconcile the account with the data returned by the financial institution. This may occur, for example, when the name of the account changes. If this happens a new `account_id` will be assigned to the account. The `account_id` can also change if the `access_token` is deleted and the same credentials that were used to generate that `access_token` are used to generate a new `access_token` on a later date. In that case, the new `account_id` will be different from the old `account_id`. If an account with a specific `account_id` disappears instead of changing, the account is likely closed. Closed accounts are not returned by the Plaid API. When using a CRA endpoint (an endpoint associated with Plaid Check Consumer Report, i.e. any endpoint beginning with `/cra/`), the `account_id` returned will not match the `account_id` returned by a non-CRA endpoint. Like all Plaid identifiers, the `account_id` is case sensitive.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public AccountBase balances(AccountBalance balances) { this.balances = balances; return this; } /** * Get balances * @return balances **/ @ApiModelProperty(required = true, value = "") public AccountBalance getBalances() { return balances; } public void setBalances(AccountBalance balances) { this.balances = balances; } public AccountBase mask(String mask) { this.mask = mask; return this; } /** * The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts. * @return mask **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The last 2-4 alphanumeric characters of either the account’s displayed mask or the account’s official account number. Note that the mask may be non-unique between an Item’s accounts.") public String getMask() { return mask; } public void setMask(String mask) { this.mask = mask; } public AccountBase name(String name) { this.name = name; return this; } /** * The name of the account, either assigned by the user or by the financial institution itself * @return name **/ @ApiModelProperty(required = true, value = "The name of the account, either assigned by the user or by the financial institution itself") public String getName() { return name; } public void setName(String name) { this.name = name; } public AccountBase officialName(String officialName) { this.officialName = officialName; return this; } /** * The official name of the account as given by the financial institution * @return officialName **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The official name of the account as given by the financial institution") public String getOfficialName() { return officialName; } public void setOfficialName(String officialName) { this.officialName = officialName; } public AccountBase type(AccountType type) { this.type = type; return this; } /** * Get type * @return type **/ @ApiModelProperty(required = true, value = "") public AccountType getType() { return type; } public void setType(AccountType type) { this.type = type; } public AccountBase subtype(AccountSubtype subtype) { this.subtype = subtype; return this; } /** * Get subtype * @return subtype **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public AccountSubtype getSubtype() { return subtype; } public void setSubtype(AccountSubtype subtype) { this.subtype = subtype; } public AccountBase verificationStatus(VerificationStatusEnum verificationStatus) { this.verificationStatus = verificationStatus; return this; } /** * Indicates an Item&#39;s micro-deposit-based verification or database verification status. This field is only populated when using Auth and falling back to micro-deposit or database verification. Possible values are: &#x60;pending_automatic_verification&#x60;: The Item is pending automatic verification. &#x60;pending_manual_verification&#x60;: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the code. &#x60;automatically_verified&#x60;: The Item has successfully been automatically verified. &#x60;manually_verified&#x60;: The Item has successfully been manually verified. &#x60;verification_expired&#x60;: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. &#x60;verification_failed&#x60;: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. &#x60;unsent&#x60;: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit. &#x60;database_insights_pending&#x60;: The Database Auth result is pending and will be available upon Auth request. &#x60;database_insights_fail&#x60;: The Item&#39;s numbers have been verified using Plaid&#39;s data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth. &#x60;database_insights_pass&#x60;: The Item&#39;s numbers have been verified using Plaid&#39;s data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth. &#x60;database_insights_pass_with_caution&#x60;: The Item&#39;s numbers have been verified using Plaid&#39;s data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth. &#x60;database_matched&#x60;: (deprecated) The Item has successfully been verified using Plaid&#39;s data sources. Only returned for Auth Items created via Database Match. &#x60;null&#x60; or empty string: Neither micro-deposit-based verification nor database verification are being used for the Item. * @return verificationStatus **/ @javax.annotation.Nullable @ApiModelProperty(value = "Indicates an Item's micro-deposit-based verification or database verification status. This field is only populated when using Auth and falling back to micro-deposit or database verification. Possible values are: `pending_automatic_verification`: The Item is pending automatic verification. `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the code. `automatically_verified`: The Item has successfully been automatically verified. `manually_verified`: The Item has successfully been manually verified. `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `unsent`: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit. `database_insights_pending`: The Database Auth result is pending and will be available upon Auth request. `database_insights_fail`: The Item's numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth. `database_insights_pass`: The Item's numbers have been verified using Plaid's data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth. `database_insights_pass_with_caution`: The Item's numbers have been verified using Plaid's data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth. `database_matched`: (deprecated) The Item has successfully been verified using Plaid's data sources. Only returned for Auth Items created via Database Match. `null` or empty string: Neither micro-deposit-based verification nor database verification are being used for the Item.") public VerificationStatusEnum getVerificationStatus() { return verificationStatus; } public void setVerificationStatus(VerificationStatusEnum verificationStatus) { this.verificationStatus = verificationStatus; } public AccountBase verificationName(String verificationName) { this.verificationName = verificationName; return this; } /** * The account holder name that was used for micro-deposit and/or database verification. Only returned for Auth Items created via micro-deposit or database verification. This name was manually-entered by the user during Link, unless it was otherwise provided via the &#x60;user.legal_name&#x60; request field in &#x60;/link/token/create&#x60; for the Link session that created the Item. * @return verificationName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The account holder name that was used for micro-deposit and/or database verification. Only returned for Auth Items created via micro-deposit or database verification. This name was manually-entered by the user during Link, unless it was otherwise provided via the `user.legal_name` request field in `/link/token/create` for the Link session that created the Item.") public String getVerificationName() { return verificationName; } public void setVerificationName(String verificationName) { this.verificationName = verificationName; } public AccountBase verificationInsights(AccountVerificationInsights verificationInsights) { this.verificationInsights = verificationInsights; return this; } /** * Get verificationInsights * @return verificationInsights **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AccountVerificationInsights getVerificationInsights() { return verificationInsights; } public void setVerificationInsights(AccountVerificationInsights verificationInsights) { this.verificationInsights = verificationInsights; } public AccountBase persistentAccountId(String persistentAccountId) { this.persistentAccountId = persistentAccountId; return this; } /** * A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This field is currently supported only for Items at institutions that use Tokenized Account Numbers (i.e., Chase and PNC, and in May 2025 US Bank). Because these accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify an account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field is populated for TAN-based institutions (&#x60;ins_56&#x60;, &#x60;ins_13&#x60;) as well as the OAuth Sandbox institution (&#x60;ins_127287&#x60;); in Production, it will only be populated for accounts at applicable institutions. * @return persistentAccountId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This field is currently supported only for Items at institutions that use Tokenized Account Numbers (i.e., Chase and PNC, and in May 2025 US Bank). Because these accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify an account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field is populated for TAN-based institutions (`ins_56`, `ins_13`) as well as the OAuth Sandbox institution (`ins_127287`); in Production, it will only be populated for accounts at applicable institutions.") public String getPersistentAccountId() { return persistentAccountId; } public void setPersistentAccountId(String persistentAccountId) { this.persistentAccountId = persistentAccountId; } public AccountBase holderCategory(AccountHolderCategory holderCategory) { this.holderCategory = holderCategory; return this; } /** * Get holderCategory * @return holderCategory **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AccountHolderCategory getHolderCategory() { return holderCategory; } public void setHolderCategory(AccountHolderCategory holderCategory) { this.holderCategory = holderCategory; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AccountBase accountBase = (AccountBase) o; return Objects.equals(this.accountId, accountBase.accountId) && Objects.equals(this.balances, accountBase.balances) && Objects.equals(this.mask, accountBase.mask) && Objects.equals(this.name, accountBase.name) && Objects.equals(this.officialName, accountBase.officialName) && Objects.equals(this.type, accountBase.type) && Objects.equals(this.subtype, accountBase.subtype) && Objects.equals(this.verificationStatus, accountBase.verificationStatus) && Objects.equals(this.verificationName, accountBase.verificationName) && Objects.equals(this.verificationInsights, accountBase.verificationInsights) && Objects.equals(this.persistentAccountId, accountBase.persistentAccountId) && Objects.equals(this.holderCategory, accountBase.holderCategory); } @Override public int hashCode() { return Objects.hash(accountId, balances, mask, name, officialName, type, subtype, verificationStatus, verificationName, verificationInsights, persistentAccountId, holderCategory); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AccountBase {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" balances: ").append(toIndentedString(balances)).append("\n"); sb.append(" mask: ").append(toIndentedString(mask)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" officialName: ").append(toIndentedString(officialName)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" subtype: ").append(toIndentedString(subtype)).append("\n"); sb.append(" verificationStatus: ").append(toIndentedString(verificationStatus)).append("\n"); sb.append(" verificationName: ").append(toIndentedString(verificationName)).append("\n"); sb.append(" verificationInsights: ").append(toIndentedString(verificationInsights)).append("\n"); sb.append(" persistentAccountId: ").append(toIndentedString(persistentAccountId)).append("\n"); sb.append(" holderCategory: ").append(toIndentedString(holderCategory)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/RemovedTransaction.java
src/main/java/com/plaid/client/model/RemovedTransaction.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * A representation of a removed transaction */ @ApiModel(description = "A representation of a removed transaction") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class RemovedTransaction { public static final String SERIALIZED_NAME_TRANSACTION_ID = "transaction_id"; @SerializedName(SERIALIZED_NAME_TRANSACTION_ID) private String transactionId; public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public RemovedTransaction transactionId(String transactionId) { this.transactionId = transactionId; return this; } /** * The ID of the removed transaction. * @return transactionId **/ @ApiModelProperty(required = true, value = "The ID of the removed transaction.") public String getTransactionId() { return transactionId; } public void setTransactionId(String transactionId) { this.transactionId = transactionId; } public RemovedTransaction accountId(String accountId) { this.accountId = accountId; return this; } /** * The ID of the account of the removed transaction. * @return accountId **/ @ApiModelProperty(required = true, value = "The ID of the account of the removed transaction.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } RemovedTransaction removedTransaction = (RemovedTransaction) o; return Objects.equals(this.transactionId, removedTransaction.transactionId) && Objects.equals(this.accountId, removedTransaction.accountId); } @Override public int hashCode() { return Objects.hash(transactionId, accountId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class RemovedTransaction {\n"); sb.append(" transactionId: ").append(toIndentedString(transactionId)).append("\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkSessionCraDocumentUploadResult.java
src/main/java/com/plaid/client/model/LinkSessionCraDocumentUploadResult.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The details of a document upload CRA session in link */ @ApiModel(description = "The details of a document upload CRA session in link") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkSessionCraDocumentUploadResult { public static final String SERIALIZED_NAME_NUM_BANK_STATEMENTS_UPLOADED = "num_bank_statements_uploaded"; @SerializedName(SERIALIZED_NAME_NUM_BANK_STATEMENTS_UPLOADED) private Integer numBankStatementsUploaded; public LinkSessionCraDocumentUploadResult numBankStatementsUploaded(Integer numBankStatementsUploaded) { this.numBankStatementsUploaded = numBankStatementsUploaded; return this; } /** * The number of bank statements uploaded by the user. * @return numBankStatementsUploaded **/ @ApiModelProperty(required = true, value = "The number of bank statements uploaded by the user.") public Integer getNumBankStatementsUploaded() { return numBankStatementsUploaded; } public void setNumBankStatementsUploaded(Integer numBankStatementsUploaded) { this.numBankStatementsUploaded = numBankStatementsUploaded; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkSessionCraDocumentUploadResult linkSessionCraDocumentUploadResult = (LinkSessionCraDocumentUploadResult) o; return Objects.equals(this.numBankStatementsUploaded, linkSessionCraDocumentUploadResult.numBankStatementsUploaded); } @Override public int hashCode() { return Objects.hash(numBankStatementsUploaded); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkSessionCraDocumentUploadResult {\n"); sb.append(" numBankStatementsUploaded: ").append(toIndentedString(numBankStatementsUploaded)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorTransactionsRecurringGetRequest.java
src/main/java/com/plaid/client/model/ProcessorTransactionsRecurringGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.TransactionsRecurringGetRequestOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * ProcessorTransactionsRecurringGetRequest defines the request schema for &#x60;/processor/transactions/recurring/get&#x60; */ @ApiModel(description = "ProcessorTransactionsRecurringGetRequest defines the request schema for `/processor/transactions/recurring/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorTransactionsRecurringGetRequest { 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 static final String SERIALIZED_NAME_OPTIONS = "options"; @SerializedName(SERIALIZED_NAME_OPTIONS) private TransactionsRecurringGetRequestOptions options; public ProcessorTransactionsRecurringGetRequest 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 ProcessorTransactionsRecurringGetRequest 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 ProcessorTransactionsRecurringGetRequest 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 ProcessorTransactionsRecurringGetRequest options(TransactionsRecurringGetRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransactionsRecurringGetRequestOptions getOptions() { return options; } public void setOptions(TransactionsRecurringGetRequestOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProcessorTransactionsRecurringGetRequest processorTransactionsRecurringGetRequest = (ProcessorTransactionsRecurringGetRequest) o; return Objects.equals(this.clientId, processorTransactionsRecurringGetRequest.clientId) && Objects.equals(this.processorToken, processorTransactionsRecurringGetRequest.processorToken) && Objects.equals(this.secret, processorTransactionsRecurringGetRequest.secret) && Objects.equals(this.options, processorTransactionsRecurringGetRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, processorToken, secret, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorTransactionsRecurringGetRequest {\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(" 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/InvestmentsAuthAccountDetails401k.java
src/main/java/com/plaid/client/model/InvestmentsAuthAccountDetails401k.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.InvestmentsAuth401kContributionDetails; import com.plaid.client.model.InvestmentsAuth401kFeeDetails; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Additional account fee and contribution information for 401k type accounts. */ @ApiModel(description = "Additional account fee and contribution information for 401k type accounts.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InvestmentsAuthAccountDetails401k { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_FEE_DETAILS = "fee_details"; @SerializedName(SERIALIZED_NAME_FEE_DETAILS) private InvestmentsAuth401kFeeDetails feeDetails; public static final String SERIALIZED_NAME_CONTRIBUTION_DETAILS = "contribution_details"; @SerializedName(SERIALIZED_NAME_CONTRIBUTION_DETAILS) private InvestmentsAuth401kContributionDetails contributionDetails; public InvestmentsAuthAccountDetails401k accountId(String accountId) { this.accountId = accountId; return this; } /** * The ID of the 401k account. * @return accountId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ID of the 401k account.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public InvestmentsAuthAccountDetails401k feeDetails(InvestmentsAuth401kFeeDetails feeDetails) { this.feeDetails = feeDetails; return this; } /** * Get feeDetails * @return feeDetails **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public InvestmentsAuth401kFeeDetails getFeeDetails() { return feeDetails; } public void setFeeDetails(InvestmentsAuth401kFeeDetails feeDetails) { this.feeDetails = feeDetails; } public InvestmentsAuthAccountDetails401k contributionDetails(InvestmentsAuth401kContributionDetails contributionDetails) { this.contributionDetails = contributionDetails; return this; } /** * Get contributionDetails * @return contributionDetails **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public InvestmentsAuth401kContributionDetails getContributionDetails() { return contributionDetails; } public void setContributionDetails(InvestmentsAuth401kContributionDetails contributionDetails) { this.contributionDetails = contributionDetails; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } InvestmentsAuthAccountDetails401k investmentsAuthAccountDetails401k = (InvestmentsAuthAccountDetails401k) o; return Objects.equals(this.accountId, investmentsAuthAccountDetails401k.accountId) && Objects.equals(this.feeDetails, investmentsAuthAccountDetails401k.feeDetails) && Objects.equals(this.contributionDetails, investmentsAuthAccountDetails401k.contributionDetails); } @Override public int hashCode() { return Objects.hash(accountId, feeDetails, contributionDetails); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InvestmentsAuthAccountDetails401k {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" feeDetails: ").append(toIndentedString(feeDetails)).append("\n"); sb.append(" contributionDetails: ").append(toIndentedString(contributionDetails)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetTransactionCategoryType.java
src/main/java/com/plaid/client/model/AssetTransactionCategoryType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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; /** * Asset Transaction Category Type Enumerated derived by Vendor. */ @JsonAdapter(AssetTransactionCategoryType.Adapter.class) public enum AssetTransactionCategoryType { ATMFEE("ATMFee"), ADVERTISING("Advertising"), AIRTRAVEL("AirTravel"), ALCOHOLBARS("AlcoholBars"), ALLOWANCE("Allowance"), AMUSEMENT("Amusement"), ARTS("Arts"), AUTOTRANSPORT("AutoTransport"), AUTOINSURANCE("AutoInsurance"), AUTOPAYMENT("AutoPayment"), BABYSUPPLIES("BabySupplies"), BABYSITTERDAYCARE("BabysitterDaycare"), BANKFEE("BankFee"), BILLSUTILITIES("BillsUtilities"), BONUS("Bonus"), BOOKSSUPPLIES("BooksSupplies"), BUSINESS_SERVICES("Business Services"), BUY("Buy"), CASHATM("CashATM"), CHARITY("Charity"), CHECK("Check"), CHILDSUPPORT("ChildSupport"), CLOTHING("Clothing"), COFFEESHOPS("CoffeeShops"), CREDITCARDPAYMENT("CreditCardPayment"), DENTIST("Dentist"), DOCTOR("Doctor"), EDUCATION("Education"), ELECTRONICSSOFTWARE("ElectronicsSoftware"), ENTERTAINMENT("Entertainment"), EYECARE("Eyecare"), FASTFOOD("FastFood"), FEDERALTAX("FederalTax"), FEESCHARGES("FeesCharges"), FINANCECHARGE("FinanceCharge"), FINANCIAL("Financial"), FINANCIALADVISOR("FinancialAdvisor"), FOODDINING("FoodDining"), FURNISHINGS("Furnishings"), GASFUEL("GasFuel"), GIFTSDONATIONS("GiftsDonations"), GROCERIES("Groceries"), GYM("Gym"), HAIR("Hair"), HEALTHFITNESS("HealthFitness"), HEALTHINSURANCE("HealthInsurance"), HOBBIES("Hobbies"), HOME("Home"), HOMEIMPROVEMENT("HomeImprovement"), HOMEINSURANCE("HomeInsurance"), HOMEPHONE("HomePhone"), HOMESERVICES("HomeServices"), HOMESUPPLIES("HomeSupplies"), HOTEL("Hotel"), INCOME("Income"), INTERESTINCOME("InterestIncome"), INTERNET("Internet"), INVESTMENTS("Investments"), KIDS("Kids"), KIDSACTIVITIES("KidsActivities"), LATEFEE("LateFee"), LAUNDRY("Laundry"), LAWNGARDEN("LawnGarden"), LEGAL("Legal"), LIFEINSURANCE("LifeInsurance"), LOANINSURANCE("LoanInsurance"), LOANPAYMENT("LoanPayment"), LOANS("Loans"), MOBILEPHONE("MobilePhone"), MORTGAGERENT("MortgageRent"), MOVIESDVDS("MoviesDVDs"), MUSIC("Music"), NEWSPAPERSMAGAZINES("NewspapersMagazines"), OFFICESUPPLIES("OfficeSupplies"), PARKING("Parking"), PAYCHECK("Paycheck"), PERSONALCARE("PersonalCare"), PETFOODSUPPLIES("PetFoodSupplies"), PETGROOMING("PetGrooming"), PETS("Pets"), PHARMACY("Pharmacy"), PRINTING("Printing"), PROPERTY_TAX("Property Tax"), PUBLIC_TRANSPORTATION("Public Transportation"), REIMBURSEMENT("Reimbursement"), RENTALCARTAXI("RentalCarTaxi"), RESTAURANTS("Restaurants"), SALESTAX("SalesTax"), SERVICEPARTS("ServiceParts"), SERVICEFEE("ServiceFee"), SHIPPING("Shipping"), SHOPPING("Shopping"), SPAMASSAGE("SpaMassage"), SPORTINGGOODS("SportingGoods"), SPORTS("Sports"), STATETAX("StateTax"), STUDENT_LOAN("Student Loan"), TAXES("Taxes"), TELEVISION("Television"), TOYS("Toys"), TRANSFER("Transfer"), TRAVEL("Travel"), TUITION("Tuition"), UNCATEGORIZED("Uncategorized"), UTILITIES("Utilities"), VACATION("Vacation"), VETERINARY("Veterinary"), // 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; AssetTransactionCategoryType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static AssetTransactionCategoryType fromValue(String value) { for (AssetTransactionCategoryType b : AssetTransactionCategoryType.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<AssetTransactionCategoryType> { @Override public void write(final JsonWriter jsonWriter, final AssetTransactionCategoryType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public AssetTransactionCategoryType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return AssetTransactionCategoryType.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/BankTransfersEventsUpdateWebhookForAuth.java
src/main/java/com/plaid/client/model/BankTransfersEventsUpdateWebhookForAuth.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.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 new ACH events are available. To begin receiving this webhook, you must first register your webhook listener endpoint via the [webhooks page in the Dashboard](https://dashboard.plaid.com/team/webhooks). The &#x60;BANK_TRANSFERS_EVENTS_UPDATE&#x60; webhook can be used to track the progress of ACH transfers used in [micro-deposit verification](https:///docs/auth/coverage/microdeposit-events/). Receiving this webhook indicates you should fetch the new events from &#x60;/bank_transfer/event/sync&#x60;. Note that [Transfer](https://plaid.com/docs/transfer) customers should use Transfer webhooks instead of using &#x60;BANK_TRANSFERS_EVENTS_UPDATE&#x60;; see [micro-deposit events documentation](https://plaid.com/docs/auth/coverage/microdeposit-events/) for more details. */ @ApiModel(description = "Fired when new ACH events are available. To begin receiving this webhook, you must first register your webhook listener endpoint via the [webhooks page in the Dashboard](https://dashboard.plaid.com/team/webhooks). The `BANK_TRANSFERS_EVENTS_UPDATE` webhook can be used to track the progress of ACH transfers used in [micro-deposit verification](https:///docs/auth/coverage/microdeposit-events/). Receiving this webhook indicates you should fetch the new events from `/bank_transfer/event/sync`. Note that [Transfer](https://plaid.com/docs/transfer) customers should use Transfer webhooks instead of using `BANK_TRANSFERS_EVENTS_UPDATE`; see [micro-deposit events documentation](https://plaid.com/docs/auth/coverage/microdeposit-events/) for more details.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BankTransfersEventsUpdateWebhookForAuth { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public BankTransfersEventsUpdateWebhookForAuth webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;BANK_TRANSFERS&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`BANK_TRANSFERS`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public BankTransfersEventsUpdateWebhookForAuth webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;BANK_TRANSFERS_EVENTS_UPDATE&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`BANK_TRANSFERS_EVENTS_UPDATE`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public BankTransfersEventsUpdateWebhookForAuth 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; } BankTransfersEventsUpdateWebhookForAuth bankTransfersEventsUpdateWebhookForAuth = (BankTransfersEventsUpdateWebhookForAuth) o; return Objects.equals(this.webhookType, bankTransfersEventsUpdateWebhookForAuth.webhookType) && Objects.equals(this.webhookCode, bankTransfersEventsUpdateWebhookForAuth.webhookCode) && Objects.equals(this.environment, bankTransfersEventsUpdateWebhookForAuth.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BankTransfersEventsUpdateWebhookForAuth {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" environment: ").append(toIndentedString(environment)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditPayrollIncomeRefreshRequest.java
src/main/java/com/plaid/client/model/CreditPayrollIncomeRefreshRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CreditPayrollIncomeRefreshRequestOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * CreditPayrollIncomeRefreshRequest defines the request schema for &#x60;/credit/payroll_income/refresh&#x60; */ @ApiModel(description = "CreditPayrollIncomeRefreshRequest defines the request schema for `/credit/payroll_income/refresh`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditPayrollIncomeRefreshRequest { 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_OPTIONS = "options"; @SerializedName(SERIALIZED_NAME_OPTIONS) private CreditPayrollIncomeRefreshRequestOptions options; public CreditPayrollIncomeRefreshRequest 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 CreditPayrollIncomeRefreshRequest 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 CreditPayrollIncomeRefreshRequest 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 CreditPayrollIncomeRefreshRequest options(CreditPayrollIncomeRefreshRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CreditPayrollIncomeRefreshRequestOptions getOptions() { return options; } public void setOptions(CreditPayrollIncomeRefreshRequestOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditPayrollIncomeRefreshRequest creditPayrollIncomeRefreshRequest = (CreditPayrollIncomeRefreshRequest) o; return Objects.equals(this.clientId, creditPayrollIncomeRefreshRequest.clientId) && Objects.equals(this.secret, creditPayrollIncomeRefreshRequest.secret) && Objects.equals(this.userToken, creditPayrollIncomeRefreshRequest.userToken) && Objects.equals(this.options, creditPayrollIncomeRefreshRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, secret, userToken, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditPayrollIncomeRefreshRequest {\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(" 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/ProcessorIdentityGetResponse.java
src/main/java/com/plaid/client/model/ProcessorIdentityGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AccountIdentity; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * ProcessorIdentityGetResponse defines the response schema for &#x60;/processor/identity/get&#x60; */ @ApiModel(description = "ProcessorIdentityGetResponse defines the response schema for `/processor/identity/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorIdentityGetResponse { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) private AccountIdentity account; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public ProcessorIdentityGetResponse account(AccountIdentity account) { this.account = account; return this; } /** * Get account * @return account **/ @ApiModelProperty(required = true, value = "") public AccountIdentity getAccount() { return account; } public void setAccount(AccountIdentity account) { this.account = account; } public ProcessorIdentityGetResponse 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; } ProcessorIdentityGetResponse processorIdentityGetResponse = (ProcessorIdentityGetResponse) o; return Objects.equals(this.account, processorIdentityGetResponse.account) && Objects.equals(this.requestId, processorIdentityGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(account, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorIdentityGetResponse {\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/LoanPaymentsMerchantCounts.java
src/main/java/com/plaid/client/model/LoanPaymentsMerchantCounts.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.math.BigDecimal; /** * Details regarding the number of unique loan payment merchants */ @ApiModel(description = "Details regarding the number of unique loan payment merchants") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LoanPaymentsMerchantCounts { public static final String SERIALIZED_NAME_BASELINE_COUNT = "baseline_count"; @SerializedName(SERIALIZED_NAME_BASELINE_COUNT) private Double baselineCount; public static final String SERIALIZED_NAME_CURRENT_COUNT = "current_count"; @SerializedName(SERIALIZED_NAME_CURRENT_COUNT) private Double currentCount; public LoanPaymentsMerchantCounts baselineCount(Double baselineCount) { this.baselineCount = baselineCount; return this; } /** * The number of unique loan payment merchants detected in the 30 days before the subscription date * @return baselineCount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of unique loan payment merchants detected in the 30 days before the subscription date") public Double getBaselineCount() { return baselineCount; } public void setBaselineCount(Double baselineCount) { this.baselineCount = baselineCount; } public LoanPaymentsMerchantCounts currentCount(Double currentCount) { this.currentCount = currentCount; return this; } /** * The current number of unique loan payment merchants detected in the last 30 days * @return currentCount **/ @ApiModelProperty(required = true, value = "The current number of unique loan payment merchants detected in the last 30 days") public Double getCurrentCount() { return currentCount; } public void setCurrentCount(Double currentCount) { this.currentCount = currentCount; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LoanPaymentsMerchantCounts loanPaymentsMerchantCounts = (LoanPaymentsMerchantCounts) o; return Objects.equals(this.baselineCount, loanPaymentsMerchantCounts.baselineCount) && Objects.equals(this.currentCount, loanPaymentsMerchantCounts.currentCount); } @Override public int hashCode() { return Objects.hash(baselineCount, currentCount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LoanPaymentsMerchantCounts {\n"); sb.append(" baselineCount: ").append(toIndentedString(baselineCount)).append("\n"); sb.append(" currentCount: ").append(toIndentedString(currentCount)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IncomeVerificationPayrollFlowType.java
src/main/java/com/plaid/client/model/IncomeVerificationPayrollFlowType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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; /** * Flow types to retrieve payroll income data */ @JsonAdapter(IncomeVerificationPayrollFlowType.Adapter.class) public enum IncomeVerificationPayrollFlowType { DIGITAL_INCOME("payroll_digital_income"), DOCUMENT_INCOME("payroll_document_income"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; IncomeVerificationPayrollFlowType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static IncomeVerificationPayrollFlowType fromValue(String value) { for (IncomeVerificationPayrollFlowType b : IncomeVerificationPayrollFlowType.values()) { if (b.value.equals(value)) { return b; } } return IncomeVerificationPayrollFlowType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<IncomeVerificationPayrollFlowType> { @Override public void write(final JsonWriter jsonWriter, final IncomeVerificationPayrollFlowType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public IncomeVerificationPayrollFlowType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return IncomeVerificationPayrollFlowType.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/PaymentMeta.java
src/main/java/com/plaid/client/model/PaymentMeta.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Transaction information specific to inter-bank transfers. If the transaction was not an inter-bank transfer, all fields will be &#x60;null&#x60;. If the &#x60;transactions&#x60; object was returned by a Transactions endpoint such as &#x60;/transactions/sync&#x60; or &#x60;/transactions/get&#x60;, the &#x60;payment_meta&#x60; key will always appear, but no data elements are guaranteed. If the &#x60;transactions&#x60; object was returned by an Assets endpoint such as &#x60;/asset_report/get/&#x60; or &#x60;/asset_report/pdf/get&#x60;, this field will only appear in an Asset Report with Insights. */ @ApiModel(description = "Transaction information specific to inter-bank transfers. If the transaction was not an inter-bank transfer, all fields will be `null`. If the `transactions` object was returned by a Transactions endpoint such as `/transactions/sync` or `/transactions/get`, the `payment_meta` key will always appear, but no data elements are guaranteed. If the `transactions` object was returned by an Assets endpoint such as `/asset_report/get/` or `/asset_report/pdf/get`, this field will only appear in an Asset Report with Insights.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentMeta { public static final String SERIALIZED_NAME_REFERENCE_NUMBER = "reference_number"; @SerializedName(SERIALIZED_NAME_REFERENCE_NUMBER) private String referenceNumber; public static final String SERIALIZED_NAME_PPD_ID = "ppd_id"; @SerializedName(SERIALIZED_NAME_PPD_ID) private String ppdId; public static final String SERIALIZED_NAME_PAYEE = "payee"; @SerializedName(SERIALIZED_NAME_PAYEE) private String payee; public static final String SERIALIZED_NAME_BY_ORDER_OF = "by_order_of"; @SerializedName(SERIALIZED_NAME_BY_ORDER_OF) private String byOrderOf; public static final String SERIALIZED_NAME_PAYER = "payer"; @SerializedName(SERIALIZED_NAME_PAYER) private String payer; public static final String SERIALIZED_NAME_PAYMENT_METHOD = "payment_method"; @SerializedName(SERIALIZED_NAME_PAYMENT_METHOD) private String paymentMethod; public static final String SERIALIZED_NAME_PAYMENT_PROCESSOR = "payment_processor"; @SerializedName(SERIALIZED_NAME_PAYMENT_PROCESSOR) private String paymentProcessor; public static final String SERIALIZED_NAME_REASON = "reason"; @SerializedName(SERIALIZED_NAME_REASON) private String reason; public PaymentMeta referenceNumber(String referenceNumber) { this.referenceNumber = referenceNumber; return this; } /** * The transaction reference number supplied by the financial institution. * @return referenceNumber **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The transaction reference number supplied by the financial institution.") public String getReferenceNumber() { return referenceNumber; } public void setReferenceNumber(String referenceNumber) { this.referenceNumber = referenceNumber; } public PaymentMeta ppdId(String ppdId) { this.ppdId = ppdId; return this; } /** * The ACH PPD ID for the payer. * @return ppdId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ACH PPD ID for the payer.") public String getPpdId() { return ppdId; } public void setPpdId(String ppdId) { this.ppdId = ppdId; } public PaymentMeta payee(String payee) { this.payee = payee; return this; } /** * For transfers, the party that is receiving the transaction. * @return payee **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "For transfers, the party that is receiving the transaction.") public String getPayee() { return payee; } public void setPayee(String payee) { this.payee = payee; } public PaymentMeta byOrderOf(String byOrderOf) { this.byOrderOf = byOrderOf; return this; } /** * The party initiating a wire transfer. Will be &#x60;null&#x60; if the transaction is not a wire transfer. * @return byOrderOf **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The party initiating a wire transfer. Will be `null` if the transaction is not a wire transfer.") public String getByOrderOf() { return byOrderOf; } public void setByOrderOf(String byOrderOf) { this.byOrderOf = byOrderOf; } public PaymentMeta payer(String payer) { this.payer = payer; return this; } /** * For transfers, the party that is paying the transaction. * @return payer **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "For transfers, the party that is paying the transaction.") public String getPayer() { return payer; } public void setPayer(String payer) { this.payer = payer; } public PaymentMeta paymentMethod(String paymentMethod) { this.paymentMethod = paymentMethod; return this; } /** * The type of transfer, e.g. &#39;ACH&#39; * @return paymentMethod **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The type of transfer, e.g. 'ACH'") public String getPaymentMethod() { return paymentMethod; } public void setPaymentMethod(String paymentMethod) { this.paymentMethod = paymentMethod; } public PaymentMeta paymentProcessor(String paymentProcessor) { this.paymentProcessor = paymentProcessor; return this; } /** * The name of the payment processor * @return paymentProcessor **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The name of the payment processor") public String getPaymentProcessor() { return paymentProcessor; } public void setPaymentProcessor(String paymentProcessor) { this.paymentProcessor = paymentProcessor; } public PaymentMeta reason(String reason) { this.reason = reason; return this; } /** * The payer-supplied description of the transfer. * @return reason **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The payer-supplied description of the transfer.") public String getReason() { return reason; } public void setReason(String reason) { this.reason = reason; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaymentMeta paymentMeta = (PaymentMeta) o; return Objects.equals(this.referenceNumber, paymentMeta.referenceNumber) && Objects.equals(this.ppdId, paymentMeta.ppdId) && Objects.equals(this.payee, paymentMeta.payee) && Objects.equals(this.byOrderOf, paymentMeta.byOrderOf) && Objects.equals(this.payer, paymentMeta.payer) && Objects.equals(this.paymentMethod, paymentMeta.paymentMethod) && Objects.equals(this.paymentProcessor, paymentMeta.paymentProcessor) && Objects.equals(this.reason, paymentMeta.reason); } @Override public int hashCode() { return Objects.hash(referenceNumber, ppdId, payee, byOrderOf, payer, paymentMethod, paymentProcessor, reason); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentMeta {\n"); sb.append(" referenceNumber: ").append(toIndentedString(referenceNumber)).append("\n"); sb.append(" ppdId: ").append(toIndentedString(ppdId)).append("\n"); sb.append(" payee: ").append(toIndentedString(payee)).append("\n"); sb.append(" byOrderOf: ").append(toIndentedString(byOrderOf)).append("\n"); sb.append(" payer: ").append(toIndentedString(payer)).append("\n"); sb.append(" paymentMethod: ").append(toIndentedString(paymentMethod)).append("\n"); sb.append(" paymentProcessor: ").append(toIndentedString(paymentProcessor)).append("\n"); sb.append(" reason: ").append(toIndentedString(reason)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaystubOverrideNetPay.java
src/main/java/com/plaid/client/model/PaystubOverrideNetPay.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 information about the net pay amount on the paystub. */ @ApiModel(description = "An object representing information about the net pay amount on the paystub.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaystubOverrideNetPay { 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 PaystubOverrideNetPay description(String description) { this.description = description; return this; } /** * Description of the net pay * @return description **/ @javax.annotation.Nullable @ApiModelProperty(value = "Description of the net pay") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public PaystubOverrideNetPay currency(String currency) { this.currency = currency; return this; } /** * The ISO-4217 currency code of the net pay. * @return currency **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ISO-4217 currency code of the net pay.") public String getCurrency() { return currency; } public void setCurrency(String currency) { this.currency = currency; } public PaystubOverrideNetPay ytdAmount(Double ytdAmount) { this.ytdAmount = ytdAmount; return this; } /** * The year-to-date amount of the net pay * @return ytdAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The year-to-date amount of the net pay") 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; } PaystubOverrideNetPay paystubOverrideNetPay = (PaystubOverrideNetPay) o; return Objects.equals(this.description, paystubOverrideNetPay.description) && Objects.equals(this.currency, paystubOverrideNetPay.currency) && Objects.equals(this.ytdAmount, paystubOverrideNetPay.ytdAmount); } @Override public int hashCode() { return Objects.hash(description, currency, ytdAmount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaystubOverrideNetPay {\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/CreditACHClass.java
src/main/java/com/plaid/client/model/CreditACHClass.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * Specifies the use case of the transfer. Required for transfers on an ACH network. &#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 in writing either in person or via an electronic document signing, e.g. Docusign, by the consumer. 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. */ @JsonAdapter(CreditACHClass.Adapter.class) public enum CreditACHClass { CCD("ccd"), PPD("ppd"), WEB("web"), // 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; CreditACHClass(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static CreditACHClass fromValue(String value) { for (CreditACHClass b : CreditACHClass.values()) { if (b.value.equals(value)) { return b; } } return CreditACHClass.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<CreditACHClass> { @Override public void write(final JsonWriter jsonWriter, final CreditACHClass enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public CreditACHClass read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return CreditACHClass.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/CreditEmployerVerification.java
src/main/java/com/plaid/client/model/CreditEmployerVerification.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 containing employer data. */ @ApiModel(description = "An object containing employer data.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditEmployerVerification { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public CreditEmployerVerification name(String name) { this.name = name; return this; } /** * Name of employer. * @return name **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Name of employer.") public String getName() { return name; } public void setName(String name) { this.name = name; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditEmployerVerification creditEmployerVerification = (CreditEmployerVerification) o; return Objects.equals(this.name, creditEmployerVerification.name); } @Override public int hashCode() { return Objects.hash(name); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditEmployerVerification {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/FDXNotification.java
src/main/java/com/plaid/client/model/FDXNotification.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.FDXHateoasLink; import com.plaid.client.model.FDXNotificationCategory; import com.plaid.client.model.FDXNotificationPayload; import com.plaid.client.model.FDXNotificationPriority; import com.plaid.client.model.FDXNotificationSeverity; import com.plaid.client.model.FDXNotificationType; import com.plaid.client.model.FDXParty; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * Provides the base fields of a notification. Clients will read the &#x60;type&#x60; property to determine the expected notification payload */ @ApiModel(description = "Provides the base fields of a notification. Clients will read the `type` property to determine the expected notification payload") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class FDXNotification { public static final String SERIALIZED_NAME_NOTIFICATION_ID = "notificationId"; @SerializedName(SERIALIZED_NAME_NOTIFICATION_ID) private String notificationId; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private FDXNotificationType type; public static final String SERIALIZED_NAME_SENT_ON = "sentOn"; @SerializedName(SERIALIZED_NAME_SENT_ON) private OffsetDateTime sentOn; public static final String SERIALIZED_NAME_CATEGORY = "category"; @SerializedName(SERIALIZED_NAME_CATEGORY) private FDXNotificationCategory category; public static final String SERIALIZED_NAME_SEVERITY = "severity"; @SerializedName(SERIALIZED_NAME_SEVERITY) private FDXNotificationSeverity severity; public static final String SERIALIZED_NAME_PRIORITY = "priority"; @SerializedName(SERIALIZED_NAME_PRIORITY) private FDXNotificationPriority priority; public static final String SERIALIZED_NAME_PUBLISHER = "publisher"; @SerializedName(SERIALIZED_NAME_PUBLISHER) private FDXParty publisher; public static final String SERIALIZED_NAME_SUBSCRIBER = "subscriber"; @SerializedName(SERIALIZED_NAME_SUBSCRIBER) private FDXParty subscriber; public static final String SERIALIZED_NAME_NOTIFICATION_PAYLOAD = "notificationPayload"; @SerializedName(SERIALIZED_NAME_NOTIFICATION_PAYLOAD) private FDXNotificationPayload notificationPayload; public static final String SERIALIZED_NAME_URL = "url"; @SerializedName(SERIALIZED_NAME_URL) private FDXHateoasLink url; public FDXNotification notificationId(String notificationId) { this.notificationId = notificationId; return this; } /** * Id of notification * @return notificationId **/ @ApiModelProperty(required = true, value = "Id of notification") public String getNotificationId() { return notificationId; } public void setNotificationId(String notificationId) { this.notificationId = notificationId; } public FDXNotification type(FDXNotificationType type) { this.type = type; return this; } /** * Get type * @return type **/ @ApiModelProperty(required = true, value = "") public FDXNotificationType getType() { return type; } public void setType(FDXNotificationType type) { this.type = type; } public FDXNotification sentOn(OffsetDateTime sentOn) { this.sentOn = sentOn; return this; } /** * ISO 8601 date-time in format &#39;YYYY-MM-DDThh:mm:ss.nnn[Z|[+|-]hh:mm]&#39; according to [IETF RFC3339](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) * @return sentOn **/ @ApiModelProperty(example = "2021-07-15T14:46:41.375Z", required = true, value = "ISO 8601 date-time in format 'YYYY-MM-DDThh:mm:ss.nnn[Z|[+|-]hh:mm]' according to [IETF RFC3339](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14)") public OffsetDateTime getSentOn() { return sentOn; } public void setSentOn(OffsetDateTime sentOn) { this.sentOn = sentOn; } public FDXNotification category(FDXNotificationCategory category) { this.category = category; return this; } /** * Get category * @return category **/ @ApiModelProperty(required = true, value = "") public FDXNotificationCategory getCategory() { return category; } public void setCategory(FDXNotificationCategory category) { this.category = category; } public FDXNotification severity(FDXNotificationSeverity severity) { this.severity = severity; return this; } /** * Get severity * @return severity **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public FDXNotificationSeverity getSeverity() { return severity; } public void setSeverity(FDXNotificationSeverity severity) { this.severity = severity; } public FDXNotification priority(FDXNotificationPriority priority) { this.priority = priority; return this; } /** * Get priority * @return priority **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public FDXNotificationPriority getPriority() { return priority; } public void setPriority(FDXNotificationPriority priority) { this.priority = priority; } public FDXNotification publisher(FDXParty publisher) { this.publisher = publisher; return this; } /** * Get publisher * @return publisher **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public FDXParty getPublisher() { return publisher; } public void setPublisher(FDXParty publisher) { this.publisher = publisher; } public FDXNotification subscriber(FDXParty subscriber) { this.subscriber = subscriber; return this; } /** * Get subscriber * @return subscriber **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public FDXParty getSubscriber() { return subscriber; } public void setSubscriber(FDXParty subscriber) { this.subscriber = subscriber; } public FDXNotification notificationPayload(FDXNotificationPayload notificationPayload) { this.notificationPayload = notificationPayload; return this; } /** * Get notificationPayload * @return notificationPayload **/ @ApiModelProperty(required = true, value = "") public FDXNotificationPayload getNotificationPayload() { return notificationPayload; } public void setNotificationPayload(FDXNotificationPayload notificationPayload) { this.notificationPayload = notificationPayload; } public FDXNotification url(FDXHateoasLink url) { this.url = url; return this; } /** * Get url * @return url **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public FDXHateoasLink getUrl() { return url; } public void setUrl(FDXHateoasLink url) { this.url = url; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } FDXNotification fdXNotification = (FDXNotification) o; return Objects.equals(this.notificationId, fdXNotification.notificationId) && Objects.equals(this.type, fdXNotification.type) && Objects.equals(this.sentOn, fdXNotification.sentOn) && Objects.equals(this.category, fdXNotification.category) && Objects.equals(this.severity, fdXNotification.severity) && Objects.equals(this.priority, fdXNotification.priority) && Objects.equals(this.publisher, fdXNotification.publisher) && Objects.equals(this.subscriber, fdXNotification.subscriber) && Objects.equals(this.notificationPayload, fdXNotification.notificationPayload) && Objects.equals(this.url, fdXNotification.url); } @Override public int hashCode() { return Objects.hash(notificationId, type, sentOn, category, severity, priority, publisher, subscriber, notificationPayload, url); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class FDXNotification {\n"); sb.append(" notificationId: ").append(toIndentedString(notificationId)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" sentOn: ").append(toIndentedString(sentOn)).append("\n"); sb.append(" category: ").append(toIndentedString(category)).append("\n"); sb.append(" severity: ").append(toIndentedString(severity)).append("\n"); sb.append(" priority: ").append(toIndentedString(priority)).append("\n"); sb.append(" publisher: ").append(toIndentedString(publisher)).append("\n"); sb.append(" subscriber: ").append(toIndentedString(subscriber)).append("\n"); sb.append(" notificationPayload: ").append(toIndentedString(notificationPayload)).append("\n"); sb.append(" url: ").append(toIndentedString(url)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkSessionItemAddResult.java
src/main/java/com/plaid/client/model/LinkSessionItemAddResult.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.LinkSessionSuccessMetadataAccount; import com.plaid.client.model.LinkSessionSuccessMetadataInstitution; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * The details of an Item add in Link. */ @ApiModel(description = "The details of an Item add in Link.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkSessionItemAddResult { public static final String SERIALIZED_NAME_PUBLIC_TOKEN = "public_token"; @SerializedName(SERIALIZED_NAME_PUBLIC_TOKEN) private String publicToken; public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) private List<LinkSessionSuccessMetadataAccount> accounts = new ArrayList<>(); public static final String SERIALIZED_NAME_INSTITUTION = "institution"; @SerializedName(SERIALIZED_NAME_INSTITUTION) private LinkSessionSuccessMetadataInstitution institution; public LinkSessionItemAddResult publicToken(String publicToken) { this.publicToken = publicToken; return this; } /** * Returned once a user has successfully linked their Item. * @return publicToken **/ @ApiModelProperty(required = true, value = "Returned once a user has successfully linked their Item.") public String getPublicToken() { return publicToken; } public void setPublicToken(String publicToken) { this.publicToken = publicToken; } public LinkSessionItemAddResult accounts(List<LinkSessionSuccessMetadataAccount> accounts) { this.accounts = accounts; return this; } public LinkSessionItemAddResult addAccountsItem(LinkSessionSuccessMetadataAccount accountsItem) { this.accounts.add(accountsItem); return this; } /** * A list of accounts attached to the connected Item. If Account Select is enabled via the developer dashboard, &#x60;accounts&#x60; will only include selected accounts. * @return accounts **/ @ApiModelProperty(required = true, value = "A list of accounts attached to the connected Item. If Account Select is enabled via the developer dashboard, `accounts` will only include selected accounts.") public List<LinkSessionSuccessMetadataAccount> getAccounts() { return accounts; } public void setAccounts(List<LinkSessionSuccessMetadataAccount> accounts) { this.accounts = accounts; } public LinkSessionItemAddResult institution(LinkSessionSuccessMetadataInstitution institution) { this.institution = institution; return this; } /** * Get institution * @return institution **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public LinkSessionSuccessMetadataInstitution getInstitution() { return institution; } public void setInstitution(LinkSessionSuccessMetadataInstitution institution) { this.institution = institution; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkSessionItemAddResult linkSessionItemAddResult = (LinkSessionItemAddResult) o; return Objects.equals(this.publicToken, linkSessionItemAddResult.publicToken) && Objects.equals(this.accounts, linkSessionItemAddResult.accounts) && Objects.equals(this.institution, linkSessionItemAddResult.institution); } @Override public int hashCode() { return Objects.hash(publicToken, accounts, institution); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkSessionItemAddResult {\n"); sb.append(" publicToken: ").append(toIndentedString(publicToken)).append("\n"); sb.append(" accounts: ").append(toIndentedString(accounts)).append("\n"); sb.append(" institution: ").append(toIndentedString(institution)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IncomeSummaryFieldNumber.java
src/main/java/com/plaid/client/model/IncomeSummaryFieldNumber.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.VerificationStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Field number for income summary */ @ApiModel(description = "Field number for income summary") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IncomeSummaryFieldNumber { 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 IncomeSummaryFieldNumber 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 IncomeSummaryFieldNumber 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; } IncomeSummaryFieldNumber incomeSummaryFieldNumber = (IncomeSummaryFieldNumber) o; return Objects.equals(this.value, incomeSummaryFieldNumber.value) && Objects.equals(this.verificationStatus, incomeSummaryFieldNumber.verificationStatus); } @Override public int hashCode() { return Objects.hash(value, verificationStatus); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IncomeSummaryFieldNumber {\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/SandboxUserResetLoginResponse.java
src/main/java/com/plaid/client/model/SandboxUserResetLoginResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * SandboxUserResetLoginResponse defines the response schema for &#x60;/sandbox/user/reset_login&#x60; */ @ApiModel(description = "SandboxUserResetLoginResponse defines the response schema for `/sandbox/user/reset_login`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SandboxUserResetLoginResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public SandboxUserResetLoginResponse 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; } SandboxUserResetLoginResponse sandboxUserResetLoginResponse = (SandboxUserResetLoginResponse) o; return Objects.equals(this.requestId, sandboxUserResetLoginResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SandboxUserResetLoginResponse {\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/HistoricalBalance.java
src/main/java/com/plaid/client/model/HistoricalBalance.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 a balance held by an account in the past */ @ApiModel(description = "An object representing a balance held by an account in the past") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class HistoricalBalance { public static final String SERIALIZED_NAME_DATE = "date"; @SerializedName(SERIALIZED_NAME_DATE) private LocalDate date; public static final String SERIALIZED_NAME_CURRENT = "current"; @SerializedName(SERIALIZED_NAME_CURRENT) private Double current; 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 HistoricalBalance date(LocalDate date) { this.date = date; return this; } /** * The date of the calculated historical balance, in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD) * @return date **/ @ApiModelProperty(required = true, value = "The date of the calculated historical balance, in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD)") public LocalDate getDate() { return date; } public void setDate(LocalDate date) { this.date = date; } public HistoricalBalance current(Double current) { this.current = current; return this; } /** * The total amount of funds in the account, calculated from the &#x60;current&#x60; balance in the &#x60;balance&#x60; object by subtracting inflows and adding back outflows according to the posted date of each transaction. If the account has any pending transactions, historical balance amounts on or after the date of the earliest pending transaction may differ if retrieved in subsequent Asset Reports as a result of those pending transactions posting. * @return current **/ @ApiModelProperty(required = true, value = "The total amount of funds in the account, calculated from the `current` balance in the `balance` object by subtracting inflows and adding back outflows according to the posted date of each transaction. If the account has any pending transactions, historical balance amounts on or after the date of the earliest pending transaction may differ if retrieved in subsequent Asset Reports as a result of those pending transactions posting.") public Double getCurrent() { return current; } public void setCurrent(Double current) { this.current = current; } public HistoricalBalance isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO-4217 currency code of the balance. Always &#x60;null&#x60; if &#x60;unofficial_currency_code&#x60; is non-&#x60;null&#x60;. * @return isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ISO-4217 currency code of the balance. Always `null` if `unofficial_currency_code` is non-`null`.") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public HistoricalBalance unofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; return this; } /** * The unofficial currency code associated with the balance. 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(required = true, value = "The unofficial currency code associated with the balance. 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; } HistoricalBalance historicalBalance = (HistoricalBalance) o; return Objects.equals(this.date, historicalBalance.date) && Objects.equals(this.current, historicalBalance.current) && Objects.equals(this.isoCurrencyCode, historicalBalance.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, historicalBalance.unofficialCurrencyCode); } @Override public int hashCode() { return Objects.hash(date, current, isoCurrencyCode, unofficialCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class HistoricalBalance {\n"); sb.append(" date: ").append(toIndentedString(date)).append("\n"); sb.append(" current: ").append(toIndentedString(current)).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/CreditBankStatementUploadAccountOwner.java
src/main/java/com/plaid/client/model/CreditBankStatementUploadAccountOwner.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CreditBankStatementUploadAccountOwnerAddress; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object containing data about the owner of the bank account for the uploaded bank statement. */ @ApiModel(description = "An object containing data about the owner of the bank account for the uploaded bank statement.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditBankStatementUploadAccountOwner { 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 CreditBankStatementUploadAccountOwnerAddress address; public CreditBankStatementUploadAccountOwner name(String name) { this.name = name; return this; } /** * The name of the account owner * @return name **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The name of the account owner") public String getName() { return name; } public void setName(String name) { this.name = name; } public CreditBankStatementUploadAccountOwner address(CreditBankStatementUploadAccountOwnerAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @ApiModelProperty(required = true, value = "") public CreditBankStatementUploadAccountOwnerAddress getAddress() { return address; } public void setAddress(CreditBankStatementUploadAccountOwnerAddress address) { this.address = address; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditBankStatementUploadAccountOwner creditBankStatementUploadAccountOwner = (CreditBankStatementUploadAccountOwner) o; return Objects.equals(this.name, creditBankStatementUploadAccountOwner.name) && Objects.equals(this.address, creditBankStatementUploadAccountOwner.address); } @Override public int hashCode() { return Objects.hash(name, address); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditBankStatementUploadAccountOwner {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/DepositoryAccountSubtype.java
src/main/java/com/plaid/client/model/DepositoryAccountSubtype.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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; /** * Valid account subtypes for depository accounts. For a list containing descriptions of each subtype, see [Account schemas](https://plaid.com/docs/api/accounts/#StandaloneAccountType-depository). */ @JsonAdapter(DepositoryAccountSubtype.Adapter.class) public enum DepositoryAccountSubtype { CHECKING("checking"), SAVINGS("savings"), HSA("hsa"), CD("cd"), MONEY_MARKET("money market"), PAYPAL("paypal"), PREPAID("prepaid"), CASH_MANAGEMENT("cash management"), EBT("ebt"), ALL("all"), // 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; DepositoryAccountSubtype(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static DepositoryAccountSubtype fromValue(String value) { for (DepositoryAccountSubtype b : DepositoryAccountSubtype.values()) { if (b.value.equals(value)) { return b; } } return DepositoryAccountSubtype.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<DepositoryAccountSubtype> { @Override public void write(final JsonWriter jsonWriter, final DepositoryAccountSubtype enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public DepositoryAccountSubtype read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return DepositoryAccountSubtype.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/CraMonitoringInsightsSubscribeRequest.java
src/main/java/com/plaid/client/model/CraMonitoringInsightsSubscribeRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CreditBankIncomeCategory; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * CraMonitoringInsightsSubscribeRequest defines the request schema for &#x60;/cra/monitoring_insights/subscribe&#x60; */ @ApiModel(description = "CraMonitoringInsightsSubscribeRequest defines the request schema for `/cra/monitoring_insights/subscribe`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraMonitoringInsightsSubscribeRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_WEBHOOK = "webhook"; @SerializedName(SERIALIZED_NAME_WEBHOOK) private String webhook; public static final String SERIALIZED_NAME_INCOME_CATEGORIES = "income_categories"; @SerializedName(SERIALIZED_NAME_INCOME_CATEGORIES) private List<CreditBankIncomeCategory> incomeCategories = null; public static final String SERIALIZED_NAME_USER_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) private String userToken; public CraMonitoringInsightsSubscribeRequest 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 CraMonitoringInsightsSubscribeRequest 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 CraMonitoringInsightsSubscribeRequest userId(String userId) { this.userId = userId; return this; } /** * A unique user identifier, created by &#x60;/user/create&#x60;. Integrations that began using &#x60;/user/create&#x60; after December 10, 2025 use this field to identify a user instead of the &#x60;user_token&#x60;. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis). * @return userId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique user identifier, created by `/user/create`. Integrations that began using `/user/create` after December 10, 2025 use this field to identify a user instead of the `user_token`. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis).") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public CraMonitoringInsightsSubscribeRequest itemId(String itemId) { this.itemId = itemId; return this; } /** * The item ID to subscribe for Cash Flow Updates. * @return itemId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The item ID to subscribe for Cash Flow Updates.") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public CraMonitoringInsightsSubscribeRequest webhook(String webhook) { this.webhook = webhook; return this; } /** * URL to which Plaid will send Cash Flow Updates webhooks, for example when the requested Cash Flow Updates report is ready. * @return webhook **/ @ApiModelProperty(required = true, value = "URL to which Plaid will send Cash Flow Updates webhooks, for example when the requested Cash Flow Updates report is ready.") public String getWebhook() { return webhook; } public void setWebhook(String webhook) { this.webhook = webhook; } public CraMonitoringInsightsSubscribeRequest incomeCategories(List<CreditBankIncomeCategory> incomeCategories) { this.incomeCategories = incomeCategories; return this; } public CraMonitoringInsightsSubscribeRequest addIncomeCategoriesItem(CreditBankIncomeCategory incomeCategoriesItem) { if (this.incomeCategories == null) { this.incomeCategories = new ArrayList<>(); } this.incomeCategories.add(incomeCategoriesItem); return this; } /** * Income categories to include in Cash Flow Updates. If empty or &#x60;null&#x60;, this field will default to including all possible categories. * @return incomeCategories **/ @javax.annotation.Nullable @ApiModelProperty(value = "Income categories to include in Cash Flow Updates. If empty or `null`, this field will default to including all possible categories.") public List<CreditBankIncomeCategory> getIncomeCategories() { return incomeCategories; } public void setIncomeCategories(List<CreditBankIncomeCategory> incomeCategories) { this.incomeCategories = incomeCategories; } public CraMonitoringInsightsSubscribeRequest userToken(String userToken) { this.userToken = userToken; return this; } /** * The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the &#x60;user_token&#x60; field. All other customers should use the &#x60;user_id&#x60; instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis). * @return userToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the `user_token` field. All other customers should use the `user_id` instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis).") public String getUserToken() { return userToken; } public void setUserToken(String userToken) { this.userToken = userToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraMonitoringInsightsSubscribeRequest craMonitoringInsightsSubscribeRequest = (CraMonitoringInsightsSubscribeRequest) o; return Objects.equals(this.clientId, craMonitoringInsightsSubscribeRequest.clientId) && Objects.equals(this.secret, craMonitoringInsightsSubscribeRequest.secret) && Objects.equals(this.userId, craMonitoringInsightsSubscribeRequest.userId) && Objects.equals(this.itemId, craMonitoringInsightsSubscribeRequest.itemId) && Objects.equals(this.webhook, craMonitoringInsightsSubscribeRequest.webhook) && Objects.equals(this.incomeCategories, craMonitoringInsightsSubscribeRequest.incomeCategories) && Objects.equals(this.userToken, craMonitoringInsightsSubscribeRequest.userToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, userId, itemId, webhook, incomeCategories, userToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraMonitoringInsightsSubscribeRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" webhook: ").append(toIndentedString(webhook)).append("\n"); sb.append(" incomeCategories: ").append(toIndentedString(incomeCategories)).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/TransferFundingAccount.java
src/main/java/com/plaid/client/model/TransferFundingAccount.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 originator&#39;s funding account, linked with Plaid Link or &#x60;/transfer/migrate_account&#x60;. */ @ApiModel(description = "The originator's funding account, linked with Plaid Link or `/transfer/migrate_account`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferFundingAccount { 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 TransferFundingAccount 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 TransferFundingAccount accountId(String accountId) { this.accountId = accountId; return this; } /** * The Plaid &#x60;account_id&#x60; for the newly created Item. * @return accountId **/ @ApiModelProperty(required = true, value = "The Plaid `account_id` for the newly created Item.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferFundingAccount transferFundingAccount = (TransferFundingAccount) o; return Objects.equals(this.accessToken, transferFundingAccount.accessToken) && Objects.equals(this.accountId, transferFundingAccount.accountId); } @Override public int hashCode() { return Objects.hash(accessToken, accountId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferFundingAccount {\n"); sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProtectIncidentEvent.java
src/main/java/com/plaid/client/model/ProtectIncidentEvent.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.ProtectIncidentAmount; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * details about the incident event. */ @ApiModel(description = "details about the incident event.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProtectIncidentEvent { public static final String SERIALIZED_NAME_PROTECT_EVENT_ID = "protect_event_id"; @SerializedName(SERIALIZED_NAME_PROTECT_EVENT_ID) private String protectEventId; public static final String SERIALIZED_NAME_LINK_SESSION_ID = "link_session_id"; @SerializedName(SERIALIZED_NAME_LINK_SESSION_ID) private String linkSessionId; public static final String SERIALIZED_NAME_IDV_SESSION_ID = "idv_session_id"; @SerializedName(SERIALIZED_NAME_IDV_SESSION_ID) private String idvSessionId; public static final String SERIALIZED_NAME_SIGNAL_CLIENT_TRANSACTION_ID = "signal_client_transaction_id"; @SerializedName(SERIALIZED_NAME_SIGNAL_CLIENT_TRANSACTION_ID) private String signalClientTransactionId; public static final String SERIALIZED_NAME_INTERNAL_REFERENCE = "internal_reference"; @SerializedName(SERIALIZED_NAME_INTERNAL_REFERENCE) private String internalReference; public static final String SERIALIZED_NAME_TIME = "time"; @SerializedName(SERIALIZED_NAME_TIME) private OffsetDateTime time; public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private ProtectIncidentAmount amount; public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) private String accessToken; public ProtectIncidentEvent protectEventId(String protectEventId) { this.protectEventId = protectEventId; return this; } /** * A globally unique identifier representing a Protect event that may be associated with this incident. * @return protectEventId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A globally unique identifier representing a Protect event that may be associated with this incident.") public String getProtectEventId() { return protectEventId; } public void setProtectEventId(String protectEventId) { this.protectEventId = protectEventId; } public ProtectIncidentEvent linkSessionId(String linkSessionId) { this.linkSessionId = linkSessionId; return this; } /** * A unique identifier for a Link session that may be associated with this incident. * @return linkSessionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique identifier for a Link session that may be associated with this incident.") public String getLinkSessionId() { return linkSessionId; } public void setLinkSessionId(String linkSessionId) { this.linkSessionId = linkSessionId; } public ProtectIncidentEvent idvSessionId(String idvSessionId) { this.idvSessionId = idvSessionId; return this; } /** * A unique identifier for an Identity Verification session that may be associated with this incident. * @return idvSessionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique identifier for an Identity Verification session that may be associated with this incident.") public String getIdvSessionId() { return idvSessionId; } public void setIdvSessionId(String idvSessionId) { this.idvSessionId = idvSessionId; } public ProtectIncidentEvent signalClientTransactionId(String signalClientTransactionId) { this.signalClientTransactionId = signalClientTransactionId; return this; } /** * The unique ID used to refer to a Signal transaction evaluation that may be associated with this incident. * @return signalClientTransactionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The unique ID used to refer to a Signal transaction evaluation that may be associated with this incident.") public String getSignalClientTransactionId() { return signalClientTransactionId; } public void setSignalClientTransactionId(String signalClientTransactionId) { this.signalClientTransactionId = signalClientTransactionId; } public ProtectIncidentEvent internalReference(String internalReference) { this.internalReference = internalReference; return this; } /** * A unique ID representing the incident in your system. Personally identifiable information, such as an email address or phone number, should not be used in this field. * @return internalReference **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique ID representing the incident in your system. Personally identifiable information, such as an email address or phone number, should not be used in this field.") public String getInternalReference() { return internalReference; } public void setInternalReference(String internalReference) { this.internalReference = internalReference; } public ProtectIncidentEvent time(OffsetDateTime time) { this.time = time; return this; } /** * The timestamp when the incident occurred, in ISO 8601 format (e.g., &#39;2020-07-24T03:26:02Z&#39;). * @return time **/ @javax.annotation.Nullable @ApiModelProperty(value = "The timestamp when the incident occurred, in ISO 8601 format (e.g., '2020-07-24T03:26:02Z').") public OffsetDateTime getTime() { return time; } public void setTime(OffsetDateTime time) { this.time = time; } public ProtectIncidentEvent amount(ProtectIncidentAmount amount) { this.amount = amount; return this; } /** * Get amount * @return amount **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ProtectIncidentAmount getAmount() { return amount; } public void setAmount(ProtectIncidentAmount amount) { this.amount = amount; } public ProtectIncidentEvent accessToken(String accessToken) { this.accessToken = accessToken; return this; } /** * An access token associated with the Item related to this incident. * @return accessToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "An access token associated with the Item related to this incident.") public String getAccessToken() { return accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProtectIncidentEvent protectIncidentEvent = (ProtectIncidentEvent) o; return Objects.equals(this.protectEventId, protectIncidentEvent.protectEventId) && Objects.equals(this.linkSessionId, protectIncidentEvent.linkSessionId) && Objects.equals(this.idvSessionId, protectIncidentEvent.idvSessionId) && Objects.equals(this.signalClientTransactionId, protectIncidentEvent.signalClientTransactionId) && Objects.equals(this.internalReference, protectIncidentEvent.internalReference) && Objects.equals(this.time, protectIncidentEvent.time) && Objects.equals(this.amount, protectIncidentEvent.amount) && Objects.equals(this.accessToken, protectIncidentEvent.accessToken); } @Override public int hashCode() { return Objects.hash(protectEventId, linkSessionId, idvSessionId, signalClientTransactionId, internalReference, time, amount, accessToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProtectIncidentEvent {\n"); sb.append(" protectEventId: ").append(toIndentedString(protectEventId)).append("\n"); sb.append(" linkSessionId: ").append(toIndentedString(linkSessionId)).append("\n"); sb.append(" idvSessionId: ").append(toIndentedString(idvSessionId)).append("\n"); sb.append(" signalClientTransactionId: ").append(toIndentedString(signalClientTransactionId)).append("\n"); sb.append(" internalReference: ").append(toIndentedString(internalReference)).append("\n"); sb.append(" time: ").append(toIndentedString(time)).append("\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorNumber.java
src/main/java/com/plaid/client/model/ProcessorNumber.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.NumbersACHNullable; import com.plaid.client.model.NumbersBACSNullable; import com.plaid.client.model.NumbersEFTNullable; import com.plaid.client.model.NumbersInternationalNullable; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object containing identifying numbers used for making electronic transfers to and from the &#x60;account&#x60;. The identifying number type (ACH, EFT, IBAN, or BACS) used will depend on the country of the account. An account may have more than one number type. If a particular identifying number type is not used by the &#x60;account&#x60; for which auth data has been requested, a null value will be returned. */ @ApiModel(description = "An object containing identifying numbers used for making electronic transfers to and from the `account`. The identifying number type (ACH, EFT, IBAN, or BACS) used will depend on the country of the account. An account may have more than one number type. If a particular identifying number type is not used by the `account` for which auth data has been requested, a null value will be returned.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorNumber { public static final String SERIALIZED_NAME_ACH = "ach"; @SerializedName(SERIALIZED_NAME_ACH) private NumbersACHNullable ach; public static final String SERIALIZED_NAME_EFT = "eft"; @SerializedName(SERIALIZED_NAME_EFT) private NumbersEFTNullable eft; public static final String SERIALIZED_NAME_INTERNATIONAL = "international"; @SerializedName(SERIALIZED_NAME_INTERNATIONAL) private NumbersInternationalNullable international; public static final String SERIALIZED_NAME_BACS = "bacs"; @SerializedName(SERIALIZED_NAME_BACS) private NumbersBACSNullable bacs; public ProcessorNumber ach(NumbersACHNullable ach) { this.ach = ach; return this; } /** * Get ach * @return ach **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public NumbersACHNullable getAch() { return ach; } public void setAch(NumbersACHNullable ach) { this.ach = ach; } public ProcessorNumber eft(NumbersEFTNullable eft) { this.eft = eft; return this; } /** * Get eft * @return eft **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public NumbersEFTNullable getEft() { return eft; } public void setEft(NumbersEFTNullable eft) { this.eft = eft; } public ProcessorNumber international(NumbersInternationalNullable international) { this.international = international; return this; } /** * Get international * @return international **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public NumbersInternationalNullable getInternational() { return international; } public void setInternational(NumbersInternationalNullable international) { this.international = international; } public ProcessorNumber bacs(NumbersBACSNullable bacs) { this.bacs = bacs; return this; } /** * Get bacs * @return bacs **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public NumbersBACSNullable getBacs() { return bacs; } public void setBacs(NumbersBACSNullable bacs) { this.bacs = bacs; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProcessorNumber processorNumber = (ProcessorNumber) o; return Objects.equals(this.ach, processorNumber.ach) && Objects.equals(this.eft, processorNumber.eft) && Objects.equals(this.international, processorNumber.international) && Objects.equals(this.bacs, processorNumber.bacs); } @Override public int hashCode() { return Objects.hash(ach, eft, international, bacs); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorNumber {\n"); sb.append(" ach: ").append(toIndentedString(ach)).append("\n"); sb.append(" eft: ").append(toIndentedString(eft)).append("\n"); sb.append(" international: ").append(toIndentedString(international)).append("\n"); sb.append(" bacs: ").append(toIndentedString(bacs)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransactionsRulesCreateRequest.java
src/main/java/com/plaid/client/model/TransactionsRulesCreateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.TransactionsRuleDetails; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * TransactionsRulesCreateRequest defines the request schema for &#x60;beta/transactions/rules/v1/create&#x60; */ @ApiModel(description = "TransactionsRulesCreateRequest defines the request schema for `beta/transactions/rules/v1/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionsRulesCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) private String accessToken; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY = "personal_finance_category"; @SerializedName(SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY) private String personalFinanceCategory; public static final String SERIALIZED_NAME_RULE_DETAILS = "rule_details"; @SerializedName(SERIALIZED_NAME_RULE_DETAILS) private TransactionsRuleDetails ruleDetails; public TransactionsRulesCreateRequest 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 TransactionsRulesCreateRequest 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 TransactionsRulesCreateRequest 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 TransactionsRulesCreateRequest personalFinanceCategory(String personalFinanceCategory) { this.personalFinanceCategory = personalFinanceCategory; return this; } /** * Personal finance detailed category. All implementations are encouraged to use this field instead of &#x60;category&#x60;, as it provides more meaningful and accurate categorization. See the [taxonomy csv file](https://plaid.com/documents/pfc-taxonomy-all.csv) for a full list of personal finance categories. * @return personalFinanceCategory **/ @ApiModelProperty(required = true, value = "Personal finance detailed category. All implementations are encouraged to use this field instead of `category`, as it provides more meaningful and accurate categorization. See the [taxonomy csv file](https://plaid.com/documents/pfc-taxonomy-all.csv) for a full list of personal finance categories. ") public String getPersonalFinanceCategory() { return personalFinanceCategory; } public void setPersonalFinanceCategory(String personalFinanceCategory) { this.personalFinanceCategory = personalFinanceCategory; } public TransactionsRulesCreateRequest ruleDetails(TransactionsRuleDetails ruleDetails) { this.ruleDetails = ruleDetails; return this; } /** * Get ruleDetails * @return ruleDetails **/ @ApiModelProperty(required = true, value = "") public TransactionsRuleDetails getRuleDetails() { return ruleDetails; } public void setRuleDetails(TransactionsRuleDetails ruleDetails) { this.ruleDetails = ruleDetails; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransactionsRulesCreateRequest transactionsRulesCreateRequest = (TransactionsRulesCreateRequest) o; return Objects.equals(this.clientId, transactionsRulesCreateRequest.clientId) && Objects.equals(this.accessToken, transactionsRulesCreateRequest.accessToken) && Objects.equals(this.secret, transactionsRulesCreateRequest.secret) && Objects.equals(this.personalFinanceCategory, transactionsRulesCreateRequest.personalFinanceCategory) && Objects.equals(this.ruleDetails, transactionsRulesCreateRequest.ruleDetails); } @Override public int hashCode() { return Objects.hash(clientId, accessToken, secret, personalFinanceCategory, ruleDetails); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsRulesCreateRequest {\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(" personalFinanceCategory: ").append(toIndentedString(personalFinanceCategory)).append("\n"); sb.append(" ruleDetails: ").append(toIndentedString(ruleDetails)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CashFlowInsight.java
src/main/java/com/plaid/client/model/CashFlowInsight.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * An insight that can be detected by the Cash Flow Updates product */ @JsonAdapter(CashFlowInsight.Adapter.class) public enum CashFlowInsight { LARGE_DEPOSIT_DETECTED("LARGE_DEPOSIT_DETECTED"), LOW_BALANCE_DETECTED("LOW_BALANCE_DETECTED"), NEW_LOAN_PAYMENT_DETECTED("NEW_LOAN_PAYMENT_DETECTED"), NSF_OVERDRAFT_DETECTED("NSF_OVERDRAFT_DETECTED"), // 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; CashFlowInsight(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static CashFlowInsight fromValue(String value) { for (CashFlowInsight b : CashFlowInsight.values()) { if (b.value.equals(value)) { return b; } } return CashFlowInsight.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<CashFlowInsight> { @Override public void write(final JsonWriter jsonWriter, final CashFlowInsight enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public CashFlowInsight read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return CashFlowInsight.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/SandboxTransferSimulateRequest.java
src/main/java/com/plaid/client/model/SandboxTransferSimulateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.TransferFailure; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the request schema for &#x60;/sandbox/transfer/simulate&#x60; */ @ApiModel(description = "Defines the request schema for `/sandbox/transfer/simulate`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SandboxTransferSimulateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_TRANSFER_ID = "transfer_id"; @SerializedName(SERIALIZED_NAME_TRANSFER_ID) private String transferId; public static final String SERIALIZED_NAME_TEST_CLOCK_ID = "test_clock_id"; @SerializedName(SERIALIZED_NAME_TEST_CLOCK_ID) private String testClockId; public static final String SERIALIZED_NAME_EVENT_TYPE = "event_type"; @SerializedName(SERIALIZED_NAME_EVENT_TYPE) private String eventType; public static final String SERIALIZED_NAME_FAILURE_REASON = "failure_reason"; @SerializedName(SERIALIZED_NAME_FAILURE_REASON) private TransferFailure failureReason; public static final String SERIALIZED_NAME_WEBHOOK = "webhook"; @SerializedName(SERIALIZED_NAME_WEBHOOK) private String webhook; public SandboxTransferSimulateRequest 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 SandboxTransferSimulateRequest 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 SandboxTransferSimulateRequest transferId(String transferId) { this.transferId = transferId; return this; } /** * Plaid’s unique identifier for a transfer. * @return transferId **/ @ApiModelProperty(required = true, value = "Plaid’s unique identifier for a transfer.") public String getTransferId() { return transferId; } public void setTransferId(String transferId) { this.transferId = transferId; } public SandboxTransferSimulateRequest testClockId(String testClockId) { this.testClockId = testClockId; return this; } /** * Plaid’s unique identifier for a test clock. If provided, the event to be simulated is created at the &#x60;virtual_time&#x60; on the provided &#x60;test_clock&#x60;. * @return testClockId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Plaid’s unique identifier for a test clock. If provided, the event to be simulated is created at the `virtual_time` on the provided `test_clock`.") public String getTestClockId() { return testClockId; } public void setTestClockId(String testClockId) { this.testClockId = testClockId; } public SandboxTransferSimulateRequest eventType(String eventType) { this.eventType = eventType; return this; } /** * The asynchronous event to be simulated. May be: &#x60;posted&#x60;, &#x60;settled&#x60;, &#x60;failed&#x60;, &#x60;funds_available&#x60;, or &#x60;returned&#x60;. An error will be returned if the event type is incompatible with the current transfer status. Compatible status --&gt; event type transitions include: &#x60;pending&#x60; --&gt; &#x60;failed&#x60; &#x60;pending&#x60; --&gt; &#x60;posted&#x60; &#x60;posted&#x60; --&gt; &#x60;returned&#x60; &#x60;posted&#x60; --&gt; &#x60;settled&#x60; &#x60;settled&#x60; --&gt; &#x60;funds_available&#x60; (only applicable to ACH debits.) * @return eventType **/ @ApiModelProperty(required = true, value = "The asynchronous event to be simulated. May be: `posted`, `settled`, `failed`, `funds_available`, or `returned`. An error will be returned if the event type is incompatible with the current transfer status. Compatible status --> event type transitions include: `pending` --> `failed` `pending` --> `posted` `posted` --> `returned` `posted` --> `settled` `settled` --> `funds_available` (only applicable to ACH debits.) ") public String getEventType() { return eventType; } public void setEventType(String eventType) { this.eventType = eventType; } public SandboxTransferSimulateRequest failureReason(TransferFailure failureReason) { this.failureReason = failureReason; return this; } /** * Get failureReason * @return failureReason **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransferFailure getFailureReason() { return failureReason; } public void setFailureReason(TransferFailure failureReason) { this.failureReason = failureReason; } public SandboxTransferSimulateRequest webhook(String webhook) { this.webhook = webhook; return this; } /** * The webhook URL to which a &#x60;TRANSFER_EVENTS_UPDATE&#x60; webhook should be sent. * @return webhook **/ @javax.annotation.Nullable @ApiModelProperty(value = "The webhook URL to which a `TRANSFER_EVENTS_UPDATE` webhook should be sent.") public String getWebhook() { return webhook; } public void setWebhook(String webhook) { this.webhook = webhook; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SandboxTransferSimulateRequest sandboxTransferSimulateRequest = (SandboxTransferSimulateRequest) o; return Objects.equals(this.clientId, sandboxTransferSimulateRequest.clientId) && Objects.equals(this.secret, sandboxTransferSimulateRequest.secret) && Objects.equals(this.transferId, sandboxTransferSimulateRequest.transferId) && Objects.equals(this.testClockId, sandboxTransferSimulateRequest.testClockId) && Objects.equals(this.eventType, sandboxTransferSimulateRequest.eventType) && Objects.equals(this.failureReason, sandboxTransferSimulateRequest.failureReason) && Objects.equals(this.webhook, sandboxTransferSimulateRequest.webhook); } @Override public int hashCode() { return Objects.hash(clientId, secret, transferId, testClockId, eventType, failureReason, webhook); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SandboxTransferSimulateRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" transferId: ").append(toIndentedString(transferId)).append("\n"); sb.append(" testClockId: ").append(toIndentedString(testClockId)).append("\n"); sb.append(" eventType: ").append(toIndentedString(eventType)).append("\n"); sb.append(" failureReason: ").append(toIndentedString(failureReason)).append("\n"); sb.append(" webhook: ").append(toIndentedString(webhook)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ExtendedRecipientMetadataAllOf.java
src/main/java/com/plaid/client/model/ExtendedRecipientMetadataAllOf.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * ExtendedRecipientMetadataAllOf */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ExtendedRecipientMetadataAllOf { public static final String SERIALIZED_NAME_CATEGORY = "category"; @SerializedName(SERIALIZED_NAME_CATEGORY) private String category; public static final String SERIALIZED_NAME_JOINED_DATE = "joined_date"; @SerializedName(SERIALIZED_NAME_JOINED_DATE) private LocalDate joinedDate; public static final String SERIALIZED_NAME_CONNECTION_COUNT = "connection_count"; @SerializedName(SERIALIZED_NAME_CONNECTION_COUNT) private Integer connectionCount; public ExtendedRecipientMetadataAllOf category(String category) { this.category = category; return this; } /** * The category that the recipient falls under * @return category **/ @ApiModelProperty(required = true, value = "The category that the recipient falls under") public String getCategory() { return category; } public void setCategory(String category) { this.category = category; } public ExtendedRecipientMetadataAllOf joinedDate(LocalDate joinedDate) { this.joinedDate = joinedDate; return this; } /** * The date at which the recipient gained production access to Plaid * @return joinedDate **/ @ApiModelProperty(example = "Thu Jul 15 00:00:00 UTC 2021", required = true, value = "The date at which the recipient gained production access to Plaid") public LocalDate getJoinedDate() { return joinedDate; } public void setJoinedDate(LocalDate joinedDate) { this.joinedDate = joinedDate; } public ExtendedRecipientMetadataAllOf connectionCount(Integer connectionCount) { this.connectionCount = connectionCount; return this; } /** * The number of Data Partner consumers that are connected to the recipient for the specific Data Partner * @return connectionCount **/ @ApiModelProperty(required = true, value = "The number of Data Partner consumers that are connected to the recipient for the specific Data Partner") public Integer getConnectionCount() { return connectionCount; } public void setConnectionCount(Integer connectionCount) { this.connectionCount = connectionCount; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ExtendedRecipientMetadataAllOf extendedRecipientMetadataAllOf = (ExtendedRecipientMetadataAllOf) o; return Objects.equals(this.category, extendedRecipientMetadataAllOf.category) && Objects.equals(this.joinedDate, extendedRecipientMetadataAllOf.joinedDate) && Objects.equals(this.connectionCount, extendedRecipientMetadataAllOf.connectionCount); } @Override public int hashCode() { return Objects.hash(category, joinedDate, connectionCount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ExtendedRecipientMetadataAllOf {\n"); sb.append(" category: ").append(toIndentedString(category)).append("\n"); sb.append(" joinedDate: ").append(toIndentedString(joinedDate)).append("\n"); sb.append(" connectionCount: ").append(toIndentedString(connectionCount)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LoanIdentifier.java
src/main/java/com/plaid/client/model/LoanIdentifier.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.LoanIdentifierType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The information used to identify this loan by various parties to the transaction or other organizations. */ @ApiModel(description = "The information used to identify this loan by various parties to the transaction or other organizations.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LoanIdentifier { public static final String SERIALIZED_NAME_LOAN_IDENTIFIER = "LoanIdentifier"; @SerializedName(SERIALIZED_NAME_LOAN_IDENTIFIER) private String loanIdentifier; public static final String SERIALIZED_NAME_LOAN_IDENTIFIER_TYPE = "LoanIdentifierType"; @SerializedName(SERIALIZED_NAME_LOAN_IDENTIFIER_TYPE) private LoanIdentifierType loanIdentifierType; public LoanIdentifier loanIdentifier(String loanIdentifier) { this.loanIdentifier = loanIdentifier; return this; } /** * The value of the identifier for the specified type. * @return loanIdentifier **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The value of the identifier for the specified type.") public String getLoanIdentifier() { return loanIdentifier; } public void setLoanIdentifier(String loanIdentifier) { this.loanIdentifier = loanIdentifier; } public LoanIdentifier loanIdentifierType(LoanIdentifierType loanIdentifierType) { this.loanIdentifierType = loanIdentifierType; return this; } /** * Get loanIdentifierType * @return loanIdentifierType **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public LoanIdentifierType getLoanIdentifierType() { return loanIdentifierType; } public void setLoanIdentifierType(LoanIdentifierType loanIdentifierType) { this.loanIdentifierType = loanIdentifierType; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LoanIdentifier loanIdentifier = (LoanIdentifier) o; return Objects.equals(this.loanIdentifier, loanIdentifier.loanIdentifier) && Objects.equals(this.loanIdentifierType, loanIdentifier.loanIdentifierType); } @Override public int hashCode() { return Objects.hash(loanIdentifier, loanIdentifierType); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LoanIdentifier {\n"); sb.append(" loanIdentifier: ").append(toIndentedString(loanIdentifier)).append("\n"); sb.append(" loanIdentifierType: ").append(toIndentedString(loanIdentifierType)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferCreateRequest.java
src/main/java/com/plaid/client/model/TransferCreateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.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.TransferNetwork; import com.plaid.client.model.TransferType; import com.plaid.client.model.TransferUserInRequestDeprecated; 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;/transfer/create&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferCreateRequest { 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_AUTHORIZATION_ID = "authorization_id"; @SerializedName(SERIALIZED_NAME_AUTHORIZATION_ID) private String authorizationId; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private TransferType type; public static final String SERIALIZED_NAME_NETWORK = "network"; @SerializedName(SERIALIZED_NAME_NETWORK) private TransferNetwork network; 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_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 TransferUserInRequestDeprecated user; 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 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_TEST_CLOCK_ID = "test_clock_id"; @SerializedName(SERIALIZED_NAME_TEST_CLOCK_ID) private String testClockId; public static final String SERIALIZED_NAME_FACILITATOR_FEE = "facilitator_fee"; @SerializedName(SERIALIZED_NAME_FACILITATOR_FEE) private String facilitatorFee; public TransferCreateRequest 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 TransferCreateRequest 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 TransferCreateRequest idempotencyKey(String idempotencyKey) { this.idempotencyKey = idempotencyKey; return this; } /** * Deprecated. &#x60;authorization_id&#x60; is now used as idempotency instead. A random key provided by the client, per unique 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 transfer fails due to a network connection error, you can retry the request with the same idempotency key to guarantee that only a single transfer is created. * @return idempotencyKey **/ @javax.annotation.Nullable @ApiModelProperty(value = "Deprecated. `authorization_id` is now used as idempotency instead. A random key provided by the client, per unique 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 transfer fails due to a network connection error, you can retry the request with the same idempotency key to guarantee that only a single transfer is created.") public String getIdempotencyKey() { return idempotencyKey; } public void setIdempotencyKey(String idempotencyKey) { this.idempotencyKey = idempotencyKey; } public TransferCreateRequest 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 TransferCreateRequest accountId(String accountId) { this.accountId = accountId; return this; } /** * The Plaid &#x60;account_id&#x60; corresponding to the end-user account that will be debited or credited. * @return accountId **/ @ApiModelProperty(required = true, value = "The Plaid `account_id` corresponding to the end-user account that will be debited or credited.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public TransferCreateRequest authorizationId(String authorizationId) { this.authorizationId = authorizationId; return this; } /** * Plaid’s unique identifier for a transfer authorization. This parameter also serves the purpose of acting as an idempotency identifier. * @return authorizationId **/ @ApiModelProperty(required = true, value = "Plaid’s unique identifier for a transfer authorization. This parameter also serves the purpose of acting as an idempotency identifier.") public String getAuthorizationId() { return authorizationId; } public void setAuthorizationId(String authorizationId) { this.authorizationId = authorizationId; } public TransferCreateRequest type(TransferType type) { this.type = type; return this; } /** * Get type * @return type **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransferType getType() { return type; } public void setType(TransferType type) { this.type = type; } public TransferCreateRequest network(TransferNetwork network) { this.network = network; return this; } /** * Get network * @return network **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransferNetwork getNetwork() { return network; } public void setNetwork(TransferNetwork network) { this.network = network; } public TransferCreateRequest amount(String amount) { this.amount = amount; return this; } /** * The amount of the transfer (decimal string with two digits of precision e.g. \&quot;10.00\&quot;). When calling &#x60;/transfer/authorization/create&#x60;, specify the maximum amount to authorize. When calling &#x60;/transfer/create&#x60;, specify the exact amount of the transfer, up to a maximum of the amount authorized. If this field is left blank when calling &#x60;/transfer/create&#x60;, the maximum amount authorized in the &#x60;authorization_id&#x60; will be sent. * @return amount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The amount of the transfer (decimal string with two digits of precision e.g. \"10.00\"). When calling `/transfer/authorization/create`, specify the maximum amount to authorize. When calling `/transfer/create`, specify the exact amount of the transfer, up to a maximum of the amount authorized. If this field is left blank when calling `/transfer/create`, the maximum amount authorized in the `authorization_id` will be sent.") public String getAmount() { return amount; } public void setAmount(String amount) { this.amount = amount; } public TransferCreateRequest description(String description) { this.description = description; return this; } /** * The transfer description, maximum of 15 characters (RTP transactions) or 10 characters (ACH transactions). Should represent why the money is moving, not your company name. For recommendations on setting the &#x60;description&#x60; field to avoid ACH returns, see [Description field recommendations](https://www.plaid.com/docs/transfer/creating-transfers/#description-field-recommendations). If reprocessing a returned transfer, the &#x60;description&#x60; field must be &#x60;\&quot;Retry 1\&quot;&#x60; or &#x60;\&quot;Retry 2\&quot;&#x60;. You may retry a transfer up to 2 times, within 180 days of creating the original transfer. Only transfers that were returned with code &#x60;R01&#x60; or &#x60;R09&#x60; may be retried. * @return description **/ @ApiModelProperty(required = true, value = "The transfer description, maximum of 15 characters (RTP transactions) or 10 characters (ACH transactions). Should represent why the money is moving, not your company name. For recommendations on setting the `description` field to avoid ACH returns, see [Description field recommendations](https://www.plaid.com/docs/transfer/creating-transfers/#description-field-recommendations). If reprocessing a returned transfer, the `description` field must be `\"Retry 1\"` or `\"Retry 2\"`. You may retry a transfer up to 2 times, within 180 days of creating the original transfer. Only transfers that were returned with code `R01` or `R09` may be retried.") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public TransferCreateRequest 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 TransferCreateRequest user(TransferUserInRequestDeprecated user) { this.user = user; return this; } /** * Get user * @return user **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransferUserInRequestDeprecated getUser() { return user; } public void setUser(TransferUserInRequestDeprecated user) { this.user = user; } public TransferCreateRequest metadata(Map<String, String> metadata) { this.metadata = metadata; return this; } public TransferCreateRequest 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 TransferCreateRequest 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; } public TransferCreateRequest isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The currency of the transfer amount. The default value is \&quot;USD\&quot;. * @return isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The currency of the transfer amount. The default value is \"USD\".") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public TransferCreateRequest testClockId(String testClockId) { this.testClockId = testClockId; return this; } /** * Plaid’s unique identifier for a test clock. This field may only be used when using &#x60;sandbox&#x60; environment. If provided, the &#x60;transfer&#x60; is created at the &#x60;virtual_time&#x60; on the provided &#x60;test_clock&#x60;. * @return testClockId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Plaid’s unique identifier for a test clock. This field may only be used when using `sandbox` environment. If provided, the `transfer` is created at the `virtual_time` on the provided `test_clock`.") public String getTestClockId() { return testClockId; } public void setTestClockId(String testClockId) { this.testClockId = testClockId; } public TransferCreateRequest facilitatorFee(String facilitatorFee) { this.facilitatorFee = facilitatorFee; return this; } /** * The amount to deduct from &#x60;transfer.amount&#x60; and distribute to the platform’s Ledger balance as a facilitator fee (decimal string with two digits of precision e.g. \&quot;10.00\&quot;). The remainder will go to the end-customer’s Ledger balance. This must be value greater than 0 and less than or equal to the &#x60;transfer.amount&#x60;. * @return facilitatorFee **/ @javax.annotation.Nullable @ApiModelProperty(value = "The amount to deduct from `transfer.amount` and distribute to the platform’s Ledger balance as a facilitator fee (decimal string with two digits of precision e.g. \"10.00\"). The remainder will go to the end-customer’s Ledger balance. This must be value greater than 0 and less than or equal to the `transfer.amount`.") public String getFacilitatorFee() { return facilitatorFee; } public void setFacilitatorFee(String facilitatorFee) { this.facilitatorFee = facilitatorFee; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferCreateRequest transferCreateRequest = (TransferCreateRequest) o; return Objects.equals(this.clientId, transferCreateRequest.clientId) && Objects.equals(this.secret, transferCreateRequest.secret) && Objects.equals(this.idempotencyKey, transferCreateRequest.idempotencyKey) && Objects.equals(this.accessToken, transferCreateRequest.accessToken) && Objects.equals(this.accountId, transferCreateRequest.accountId) && Objects.equals(this.authorizationId, transferCreateRequest.authorizationId) && Objects.equals(this.type, transferCreateRequest.type) && Objects.equals(this.network, transferCreateRequest.network) && Objects.equals(this.amount, transferCreateRequest.amount) && Objects.equals(this.description, transferCreateRequest.description) && Objects.equals(this.achClass, transferCreateRequest.achClass) && Objects.equals(this.user, transferCreateRequest.user) && Objects.equals(this.metadata, transferCreateRequest.metadata) && Objects.equals(this.originationAccountId, transferCreateRequest.originationAccountId) && Objects.equals(this.isoCurrencyCode, transferCreateRequest.isoCurrencyCode) && Objects.equals(this.testClockId, transferCreateRequest.testClockId) && Objects.equals(this.facilitatorFee, transferCreateRequest.facilitatorFee); } @Override public int hashCode() { return Objects.hash(clientId, secret, idempotencyKey, accessToken, accountId, authorizationId, type, network, amount, description, achClass, user, metadata, originationAccountId, isoCurrencyCode, testClockId, facilitatorFee); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferCreateRequest {\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(" authorizationId: ").append(toIndentedString(authorizationId)).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(" description: ").append(toIndentedString(description)).append("\n"); sb.append(" achClass: ").append(toIndentedString(achClass)).append("\n"); sb.append(" user: ").append(toIndentedString(user)).append("\n"); sb.append(" metadata: ").append(toIndentedString(metadata)).append("\n"); sb.append(" originationAccountId: ").append(toIndentedString(originationAccountId)).append("\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append(" testClockId: ").append(toIndentedString(testClockId)).append("\n"); sb.append(" facilitatorFee: ").append(toIndentedString(facilitatorFee)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ItemStatusLastWebhook.java
src/main/java/com/plaid/client/model/ItemStatusLastWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Information about the last webhook fired for the Item. */ @ApiModel(description = "Information about the last webhook fired for the Item.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ItemStatusLastWebhook { public static final String SERIALIZED_NAME_SENT_AT = "sent_at"; @SerializedName(SERIALIZED_NAME_SENT_AT) private OffsetDateTime sentAt; public static final String SERIALIZED_NAME_CODE_SENT = "code_sent"; @SerializedName(SERIALIZED_NAME_CODE_SENT) private String codeSent; public ItemStatusLastWebhook sentAt(OffsetDateTime sentAt) { this.sentAt = sentAt; return this; } /** * [ISO 8601](https://wikipedia.org/wiki/ISO_8601) timestamp of when the webhook was fired. * @return sentAt **/ @javax.annotation.Nullable @ApiModelProperty(value = "[ISO 8601](https://wikipedia.org/wiki/ISO_8601) timestamp of when the webhook was fired. ") public OffsetDateTime getSentAt() { return sentAt; } public void setSentAt(OffsetDateTime sentAt) { this.sentAt = sentAt; } public ItemStatusLastWebhook codeSent(String codeSent) { this.codeSent = codeSent; return this; } /** * The last webhook code sent. * @return codeSent **/ @javax.annotation.Nullable @ApiModelProperty(value = "The last webhook code sent.") public String getCodeSent() { return codeSent; } public void setCodeSent(String codeSent) { this.codeSent = codeSent; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ItemStatusLastWebhook itemStatusLastWebhook = (ItemStatusLastWebhook) o; return Objects.equals(this.sentAt, itemStatusLastWebhook.sentAt) && Objects.equals(this.codeSent, itemStatusLastWebhook.codeSent); } @Override public int hashCode() { return Objects.hash(sentAt, codeSent); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ItemStatusLastWebhook {\n"); sb.append(" sentAt: ").append(toIndentedString(sentAt)).append("\n"); sb.append(" codeSent: ").append(toIndentedString(codeSent)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BankIncomeRefreshCompleteResult.java
src/main/java/com/plaid/client/model/BankIncomeRefreshCompleteResult.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The result of the bank income refresh report generation &#x60;SUCCESS&#x60;: The refreshed report was successfully generated and can be retrieved via &#x60;/credit/bank_income/get&#x60;. &#x60;FAILURE&#x60;: The refreshed report failed to be generated */ @JsonAdapter(BankIncomeRefreshCompleteResult.Adapter.class) public enum BankIncomeRefreshCompleteResult { SUCCESS("SUCCESS"), FAILURE("FAILURE"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; BankIncomeRefreshCompleteResult(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static BankIncomeRefreshCompleteResult fromValue(String value) { for (BankIncomeRefreshCompleteResult b : BankIncomeRefreshCompleteResult.values()) { if (b.value.equals(value)) { return b; } } return BankIncomeRefreshCompleteResult.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<BankIncomeRefreshCompleteResult> { @Override public void write(final JsonWriter jsonWriter, final BankIncomeRefreshCompleteResult enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public BankIncomeRefreshCompleteResult read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return BankIncomeRefreshCompleteResult.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/AssetTransaction.java
src/main/java/com/plaid/client/model/AssetTransaction.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AssetTransactionDescription; import com.plaid.client.model.AssetTransactionDetail; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * An object representing... */ @ApiModel(description = "An object representing...") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AssetTransaction { public static final String SERIALIZED_NAME_A_S_S_E_T_T_R_A_N_S_A_C_T_I_O_N_D_E_T_A_I_L = "ASSET_TRANSACTION_DETAIL"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T_T_R_A_N_S_A_C_T_I_O_N_D_E_T_A_I_L) private AssetTransactionDetail ASSET_TRANSACTION_DETAIL; public static final String SERIALIZED_NAME_A_S_S_E_T_T_R_A_N_S_A_C_T_I_O_N_D_E_S_C_R_I_P_T_O_N = "ASSET_TRANSACTION_DESCRIPTON"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T_T_R_A_N_S_A_C_T_I_O_N_D_E_S_C_R_I_P_T_O_N) private List<AssetTransactionDescription> ASSET_TRANSACTION_DESCRIPTON = new ArrayList<>(); public AssetTransaction ASSET_TRANSACTION_DETAIL(AssetTransactionDetail ASSET_TRANSACTION_DETAIL) { this.ASSET_TRANSACTION_DETAIL = ASSET_TRANSACTION_DETAIL; return this; } /** * Get ASSET_TRANSACTION_DETAIL * @return ASSET_TRANSACTION_DETAIL **/ @ApiModelProperty(required = true, value = "") public AssetTransactionDetail getASSETTRANSACTIONDETAIL() { return ASSET_TRANSACTION_DETAIL; } public void setASSETTRANSACTIONDETAIL(AssetTransactionDetail ASSET_TRANSACTION_DETAIL) { this.ASSET_TRANSACTION_DETAIL = ASSET_TRANSACTION_DETAIL; } public AssetTransaction ASSET_TRANSACTION_DESCRIPTON(List<AssetTransactionDescription> ASSET_TRANSACTION_DESCRIPTON) { this.ASSET_TRANSACTION_DESCRIPTON = ASSET_TRANSACTION_DESCRIPTON; return this; } public AssetTransaction addASSETTRANSACTIONDESCRIPTONItem(AssetTransactionDescription ASSET_TRANSACTION_DESCRIPTONItem) { this.ASSET_TRANSACTION_DESCRIPTON.add(ASSET_TRANSACTION_DESCRIPTONItem); return this; } /** * Documentation not found in the MISMO model viewer and not provided by Freddie Mac. * @return ASSET_TRANSACTION_DESCRIPTON **/ @ApiModelProperty(required = true, value = "Documentation not found in the MISMO model viewer and not provided by Freddie Mac.") public List<AssetTransactionDescription> getASSETTRANSACTIONDESCRIPTON() { return ASSET_TRANSACTION_DESCRIPTON; } public void setASSETTRANSACTIONDESCRIPTON(List<AssetTransactionDescription> ASSET_TRANSACTION_DESCRIPTON) { this.ASSET_TRANSACTION_DESCRIPTON = ASSET_TRANSACTION_DESCRIPTON; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AssetTransaction assetTransaction = (AssetTransaction) o; return Objects.equals(this.ASSET_TRANSACTION_DETAIL, assetTransaction.ASSET_TRANSACTION_DETAIL) && Objects.equals(this.ASSET_TRANSACTION_DESCRIPTON, assetTransaction.ASSET_TRANSACTION_DESCRIPTON); } @Override public int hashCode() { return Objects.hash(ASSET_TRANSACTION_DETAIL, ASSET_TRANSACTION_DESCRIPTON); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetTransaction {\n"); sb.append(" ASSET_TRANSACTION_DETAIL: ").append(toIndentedString(ASSET_TRANSACTION_DETAIL)).append("\n"); sb.append(" ASSET_TRANSACTION_DESCRIPTON: ").append(toIndentedString(ASSET_TRANSACTION_DESCRIPTON)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkEvent.java
src/main/java/com/plaid/client/model/LinkEvent.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.LinkEventMetadata; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An event that occurred while the user was going through Link */ @ApiModel(description = "An event that occurred while the user was going through Link") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkEvent { public static final String SERIALIZED_NAME_EVENT_NAME = "event_name"; @SerializedName(SERIALIZED_NAME_EVENT_NAME) private String eventName; public static final String SERIALIZED_NAME_TIMESTAMP = "timestamp"; @SerializedName(SERIALIZED_NAME_TIMESTAMP) private String timestamp; public static final String SERIALIZED_NAME_EVENT_ID = "event_id"; @SerializedName(SERIALIZED_NAME_EVENT_ID) private String eventId; public static final String SERIALIZED_NAME_EVENT_METADATA = "event_metadata"; @SerializedName(SERIALIZED_NAME_EVENT_METADATA) private LinkEventMetadata eventMetadata; public LinkEvent eventName(String eventName) { this.eventName = eventName; return this; } /** * Event name * @return eventName **/ @ApiModelProperty(required = true, value = "Event name") public String getEventName() { return eventName; } public void setEventName(String eventName) { this.eventName = eventName; } public LinkEvent timestamp(String timestamp) { this.timestamp = timestamp; return this; } /** * Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format. * @return timestamp **/ @ApiModelProperty(required = true, value = "Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format.") public String getTimestamp() { return timestamp; } public void setTimestamp(String timestamp) { this.timestamp = timestamp; } public LinkEvent eventId(String eventId) { this.eventId = eventId; return this; } /** * UUID that can be used to deduplicate events * @return eventId **/ @ApiModelProperty(required = true, value = "UUID that can be used to deduplicate events") public String getEventId() { return eventId; } public void setEventId(String eventId) { this.eventId = eventId; } public LinkEvent eventMetadata(LinkEventMetadata eventMetadata) { this.eventMetadata = eventMetadata; return this; } /** * Get eventMetadata * @return eventMetadata **/ @ApiModelProperty(required = true, value = "") public LinkEventMetadata getEventMetadata() { return eventMetadata; } public void setEventMetadata(LinkEventMetadata eventMetadata) { this.eventMetadata = eventMetadata; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkEvent linkEvent = (LinkEvent) o; return Objects.equals(this.eventName, linkEvent.eventName) && Objects.equals(this.timestamp, linkEvent.timestamp) && Objects.equals(this.eventId, linkEvent.eventId) && Objects.equals(this.eventMetadata, linkEvent.eventMetadata); } @Override public int hashCode() { return Objects.hash(eventName, timestamp, eventId, eventMetadata); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkEvent {\n"); sb.append(" eventName: ").append(toIndentedString(eventName)).append("\n"); sb.append(" timestamp: ").append(toIndentedString(timestamp)).append("\n"); sb.append(" eventId: ").append(toIndentedString(eventId)).append("\n"); sb.append(" eventMetadata: ").append(toIndentedString(eventMetadata)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraCheckReportVerificationPdfReportType.java
src/main/java/com/plaid/client/model/CraCheckReportVerificationPdfReportType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 verification PDF report to fetch. */ @JsonAdapter(CraCheckReportVerificationPdfReportType.Adapter.class) public enum CraCheckReportVerificationPdfReportType { VOA("voa"), EMPLOYMENT_REFRESH("employment_refresh"), // 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; CraCheckReportVerificationPdfReportType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static CraCheckReportVerificationPdfReportType fromValue(String value) { for (CraCheckReportVerificationPdfReportType b : CraCheckReportVerificationPdfReportType.values()) { if (b.value.equals(value)) { return b; } } return CraCheckReportVerificationPdfReportType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<CraCheckReportVerificationPdfReportType> { @Override public void write(final JsonWriter jsonWriter, final CraCheckReportVerificationPdfReportType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public CraCheckReportVerificationPdfReportType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return CraCheckReportVerificationPdfReportType.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/AssetReportAuditCopyRemoveResponse.java
src/main/java/com/plaid/client/model/AssetReportAuditCopyRemoveResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * AssetReportAuditCopyRemoveResponse defines the response schema for &#x60;/asset_report/audit_copy/remove&#x60; */ @ApiModel(description = "AssetReportAuditCopyRemoveResponse defines the response schema for `/asset_report/audit_copy/remove`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AssetReportAuditCopyRemoveResponse { public static final String SERIALIZED_NAME_REMOVED = "removed"; @SerializedName(SERIALIZED_NAME_REMOVED) private Boolean removed; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public AssetReportAuditCopyRemoveResponse removed(Boolean removed) { this.removed = removed; return this; } /** * &#x60;true&#x60; if the Audit Copy was successfully removed. * @return removed **/ @ApiModelProperty(required = true, value = "`true` if the Audit Copy was successfully removed.") public Boolean getRemoved() { return removed; } public void setRemoved(Boolean removed) { this.removed = removed; } public AssetReportAuditCopyRemoveResponse 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; } AssetReportAuditCopyRemoveResponse assetReportAuditCopyRemoveResponse = (AssetReportAuditCopyRemoveResponse) o; return Objects.equals(this.removed, assetReportAuditCopyRemoveResponse.removed) && Objects.equals(this.requestId, assetReportAuditCopyRemoveResponse.requestId); } @Override public int hashCode() { return Objects.hash(removed, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetReportAuditCopyRemoveResponse {\n"); sb.append(" removed: ").append(toIndentedString(removed)).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/FraudCheckOutcome.java
src/main/java/com/plaid/client/model/FraudCheckOutcome.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The outcome of the fraud check. */ @JsonAdapter(FraudCheckOutcome.Adapter.class) public enum FraudCheckOutcome { 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; FraudCheckOutcome(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static FraudCheckOutcome fromValue(String value) { for (FraudCheckOutcome b : FraudCheckOutcome.values()) { if (b.value.equals(value)) { return b; } } return FraudCheckOutcome.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<FraudCheckOutcome> { @Override public void write(final JsonWriter jsonWriter, final FraudCheckOutcome enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public FraudCheckOutcome read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return FraudCheckOutcome.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/JWKPublicKey.java
src/main/java/com/plaid/client/model/JWKPublicKey.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * A JSON Web Key (JWK) that can be used in conjunction with [JWT libraries](https://jwt.io/#libraries-io) to verify Plaid webhooks */ @ApiModel(description = "A JSON Web Key (JWK) that can be used in conjunction with [JWT libraries](https://jwt.io/#libraries-io) to verify Plaid webhooks") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class JWKPublicKey { public static final String SERIALIZED_NAME_ALG = "alg"; @SerializedName(SERIALIZED_NAME_ALG) private String alg; public static final String SERIALIZED_NAME_CRV = "crv"; @SerializedName(SERIALIZED_NAME_CRV) private String crv; public static final String SERIALIZED_NAME_KID = "kid"; @SerializedName(SERIALIZED_NAME_KID) private String kid; public static final String SERIALIZED_NAME_KTY = "kty"; @SerializedName(SERIALIZED_NAME_KTY) private String kty; public static final String SERIALIZED_NAME_USE = "use"; @SerializedName(SERIALIZED_NAME_USE) private String use; public static final String SERIALIZED_NAME_X = "x"; @SerializedName(SERIALIZED_NAME_X) private String x; public static final String SERIALIZED_NAME_Y = "y"; @SerializedName(SERIALIZED_NAME_Y) private String y; public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) private Integer createdAt; public static final String SERIALIZED_NAME_EXPIRED_AT = "expired_at"; @SerializedName(SERIALIZED_NAME_EXPIRED_AT) private Integer expiredAt; public JWKPublicKey alg(String alg) { this.alg = alg; return this; } /** * The alg member identifies the cryptographic algorithm family used with the key. * @return alg **/ @ApiModelProperty(required = true, value = "The alg member identifies the cryptographic algorithm family used with the key.") public String getAlg() { return alg; } public void setAlg(String alg) { this.alg = alg; } public JWKPublicKey crv(String crv) { this.crv = crv; return this; } /** * The crv member identifies the cryptographic curve used with the key. * @return crv **/ @ApiModelProperty(required = true, value = "The crv member identifies the cryptographic curve used with the key.") public String getCrv() { return crv; } public void setCrv(String crv) { this.crv = crv; } public JWKPublicKey kid(String kid) { this.kid = kid; return this; } /** * The kid (Key ID) member can be used to match a specific key. This can be used, for instance, to choose among a set of keys within the JWK during key rollover. * @return kid **/ @ApiModelProperty(required = true, value = "The kid (Key ID) member can be used to match a specific key. This can be used, for instance, to choose among a set of keys within the JWK during key rollover.") public String getKid() { return kid; } public void setKid(String kid) { this.kid = kid; } public JWKPublicKey kty(String kty) { this.kty = kty; return this; } /** * The kty (key type) parameter identifies the cryptographic algorithm family used with the key, such as RSA or EC. * @return kty **/ @ApiModelProperty(required = true, value = "The kty (key type) parameter identifies the cryptographic algorithm family used with the key, such as RSA or EC.") public String getKty() { return kty; } public void setKty(String kty) { this.kty = kty; } public JWKPublicKey use(String use) { this.use = use; return this; } /** * The use (public key use) parameter identifies the intended use of the public key. * @return use **/ @ApiModelProperty(required = true, value = "The use (public key use) parameter identifies the intended use of the public key.") public String getUse() { return use; } public void setUse(String use) { this.use = use; } public JWKPublicKey x(String x) { this.x = x; return this; } /** * The x member contains the x coordinate for the elliptic curve point, provided as a base64url-encoded string of the coordinate&#39;s big endian representation. * @return x **/ @ApiModelProperty(required = true, value = "The x member contains the x coordinate for the elliptic curve point, provided as a base64url-encoded string of the coordinate's big endian representation.") public String getX() { return x; } public void setX(String x) { this.x = x; } public JWKPublicKey y(String y) { this.y = y; return this; } /** * The y member contains the y coordinate for the elliptic curve point, provided as a base64url-encoded string of the coordinate&#39;s big endian representation. * @return y **/ @ApiModelProperty(required = true, value = "The y member contains the y coordinate for the elliptic curve point, provided as a base64url-encoded string of the coordinate's big endian representation.") public String getY() { return y; } public void setY(String y) { this.y = y; } public JWKPublicKey createdAt(Integer createdAt) { this.createdAt = createdAt; return this; } /** * The timestamp when the key was created, in Unix time. * @return createdAt **/ @ApiModelProperty(required = true, value = "The timestamp when the key was created, in Unix time.") public Integer getCreatedAt() { return createdAt; } public void setCreatedAt(Integer createdAt) { this.createdAt = createdAt; } public JWKPublicKey expiredAt(Integer expiredAt) { this.expiredAt = expiredAt; return this; } /** * The timestamp when the key expired, in Unix time. * @return expiredAt **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The timestamp when the key expired, in Unix time.") public Integer getExpiredAt() { return expiredAt; } public void setExpiredAt(Integer expiredAt) { this.expiredAt = expiredAt; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } JWKPublicKey jwKPublicKey = (JWKPublicKey) o; return Objects.equals(this.alg, jwKPublicKey.alg) && Objects.equals(this.crv, jwKPublicKey.crv) && Objects.equals(this.kid, jwKPublicKey.kid) && Objects.equals(this.kty, jwKPublicKey.kty) && Objects.equals(this.use, jwKPublicKey.use) && Objects.equals(this.x, jwKPublicKey.x) && Objects.equals(this.y, jwKPublicKey.y) && Objects.equals(this.createdAt, jwKPublicKey.createdAt) && Objects.equals(this.expiredAt, jwKPublicKey.expiredAt); } @Override public int hashCode() { return Objects.hash(alg, crv, kid, kty, use, x, y, createdAt, expiredAt); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class JWKPublicKey {\n"); sb.append(" alg: ").append(toIndentedString(alg)).append("\n"); sb.append(" crv: ").append(toIndentedString(crv)).append("\n"); sb.append(" kid: ").append(toIndentedString(kid)).append("\n"); sb.append(" kty: ").append(toIndentedString(kty)).append("\n"); sb.append(" use: ").append(toIndentedString(use)).append("\n"); sb.append(" x: ").append(toIndentedString(x)).append("\n"); sb.append(" y: ").append(toIndentedString(y)).append("\n"); sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n"); sb.append(" expiredAt: ").append(toIndentedString(expiredAt)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SandboxItemFireWebhookResponse.java
src/main/java/com/plaid/client/model/SandboxItemFireWebhookResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * SandboxItemFireWebhookResponse defines the response schema for &#x60;/sandbox/item/fire_webhook&#x60; */ @ApiModel(description = "SandboxItemFireWebhookResponse defines the response schema for `/sandbox/item/fire_webhook`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SandboxItemFireWebhookResponse { public static final String SERIALIZED_NAME_WEBHOOK_FIRED = "webhook_fired"; @SerializedName(SERIALIZED_NAME_WEBHOOK_FIRED) private Boolean webhookFired; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public SandboxItemFireWebhookResponse webhookFired(Boolean webhookFired) { this.webhookFired = webhookFired; return this; } /** * Value is &#x60;true&#x60; if the test&#x60; webhook_code&#x60; was successfully fired. * @return webhookFired **/ @ApiModelProperty(required = true, value = "Value is `true` if the test` webhook_code` was successfully fired.") public Boolean getWebhookFired() { return webhookFired; } public void setWebhookFired(Boolean webhookFired) { this.webhookFired = webhookFired; } public SandboxItemFireWebhookResponse 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; } SandboxItemFireWebhookResponse sandboxItemFireWebhookResponse = (SandboxItemFireWebhookResponse) o; return Objects.equals(this.webhookFired, sandboxItemFireWebhookResponse.webhookFired) && Objects.equals(this.requestId, sandboxItemFireWebhookResponse.requestId); } @Override public int hashCode() { return Objects.hash(webhookFired, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SandboxItemFireWebhookResponse {\n"); sb.append(" webhookFired: ").append(toIndentedString(webhookFired)).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/PaymentInitiationConsentGetResponse.java
src/main/java/com/plaid/client/model/PaymentInitiationConsentGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.ExternalPaymentRefundDetails; import com.plaid.client.model.PaymentInitiationConsent; import com.plaid.client.model.PaymentInitiationConsentConstraints; import com.plaid.client.model.PaymentInitiationConsentScope; import com.plaid.client.model.PaymentInitiationConsentStatus; import com.plaid.client.model.PaymentInitiationConsentType; import com.plaid.client.model.PaymentInitiationRecipientGetResponseAllOf; 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; /** * PaymentInitiationConsentGetResponse defines the response schema for &#x60;/payment_initation/consent/get&#x60; */ @ApiModel(description = "PaymentInitiationConsentGetResponse defines the response schema for `/payment_initation/consent/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentInitiationConsentGetResponse { public static final String SERIALIZED_NAME_CONSENT_ID = "consent_id"; @SerializedName(SERIALIZED_NAME_CONSENT_ID) private String consentId; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private PaymentInitiationConsentStatus 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_RECIPIENT_ID = "recipient_id"; @SerializedName(SERIALIZED_NAME_RECIPIENT_ID) private String recipientId; public static final String SERIALIZED_NAME_REFERENCE = "reference"; @SerializedName(SERIALIZED_NAME_REFERENCE) private String reference; public static final String SERIALIZED_NAME_CONSTRAINTS = "constraints"; @SerializedName(SERIALIZED_NAME_CONSTRAINTS) private PaymentInitiationConsentConstraints constraints; public static final String SERIALIZED_NAME_SCOPES = "scopes"; @SerializedName(SERIALIZED_NAME_SCOPES) private List<PaymentInitiationConsentScope> scopes = null; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private PaymentInitiationConsentType type; public static final String SERIALIZED_NAME_PAYER_DETAILS = "payer_details"; @SerializedName(SERIALIZED_NAME_PAYER_DETAILS) private ExternalPaymentRefundDetails payerDetails; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public PaymentInitiationConsentGetResponse consentId(String consentId) { this.consentId = consentId; return this; } /** * The consent ID. * @return consentId **/ @ApiModelProperty(required = true, value = "The consent ID.") public String getConsentId() { return consentId; } public void setConsentId(String consentId) { this.consentId = consentId; } public PaymentInitiationConsentGetResponse status(PaymentInitiationConsentStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public PaymentInitiationConsentStatus getStatus() { return status; } public void setStatus(PaymentInitiationConsentStatus status) { this.status = status; } public PaymentInitiationConsentGetResponse createdAt(OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** * Consent creation timestamp, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format. * @return createdAt **/ @ApiModelProperty(required = true, value = "Consent creation timestamp, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format.") public OffsetDateTime getCreatedAt() { return createdAt; } public void setCreatedAt(OffsetDateTime createdAt) { this.createdAt = createdAt; } public PaymentInitiationConsentGetResponse recipientId(String recipientId) { this.recipientId = recipientId; return this; } /** * The ID of the recipient the payment consent is for. * @return recipientId **/ @ApiModelProperty(required = true, value = "The ID of the recipient the payment consent is for.") public String getRecipientId() { return recipientId; } public void setRecipientId(String recipientId) { this.recipientId = recipientId; } public PaymentInitiationConsentGetResponse reference(String reference) { this.reference = reference; return this; } /** * A reference for the payment consent. * @return reference **/ @ApiModelProperty(required = true, value = "A reference for the payment consent.") public String getReference() { return reference; } public void setReference(String reference) { this.reference = reference; } public PaymentInitiationConsentGetResponse constraints(PaymentInitiationConsentConstraints constraints) { this.constraints = constraints; return this; } /** * Get constraints * @return constraints **/ @ApiModelProperty(required = true, value = "") public PaymentInitiationConsentConstraints getConstraints() { return constraints; } public void setConstraints(PaymentInitiationConsentConstraints constraints) { this.constraints = constraints; } public PaymentInitiationConsentGetResponse scopes(List<PaymentInitiationConsentScope> scopes) { this.scopes = scopes; return this; } public PaymentInitiationConsentGetResponse addScopesItem(PaymentInitiationConsentScope scopesItem) { if (this.scopes == null) { this.scopes = new ArrayList<>(); } this.scopes.add(scopesItem); return this; } /** * Deprecated, use the &#39;type&#39; field instead. * @return scopes **/ @javax.annotation.Nullable @ApiModelProperty(value = "Deprecated, use the 'type' field instead.") public List<PaymentInitiationConsentScope> getScopes() { return scopes; } public void setScopes(List<PaymentInitiationConsentScope> scopes) { this.scopes = scopes; } public PaymentInitiationConsentGetResponse type(PaymentInitiationConsentType type) { this.type = type; return this; } /** * Get type * @return type **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaymentInitiationConsentType getType() { return type; } public void setType(PaymentInitiationConsentType type) { this.type = type; } public PaymentInitiationConsentGetResponse payerDetails(ExternalPaymentRefundDetails payerDetails) { this.payerDetails = payerDetails; return this; } /** * Get payerDetails * @return payerDetails **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ExternalPaymentRefundDetails getPayerDetails() { return payerDetails; } public void setPayerDetails(ExternalPaymentRefundDetails payerDetails) { this.payerDetails = payerDetails; } public PaymentInitiationConsentGetResponse 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; } PaymentInitiationConsentGetResponse paymentInitiationConsentGetResponse = (PaymentInitiationConsentGetResponse) o; return Objects.equals(this.consentId, paymentInitiationConsentGetResponse.consentId) && Objects.equals(this.status, paymentInitiationConsentGetResponse.status) && Objects.equals(this.createdAt, paymentInitiationConsentGetResponse.createdAt) && Objects.equals(this.recipientId, paymentInitiationConsentGetResponse.recipientId) && Objects.equals(this.reference, paymentInitiationConsentGetResponse.reference) && Objects.equals(this.constraints, paymentInitiationConsentGetResponse.constraints) && Objects.equals(this.scopes, paymentInitiationConsentGetResponse.scopes) && Objects.equals(this.type, paymentInitiationConsentGetResponse.type) && Objects.equals(this.payerDetails, paymentInitiationConsentGetResponse.payerDetails) && Objects.equals(this.requestId, paymentInitiationConsentGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(consentId, status, createdAt, recipientId, reference, constraints, scopes, type, payerDetails, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentInitiationConsentGetResponse {\n"); sb.append(" consentId: ").append(toIndentedString(consentId)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n"); sb.append(" recipientId: ").append(toIndentedString(recipientId)).append("\n"); sb.append(" reference: ").append(toIndentedString(reference)).append("\n"); sb.append(" constraints: ").append(toIndentedString(constraints)).append("\n"); sb.append(" scopes: ").append(toIndentedString(scopes)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" payerDetails: ").append(toIndentedString(payerDetails)).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/ActivityType.java
src/main/java/com/plaid/client/model/ActivityType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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; /** * Types of consent activities */ @JsonAdapter(ActivityType.Adapter.class) public enum ActivityType { UNKNOWN("UNKNOWN"), ITEM_CREATE("ITEM_CREATE"), ITEM_IMPORT("ITEM_IMPORT"), ITEM_UPDATE("ITEM_UPDATE"), ITEM_UNLINK("ITEM_UNLINK"), PORTAL_UNLINK("PORTAL_UNLINK"), PORTAL_ITEMS_DELETE("PORTAL_ITEMS_DELETE"), ITEM_REMOVE("ITEM_REMOVE"), INVARIANT_CHECKER_DELETION("INVARIANT_CHECKER_DELETION"), SCOPES_UPDATE("SCOPES_UPDATE"), // 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; ActivityType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static ActivityType fromValue(String value) { for (ActivityType b : ActivityType.values()) { if (b.value.equals(value)) { return b; } } return ActivityType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<ActivityType> { @Override public void write(final JsonWriter jsonWriter, final ActivityType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public ActivityType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return ActivityType.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/EmployerVerification.java
src/main/java/com/plaid/client/model/EmployerVerification.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 containing employer data. */ @ApiModel(description = "An object containing employer data.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class EmployerVerification { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public EmployerVerification name(String name) { this.name = name; return this; } /** * Name of employer. * @return name **/ @javax.annotation.Nullable @ApiModelProperty(value = "Name of employer.") public String getName() { return name; } public void setName(String name) { this.name = name; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } EmployerVerification employerVerification = (EmployerVerification) o; return Objects.equals(this.name, employerVerification.name); } @Override public int hashCode() { return Objects.hash(name); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class EmployerVerification {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProtectReportCreateResponse.java
src/main/java/com/plaid/client/model/ProtectReportCreateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Response object for /protect/report/create */ @ApiModel(description = "Response object for /protect/report/create") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProtectReportCreateResponse { public static final String SERIALIZED_NAME_REPORT_ID = "report_id"; @SerializedName(SERIALIZED_NAME_REPORT_ID) private String reportId; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public ProtectReportCreateResponse reportId(String reportId) { this.reportId = reportId; return this; } /** * A unique identifier representing the submitted report. * @return reportId **/ @ApiModelProperty(required = true, value = "A unique identifier representing the submitted report.") public String getReportId() { return reportId; } public void setReportId(String reportId) { this.reportId = reportId; } public ProtectReportCreateResponse 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; } ProtectReportCreateResponse protectReportCreateResponse = (ProtectReportCreateResponse) o; return Objects.equals(this.reportId, protectReportCreateResponse.reportId) && Objects.equals(this.requestId, protectReportCreateResponse.requestId); } @Override public int hashCode() { return Objects.hash(reportId, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProtectReportCreateResponse {\n"); sb.append(" reportId: ").append(toIndentedString(reportId)).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/PartnerCustomerRemoveRequest.java
src/main/java/com/plaid/client/model/PartnerCustomerRemoveRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Request schema for &#x60;/partner/customer/remove&#x60;. */ @ApiModel(description = "Request schema for `/partner/customer/remove`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PartnerCustomerRemoveRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_END_CUSTOMER_CLIENT_ID = "end_customer_client_id"; @SerializedName(SERIALIZED_NAME_END_CUSTOMER_CLIENT_ID) private String endCustomerClientId; public PartnerCustomerRemoveRequest 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 PartnerCustomerRemoveRequest 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 PartnerCustomerRemoveRequest endCustomerClientId(String endCustomerClientId) { this.endCustomerClientId = endCustomerClientId; return this; } /** * The &#x60;client_id&#x60; of the end customer to be removed. * @return endCustomerClientId **/ @ApiModelProperty(required = true, value = "The `client_id` of the end customer to be removed.") public String getEndCustomerClientId() { return endCustomerClientId; } public void setEndCustomerClientId(String endCustomerClientId) { this.endCustomerClientId = endCustomerClientId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PartnerCustomerRemoveRequest partnerCustomerRemoveRequest = (PartnerCustomerRemoveRequest) o; return Objects.equals(this.clientId, partnerCustomerRemoveRequest.clientId) && Objects.equals(this.secret, partnerCustomerRemoveRequest.secret) && Objects.equals(this.endCustomerClientId, partnerCustomerRemoveRequest.endCustomerClientId); } @Override public int hashCode() { return Objects.hash(clientId, secret, endCustomerClientId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PartnerCustomerRemoveRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" endCustomerClientId: ").append(toIndentedString(endCustomerClientId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BusinessEntityType.java
src/main/java/com/plaid/client/model/BusinessEntityType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 legal structure or type of business entity */ @JsonAdapter(BusinessEntityType.Adapter.class) public enum BusinessEntityType { SOLE_PROPRIETORSHIP("sole_proprietorship"), GENERAL_PARTNERSHIP("general_partnership"), LLC("llc"), LLP("llp"), LLLP("lllp"), LP("lp"), C_CORPORATION("c_corporation"), S_CORPORATION("s_corporation"), B_CORPORATION("b_corporation"), NONPROFIT("nonprofit"), COOPERATIVE("cooperative"), TRUST("trust"), PROFESSIONAL_ASSOCIATION("professional_association"), PROFESSIONAL_CORPORATION("professional_corporation"), TRADE_NAME("trade_name"), BANK("bank"), CREDIT_UNION("credit_union"), INSURANCE("insurance"), OTHER("other"), UNKNOWN("unknown"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; BusinessEntityType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static BusinessEntityType fromValue(String value) { for (BusinessEntityType b : BusinessEntityType.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<BusinessEntityType> { @Override public void write(final JsonWriter jsonWriter, final BusinessEntityType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public BusinessEntityType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return BusinessEntityType.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/IdentityVerificationCreateRequestUser.java
src/main/java/com/plaid/client/model/IdentityVerificationCreateRequestUser.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.IdentityVerificationRequestUserName; import com.plaid.client.model.UserAddress; import com.plaid.client.model.UserIDNumber; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * User information collected outside of Link, most likely via your own onboarding process. Each of the following identity fields are optional: &#x60;email_address&#x60; &#x60;phone_number&#x60; &#x60;date_of_birth&#x60; &#x60;name&#x60; &#x60;address&#x60; &#x60;id_number&#x60; Specifically, these fields are optional in that they can either be fully provided (satisfying every required field in their subschema) or omitted from the request entirely by not providing the key or value. Providing these fields via the API will result in Link skipping the data collection process for the associated user. All verification steps enabled in the associated Identity Verification Template will still be run. Verification steps will either be run immediately, or once the user completes the &#x60;accept_tos&#x60; step, depending on the value provided to the &#x60;gave_consent&#x60; field. If you are not using the shareable URL feature, you can optionally provide these fields via &#x60;/link/token/create&#x60; instead; both &#x60;/identity_verification/create&#x60; and &#x60;/link/token/create&#x60; are valid ways to provide this information. Note that if you provide a non-&#x60;null&#x60; user data object via &#x60;/identity_verification/create&#x60;, any user data fields entered via &#x60;/link/token/create&#x60; for the same &#x60;client_user_id&#x60; will be ignored when prefilling Link. */ @ApiModel(description = "User information collected outside of Link, most likely via your own onboarding process. Each of the following identity fields are optional: `email_address` `phone_number` `date_of_birth` `name` `address` `id_number` Specifically, these fields are optional in that they can either be fully provided (satisfying every required field in their subschema) or omitted from the request entirely by not providing the key or value. Providing these fields via the API will result in Link skipping the data collection process for the associated user. All verification steps enabled in the associated Identity Verification Template will still be run. Verification steps will either be run immediately, or once the user completes the `accept_tos` step, depending on the value provided to the `gave_consent` field. If you are not using the shareable URL feature, you can optionally provide these fields via `/link/token/create` instead; both `/identity_verification/create` and `/link/token/create` are valid ways to provide this information. Note that if you provide a non-`null` user data object via `/identity_verification/create`, any user data fields entered via `/link/token/create` for the same `client_user_id` will be ignored when prefilling Link.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityVerificationCreateRequestUser { 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_DATE_OF_BIRTH = "date_of_birth"; @SerializedName(SERIALIZED_NAME_DATE_OF_BIRTH) private LocalDate dateOfBirth; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private IdentityVerificationRequestUserName name; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private UserAddress address; public static final String SERIALIZED_NAME_ID_NUMBER = "id_number"; @SerializedName(SERIALIZED_NAME_ID_NUMBER) private UserIDNumber idNumber; public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id"; @SerializedName(SERIALIZED_NAME_CLIENT_USER_ID) private String clientUserId; public IdentityVerificationCreateRequestUser emailAddress(String emailAddress) { this.emailAddress = emailAddress; return this; } /** * A valid email address. Must not have leading or trailing spaces and address must be RFC compliant. For more information, see [RFC 3696](https://datatracker.ietf.org/doc/html/rfc3696). * @return emailAddress **/ @javax.annotation.Nullable @ApiModelProperty(example = "user@example.com", value = "A valid email address. Must not have leading or trailing spaces and address must be RFC compliant. For more information, see [RFC 3696](https://datatracker.ietf.org/doc/html/rfc3696).") public String getEmailAddress() { return emailAddress; } public void setEmailAddress(String emailAddress) { this.emailAddress = emailAddress; } public IdentityVerificationCreateRequestUser phoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; return this; } /** * A valid phone number in E.164 format. * @return phoneNumber **/ @javax.annotation.Nullable @ApiModelProperty(example = "+12345678909", value = "A valid phone number in E.164 format.") public String getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } public IdentityVerificationCreateRequestUser dateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; return this; } /** * A date in the format YYYY-MM-DD (RFC 3339 Section 5.6). * @return dateOfBirth **/ @javax.annotation.Nullable @ApiModelProperty(example = "Tue May 29 00:00:00 UTC 1990", value = "A date in the format YYYY-MM-DD (RFC 3339 Section 5.6).") public LocalDate getDateOfBirth() { return dateOfBirth; } public void setDateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; } public IdentityVerificationCreateRequestUser name(IdentityVerificationRequestUserName name) { this.name = name; return this; } /** * Get name * @return name **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public IdentityVerificationRequestUserName getName() { return name; } public void setName(IdentityVerificationRequestUserName name) { this.name = name; } public IdentityVerificationCreateRequestUser address(UserAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public UserAddress getAddress() { return address; } public void setAddress(UserAddress address) { this.address = address; } public IdentityVerificationCreateRequestUser idNumber(UserIDNumber idNumber) { this.idNumber = idNumber; return this; } /** * Get idNumber * @return idNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public UserIDNumber getIdNumber() { return idNumber; } public void setIdNumber(UserIDNumber idNumber) { this.idNumber = idNumber; } public IdentityVerificationCreateRequestUser clientUserId(String clientUserId) { this.clientUserId = clientUserId; return this; } /** * Specifying &#x60;user.client_user_id&#x60; is deprecated. Please provide &#x60;client_user_id&#x60; at the root level instead. * @return clientUserId **/ @javax.annotation.Nullable @ApiModelProperty(example = "your-db-id-3b24110", value = "Specifying `user.client_user_id` is deprecated. Please provide `client_user_id` at the root level instead.") public String getClientUserId() { return clientUserId; } public void setClientUserId(String clientUserId) { this.clientUserId = clientUserId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IdentityVerificationCreateRequestUser identityVerificationCreateRequestUser = (IdentityVerificationCreateRequestUser) o; return Objects.equals(this.emailAddress, identityVerificationCreateRequestUser.emailAddress) && Objects.equals(this.phoneNumber, identityVerificationCreateRequestUser.phoneNumber) && Objects.equals(this.dateOfBirth, identityVerificationCreateRequestUser.dateOfBirth) && Objects.equals(this.name, identityVerificationCreateRequestUser.name) && Objects.equals(this.address, identityVerificationCreateRequestUser.address) && Objects.equals(this.idNumber, identityVerificationCreateRequestUser.idNumber) && Objects.equals(this.clientUserId, identityVerificationCreateRequestUser.clientUserId); } @Override public int hashCode() { return Objects.hash(emailAddress, phoneNumber, dateOfBirth, name, address, idNumber, clientUserId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityVerificationCreateRequestUser {\n"); sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n"); sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n"); sb.append(" dateOfBirth: ").append(toIndentedString(dateOfBirth)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" idNumber: ").append(toIndentedString(idNumber)).append("\n"); sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/Form1099Type.java
src/main/java/com/plaid/client/model/Form1099Type.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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; /** * Form 1099 Type */ @JsonAdapter(Form1099Type.Adapter.class) public enum Form1099Type { UNKNOWN("FORM_1099_TYPE_UNKNOWN"), MISC("FORM_1099_TYPE_MISC"), K("FORM_1099_TYPE_K"), // 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; Form1099Type(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static Form1099Type fromValue(String value) { for (Form1099Type b : Form1099Type.values()) { if (b.value.equals(value)) { return b; } } return Form1099Type.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<Form1099Type> { @Override public void write(final JsonWriter jsonWriter, final Form1099Type enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public Form1099Type read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return Form1099Type.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/OAuthSubjectTokenType.java
src/main/java/com/plaid/client/model/OAuthSubjectTokenType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 the subject token. &#x60;urn:plaid:params:tokens:user&#x60; allows exchanging a Plaid-issued user token for an OAuth token. When using this token type, &#x60;audience&#x60; must be the same as the &#x60;client_id&#x60;. &#x60;subject_token&#x60; must be a Plaid-issued user token issued from the &#x60;/user/create&#x60; endpoint. &#x60;urn:plaid:params:oauth:user-token&#x60; allows exchanging a refresh token for an OAuth token to another &#x60;client_id&#x60;. The other &#x60;client_id&#x60; is provided in &#x60;audience&#x60;. &#x60;subject_token&#x60; must be an OAuth refresh token issued from the &#x60;/oauth/token&#x60; endpoint. &#x60;urn:plaid:params:credit:multi-user&#x60; allows exchanging a Plaid-issued user token for an OAuth token. When using this token type, &#x60;audience&#x60; may be a client id or a supported CRA partner URN. &#x60;audience&#x60; supports a comma-delimited list of clients. When multiple clients are specified in the &#x60;audience&#x60; a multi-party token is created which can be used by all parties in the audience in conjunction with their &#x60;client_id&#x60; and &#x60;client_secret&#x60;. */ @JsonAdapter(OAuthSubjectTokenType.Adapter.class) public enum OAuthSubjectTokenType { TOKENS_USER("urn:plaid:params:tokens:user"), OAUTH_USER_TOKEN("urn:plaid:params:oauth:user-token"), CREDIT_MULTI_USER("urn:plaid:params:credit:multi-user"), // 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; OAuthSubjectTokenType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static OAuthSubjectTokenType fromValue(String value) { for (OAuthSubjectTokenType b : OAuthSubjectTokenType.values()) { if (b.value.equals(value)) { return b; } } return OAuthSubjectTokenType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<OAuthSubjectTokenType> { @Override public void write(final JsonWriter jsonWriter, final OAuthSubjectTokenType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public OAuthSubjectTokenType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return OAuthSubjectTokenType.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/Roles.java
src/main/java/com/plaid/client/model/Roles.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.Role; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Documentation not found in the MISMO model viewer and not provided by Freddie Mac. */ @ApiModel(description = "Documentation not found in the MISMO model viewer and not provided by Freddie Mac.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Roles { public static final String SERIALIZED_NAME_R_O_L_E = "ROLE"; @SerializedName(SERIALIZED_NAME_R_O_L_E) private Role ROLE; public Roles ROLE(Role ROLE) { this.ROLE = ROLE; return this; } /** * Get ROLE * @return ROLE **/ @ApiModelProperty(required = true, value = "") public Role getROLE() { return ROLE; } public void setROLE(Role ROLE) { this.ROLE = ROLE; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Roles roles = (Roles) o; return Objects.equals(this.ROLE, roles.ROLE); } @Override public int hashCode() { return Objects.hash(ROLE); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Roles {\n"); sb.append(" ROLE: ").append(toIndentedString(ROLE)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PayFrequencyValue.java
src/main/java/com/plaid/client/model/PayFrequencyValue.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The frequency of the pay period. */ @JsonAdapter(PayFrequencyValue.Adapter.class) public enum PayFrequencyValue { MONTHLY("monthly"), SEMIMONTHLY("semimonthly"), WEEKLY("weekly"), BIWEEKLY("biweekly"), UNKNOWN("unknown"), 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; PayFrequencyValue(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PayFrequencyValue fromValue(String value) { for (PayFrequencyValue b : PayFrequencyValue.values()) { if (b.value.equals(value)) { return b; } } return PayFrequencyValue.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<PayFrequencyValue> { @Override public void write(final JsonWriter jsonWriter, final PayFrequencyValue enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PayFrequencyValue read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PayFrequencyValue.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/SandboxBankIncomeFireWebhookRequest.java
src/main/java/com/plaid/client/model/SandboxBankIncomeFireWebhookRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.SandboxBankIncomeWebhookFireRequestWebhookCode; import com.plaid.client.model.SandboxBankIncomeWebhookFireRequestWebhookFields; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * SandboxBankIncomeFireWebhookRequest defines the request schema for &#x60;/sandbox/bank_income/fire_webhook&#x60; */ @ApiModel(description = "SandboxBankIncomeFireWebhookRequest defines the request schema for `/sandbox/bank_income/fire_webhook`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SandboxBankIncomeFireWebhookRequest { 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_OVERRIDE = "webhook_override"; @SerializedName(SERIALIZED_NAME_WEBHOOK_OVERRIDE) private String webhookOverride; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private SandboxBankIncomeWebhookFireRequestWebhookCode webhookCode; public static final String SERIALIZED_NAME_WEBHOOK_FIELDS = "webhook_fields"; @SerializedName(SERIALIZED_NAME_WEBHOOK_FIELDS) private SandboxBankIncomeWebhookFireRequestWebhookFields webhookFields; public SandboxBankIncomeFireWebhookRequest 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 SandboxBankIncomeFireWebhookRequest 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 SandboxBankIncomeFireWebhookRequest webhookOverride(String webhookOverride) { this.webhookOverride = webhookOverride; return this; } /** * The URL to which the webhook should be sent. If provided, this will override the URL set in the dashboard. * @return webhookOverride **/ @javax.annotation.Nullable @ApiModelProperty(value = "The URL to which the webhook should be sent. If provided, this will override the URL set in the dashboard.") public String getWebhookOverride() { return webhookOverride; } public void setWebhookOverride(String webhookOverride) { this.webhookOverride = webhookOverride; } public SandboxBankIncomeFireWebhookRequest webhookCode(SandboxBankIncomeWebhookFireRequestWebhookCode webhookCode) { this.webhookCode = webhookCode; return this; } /** * Get webhookCode * @return webhookCode **/ @ApiModelProperty(required = true, value = "") public SandboxBankIncomeWebhookFireRequestWebhookCode getWebhookCode() { return webhookCode; } public void setWebhookCode(SandboxBankIncomeWebhookFireRequestWebhookCode webhookCode) { this.webhookCode = webhookCode; } public SandboxBankIncomeFireWebhookRequest webhookFields(SandboxBankIncomeWebhookFireRequestWebhookFields webhookFields) { this.webhookFields = webhookFields; return this; } /** * Get webhookFields * @return webhookFields **/ @ApiModelProperty(required = true, value = "") public SandboxBankIncomeWebhookFireRequestWebhookFields getWebhookFields() { return webhookFields; } public void setWebhookFields(SandboxBankIncomeWebhookFireRequestWebhookFields webhookFields) { this.webhookFields = webhookFields; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SandboxBankIncomeFireWebhookRequest sandboxBankIncomeFireWebhookRequest = (SandboxBankIncomeFireWebhookRequest) o; return Objects.equals(this.clientId, sandboxBankIncomeFireWebhookRequest.clientId) && Objects.equals(this.secret, sandboxBankIncomeFireWebhookRequest.secret) && Objects.equals(this.webhookOverride, sandboxBankIncomeFireWebhookRequest.webhookOverride) && Objects.equals(this.webhookCode, sandboxBankIncomeFireWebhookRequest.webhookCode) && Objects.equals(this.webhookFields, sandboxBankIncomeFireWebhookRequest.webhookFields); } @Override public int hashCode() { return Objects.hash(clientId, secret, webhookOverride, webhookCode, webhookFields); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SandboxBankIncomeFireWebhookRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" webhookOverride: ").append(toIndentedString(webhookOverride)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" webhookFields: ").append(toIndentedString(webhookFields)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditPayStubPayBasisType.java
src/main/java/com/plaid/client/model/CreditPayStubPayBasisType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 explicit pay basis on the paystub (if present). */ @JsonAdapter(CreditPayStubPayBasisType.Adapter.class) public enum CreditPayStubPayBasisType { SALARY("SALARY"), HOURLY("HOURLY"), COMMISSION("COMMISSION"), // 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; CreditPayStubPayBasisType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static CreditPayStubPayBasisType fromValue(String value) { for (CreditPayStubPayBasisType b : CreditPayStubPayBasisType.values()) { if (b.value.equals(value)) { return b; } } return CreditPayStubPayBasisType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<CreditPayStubPayBasisType> { @Override public void write(final JsonWriter jsonWriter, final CreditPayStubPayBasisType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public CreditPayStubPayBasisType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return CreditPayStubPayBasisType.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/GetRecipientsResponse.java
src/main/java/com/plaid/client/model/GetRecipientsResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.ExtendedRecipientMetadata; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * GetRecipientsResponse defines the response schema for &#x60;/fdx/recipients&#x60; */ @ApiModel(description = "GetRecipientsResponse defines the response schema for `/fdx/recipients`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class GetRecipientsResponse { public static final String SERIALIZED_NAME_RECIPIENTS = "recipients"; @SerializedName(SERIALIZED_NAME_RECIPIENTS) private List<ExtendedRecipientMetadata> recipients = new ArrayList<>(); public GetRecipientsResponse recipients(List<ExtendedRecipientMetadata> recipients) { this.recipients = recipients; return this; } public GetRecipientsResponse addRecipientsItem(ExtendedRecipientMetadata recipientsItem) { this.recipients.add(recipientsItem); return this; } /** * Get recipients * @return recipients **/ @ApiModelProperty(required = true, value = "") public List<ExtendedRecipientMetadata> getRecipients() { return recipients; } public void setRecipients(List<ExtendedRecipientMetadata> recipients) { this.recipients = recipients; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } GetRecipientsResponse getRecipientsResponse = (GetRecipientsResponse) o; return Objects.equals(this.recipients, getRecipientsResponse.recipients); } @Override public int hashCode() { return Objects.hash(recipients); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class GetRecipientsResponse {\n"); sb.append(" recipients: ").append(toIndentedString(recipients)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditBankEmploymentItem.java
src/main/java/com/plaid/client/model/CreditBankEmploymentItem.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CreditBankEmployment; import com.plaid.client.model.CreditBankIncomeAccount; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.List; /** * The details and metadata for an end user&#39;s Item. */ @ApiModel(description = "The details and metadata for an end user's Item.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditBankEmploymentItem { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_LAST_UPDATED_TIME = "last_updated_time"; @SerializedName(SERIALIZED_NAME_LAST_UPDATED_TIME) private OffsetDateTime lastUpdatedTime; public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_ID) private String institutionId; public static final String SERIALIZED_NAME_INSTITUTION_NAME = "institution_name"; @SerializedName(SERIALIZED_NAME_INSTITUTION_NAME) private String institutionName; public static final String SERIALIZED_NAME_BANK_EMPLOYMENTS = "bank_employments"; @SerializedName(SERIALIZED_NAME_BANK_EMPLOYMENTS) private List<CreditBankEmployment> bankEmployments = new ArrayList<>(); public static final String SERIALIZED_NAME_BANK_EMPLOYMENT_ACCOUNTS = "bank_employment_accounts"; @SerializedName(SERIALIZED_NAME_BANK_EMPLOYMENT_ACCOUNTS) private List<CreditBankIncomeAccount> bankEmploymentAccounts = new ArrayList<>(); public CreditBankEmploymentItem itemId(String itemId) { this.itemId = itemId; return this; } /** * The unique identifier for the Item. * @return itemId **/ @ApiModelProperty(required = true, value = "The unique identifier for the Item.") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public CreditBankEmploymentItem lastUpdatedTime(OffsetDateTime lastUpdatedTime) { this.lastUpdatedTime = lastUpdatedTime; return this; } /** * The time when this Item&#39;s data was last retrieved from the financial institution, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (e.g. \&quot;2018-04-12T03:32:11Z\&quot;). * @return lastUpdatedTime **/ @ApiModelProperty(required = true, value = "The time when this Item's data was last retrieved from the financial institution, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (e.g. \"2018-04-12T03:32:11Z\").") public OffsetDateTime getLastUpdatedTime() { return lastUpdatedTime; } public void setLastUpdatedTime(OffsetDateTime lastUpdatedTime) { this.lastUpdatedTime = lastUpdatedTime; } public CreditBankEmploymentItem institutionId(String institutionId) { this.institutionId = institutionId; return this; } /** * The unique identifier of the institution associated with the Item. * @return institutionId **/ @ApiModelProperty(required = true, value = "The unique identifier of the institution associated with the Item.") public String getInstitutionId() { return institutionId; } public void setInstitutionId(String institutionId) { this.institutionId = institutionId; } public CreditBankEmploymentItem institutionName(String institutionName) { this.institutionName = institutionName; return this; } /** * The name of the institution associated with the Item. * @return institutionName **/ @ApiModelProperty(required = true, value = "The name of the institution associated with the Item.") public String getInstitutionName() { return institutionName; } public void setInstitutionName(String institutionName) { this.institutionName = institutionName; } public CreditBankEmploymentItem bankEmployments(List<CreditBankEmployment> bankEmployments) { this.bankEmployments = bankEmployments; return this; } public CreditBankEmploymentItem addBankEmploymentsItem(CreditBankEmployment bankEmploymentsItem) { this.bankEmployments.add(bankEmploymentsItem); return this; } /** * The bank employment information for this Item. Each entry in the array is a different employer found. * @return bankEmployments **/ @ApiModelProperty(required = true, value = "The bank employment information for this Item. Each entry in the array is a different employer found.") public List<CreditBankEmployment> getBankEmployments() { return bankEmployments; } public void setBankEmployments(List<CreditBankEmployment> bankEmployments) { this.bankEmployments = bankEmployments; } public CreditBankEmploymentItem bankEmploymentAccounts(List<CreditBankIncomeAccount> bankEmploymentAccounts) { this.bankEmploymentAccounts = bankEmploymentAccounts; return this; } public CreditBankEmploymentItem addBankEmploymentAccountsItem(CreditBankIncomeAccount bankEmploymentAccountsItem) { this.bankEmploymentAccounts.add(bankEmploymentAccountsItem); return this; } /** * The Item&#39;s accounts that have Bank Employment data. * @return bankEmploymentAccounts **/ @ApiModelProperty(required = true, value = "The Item's accounts that have Bank Employment data.") public List<CreditBankIncomeAccount> getBankEmploymentAccounts() { return bankEmploymentAccounts; } public void setBankEmploymentAccounts(List<CreditBankIncomeAccount> bankEmploymentAccounts) { this.bankEmploymentAccounts = bankEmploymentAccounts; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditBankEmploymentItem creditBankEmploymentItem = (CreditBankEmploymentItem) o; return Objects.equals(this.itemId, creditBankEmploymentItem.itemId) && Objects.equals(this.lastUpdatedTime, creditBankEmploymentItem.lastUpdatedTime) && Objects.equals(this.institutionId, creditBankEmploymentItem.institutionId) && Objects.equals(this.institutionName, creditBankEmploymentItem.institutionName) && Objects.equals(this.bankEmployments, creditBankEmploymentItem.bankEmployments) && Objects.equals(this.bankEmploymentAccounts, creditBankEmploymentItem.bankEmploymentAccounts); } @Override public int hashCode() { return Objects.hash(itemId, lastUpdatedTime, institutionId, institutionName, bankEmployments, bankEmploymentAccounts); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditBankEmploymentItem {\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" lastUpdatedTime: ").append(toIndentedString(lastUpdatedTime)).append("\n"); sb.append(" institutionId: ").append(toIndentedString(institutionId)).append("\n"); sb.append(" institutionName: ").append(toIndentedString(institutionName)).append("\n"); sb.append(" bankEmployments: ").append(toIndentedString(bankEmployments)).append("\n"); sb.append(" bankEmploymentAccounts: ").append(toIndentedString(bankEmploymentAccounts)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferPlatformOriginatorCreateResponse.java
src/main/java/com/plaid/client/model/TransferPlatformOriginatorCreateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the response schema for &#x60;/transfer/platform/originator/create&#x60; */ @ApiModel(description = "Defines the response schema for `/transfer/platform/originator/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferPlatformOriginatorCreateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public TransferPlatformOriginatorCreateResponse 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; } TransferPlatformOriginatorCreateResponse transferPlatformOriginatorCreateResponse = (TransferPlatformOriginatorCreateResponse) o; return Objects.equals(this.requestId, transferPlatformOriginatorCreateResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferPlatformOriginatorCreateResponse {\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/CreditAuditCopyTokenCreateRequest.java
src/main/java/com/plaid/client/model/CreditAuditCopyTokenCreateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * CreditAuditCopyTokenCreateRequest defines the request schema for &#x60;/credit/audit_copy_token/create&#x60; */ @ApiModel(description = "CreditAuditCopyTokenCreateRequest defines the request schema for `/credit/audit_copy_token/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditAuditCopyTokenCreateRequest { 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_REPORT_TOKENS = "report_tokens"; @SerializedName(SERIALIZED_NAME_REPORT_TOKENS) private List<String> reportTokens = new ArrayList<>(); public CreditAuditCopyTokenCreateRequest 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 CreditAuditCopyTokenCreateRequest 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 CreditAuditCopyTokenCreateRequest reportTokens(List<String> reportTokens) { this.reportTokens = reportTokens; return this; } public CreditAuditCopyTokenCreateRequest addReportTokensItem(String reportTokensItem) { this.reportTokens.add(reportTokensItem); return this; } /** * List of report tokens; can include at most one VOA/standard Asset Report tokens and one VOE Asset Report Token. * @return reportTokens **/ @ApiModelProperty(required = true, value = "List of report tokens; can include at most one VOA/standard Asset Report tokens and one VOE Asset Report Token.") public List<String> getReportTokens() { return reportTokens; } public void setReportTokens(List<String> reportTokens) { this.reportTokens = reportTokens; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditAuditCopyTokenCreateRequest creditAuditCopyTokenCreateRequest = (CreditAuditCopyTokenCreateRequest) o; return Objects.equals(this.clientId, creditAuditCopyTokenCreateRequest.clientId) && Objects.equals(this.secret, creditAuditCopyTokenCreateRequest.secret) && Objects.equals(this.reportTokens, creditAuditCopyTokenCreateRequest.reportTokens); } @Override public int hashCode() { return Objects.hash(clientId, secret, reportTokens); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditAuditCopyTokenCreateRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" reportTokens: ").append(toIndentedString(reportTokens)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferMetricsGetRequest.java
src/main/java/com/plaid/client/model/TransferMetricsGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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/metrics/get&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/metrics/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferMetricsGetRequest { 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 TransferMetricsGetRequest 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 TransferMetricsGetRequest 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 TransferMetricsGetRequest 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; } TransferMetricsGetRequest transferMetricsGetRequest = (TransferMetricsGetRequest) o; return Objects.equals(this.clientId, transferMetricsGetRequest.clientId) && Objects.equals(this.secret, transferMetricsGetRequest.secret) && Objects.equals(this.originatorClientId, transferMetricsGetRequest.originatorClientId); } @Override public int hashCode() { return Objects.hash(clientId, secret, originatorClientId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferMetricsGetRequest {\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/ReportingInformation.java
src/main/java/com/plaid/client/model/ReportingInformation.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 an report identifier and a report name. */ @ApiModel(description = "Information about an report identifier and a report name.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ReportingInformation { public static final String SERIALIZED_NAME_REPORTING_INFORMATION_IDENTIFIER = "ReportingInformationIdentifier"; @SerializedName(SERIALIZED_NAME_REPORTING_INFORMATION_IDENTIFIER) private String reportingInformationIdentifier; public ReportingInformation reportingInformationIdentifier(String reportingInformationIdentifier) { this.reportingInformationIdentifier = reportingInformationIdentifier; return this; } /** * Documentation not found in the MISMO model viewer and not provided by Freddie Mac. * @return reportingInformationIdentifier **/ @ApiModelProperty(required = true, value = "Documentation not found in the MISMO model viewer and not provided by Freddie Mac.") public String getReportingInformationIdentifier() { return reportingInformationIdentifier; } public void setReportingInformationIdentifier(String reportingInformationIdentifier) { this.reportingInformationIdentifier = reportingInformationIdentifier; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ReportingInformation reportingInformation = (ReportingInformation) o; return Objects.equals(this.reportingInformationIdentifier, reportingInformation.reportingInformationIdentifier); } @Override public int hashCode() { return Objects.hash(reportingInformationIdentifier); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ReportingInformation {\n"); sb.append(" reportingInformationIdentifier: ").append(toIndentedString(reportingInformationIdentifier)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaymentInitiationPaymentListResponse.java
src/main/java/com/plaid/client/model/PaymentInitiationPaymentListResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.PaymentInitiationPayment; 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; /** * PaymentInitiationPaymentListResponse defines the response schema for &#x60;/payment_initiation/payment/list&#x60; */ @ApiModel(description = "PaymentInitiationPaymentListResponse defines the response schema for `/payment_initiation/payment/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentInitiationPaymentListResponse { public static final String SERIALIZED_NAME_PAYMENTS = "payments"; @SerializedName(SERIALIZED_NAME_PAYMENTS) private List<PaymentInitiationPayment> payments = new ArrayList<>(); public static final String SERIALIZED_NAME_NEXT_CURSOR = "next_cursor"; @SerializedName(SERIALIZED_NAME_NEXT_CURSOR) private OffsetDateTime nextCursor; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public PaymentInitiationPaymentListResponse payments(List<PaymentInitiationPayment> payments) { this.payments = payments; return this; } public PaymentInitiationPaymentListResponse addPaymentsItem(PaymentInitiationPayment paymentsItem) { this.payments.add(paymentsItem); return this; } /** * An array of payments that have been created, associated with the given &#x60;client_id&#x60;. * @return payments **/ @ApiModelProperty(required = true, value = "An array of payments that have been created, associated with the given `client_id`.") public List<PaymentInitiationPayment> getPayments() { return payments; } public void setPayments(List<PaymentInitiationPayment> payments) { this.payments = payments; } public PaymentInitiationPaymentListResponse nextCursor(OffsetDateTime nextCursor) { this.nextCursor = nextCursor; return this; } /** * The value that, when used as the optional &#x60;cursor&#x60; parameter to &#x60;/payment_initiation/payment/list&#x60;, will return the next unreturned payment as its first payment. * @return nextCursor **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The value that, when used as the optional `cursor` parameter to `/payment_initiation/payment/list`, will return the next unreturned payment as its first payment.") public OffsetDateTime getNextCursor() { return nextCursor; } public void setNextCursor(OffsetDateTime nextCursor) { this.nextCursor = nextCursor; } public PaymentInitiationPaymentListResponse 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; } PaymentInitiationPaymentListResponse paymentInitiationPaymentListResponse = (PaymentInitiationPaymentListResponse) o; return Objects.equals(this.payments, paymentInitiationPaymentListResponse.payments) && Objects.equals(this.nextCursor, paymentInitiationPaymentListResponse.nextCursor) && Objects.equals(this.requestId, paymentInitiationPaymentListResponse.requestId); } @Override public int hashCode() { return Objects.hash(payments, nextCursor, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentInitiationPaymentListResponse {\n"); sb.append(" payments: ").append(toIndentedString(payments)).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/IncomeVerificationPrecheckEmployerAddress.java
src/main/java/com/plaid/client/model/IncomeVerificationPrecheckEmployerAddress.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.IncomeVerificationPrecheckEmployerAddressData; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The address of the employer */ @ApiModel(description = "The address of the employer") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IncomeVerificationPrecheckEmployerAddress { 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 IncomeVerificationPrecheckEmployerAddress city(String city) { this.city = city; return this; } /** * The full city name * @return city **/ @javax.annotation.Nullable @ApiModelProperty(value = "The full city name") public String getCity() { return city; } public void setCity(String city) { this.city = city; } public IncomeVerificationPrecheckEmployerAddress country(String country) { this.country = country; return this; } /** * The ISO 3166-1 alpha-2 country code * @return country **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ISO 3166-1 alpha-2 country code") public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public IncomeVerificationPrecheckEmployerAddress postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * The postal code. In API versions 2018-05-22 and earlier, this field is called &#x60;zip&#x60;. * @return postalCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The postal code. In API versions 2018-05-22 and earlier, this field is called `zip`.") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public IncomeVerificationPrecheckEmployerAddress region(String region) { this.region = region; return this; } /** * The region or state. In API versions 2018-05-22 and earlier, this field is called &#x60;state&#x60;. Example: &#x60;\&quot;NC\&quot;&#x60; * @return region **/ @javax.annotation.Nullable @ApiModelProperty(value = "The region or state. In API versions 2018-05-22 and earlier, this field is called `state`. Example: `\"NC\"`") public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public IncomeVerificationPrecheckEmployerAddress street(String street) { this.street = street; return this; } /** * The full street address Example: &#x60;\&quot;564 Main Street, APT 15\&quot;&#x60; * @return street **/ @javax.annotation.Nullable @ApiModelProperty(value = "The full street address Example: `\"564 Main Street, APT 15\"`") public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IncomeVerificationPrecheckEmployerAddress incomeVerificationPrecheckEmployerAddress = (IncomeVerificationPrecheckEmployerAddress) o; return Objects.equals(this.city, incomeVerificationPrecheckEmployerAddress.city) && Objects.equals(this.country, incomeVerificationPrecheckEmployerAddress.country) && Objects.equals(this.postalCode, incomeVerificationPrecheckEmployerAddress.postalCode) && Objects.equals(this.region, incomeVerificationPrecheckEmployerAddress.region) && Objects.equals(this.street, incomeVerificationPrecheckEmployerAddress.street); } @Override public int hashCode() { return Objects.hash(city, country, postalCode, region, street); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IncomeVerificationPrecheckEmployerAddress {\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/BankPenaltiesIndicators.java
src/main/java/com/plaid/client/model/BankPenaltiesIndicators.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.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 bank penalties and fees, including overdraft fees, NSF fees, and other bank-imposed charges. */ @ApiModel(description = "Insights into bank penalties and fees, including overdraft fees, NSF fees, and other bank-imposed charges.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BankPenaltiesIndicators { 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_MONTHLY_AVERAGE = "monthly_average"; @SerializedName(SERIALIZED_NAME_MONTHLY_AVERAGE) private MonthlyAverage monthlyAverage; 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_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 BankPenaltiesIndicators amount(Double amount) { this.amount = amount; return this; } /** * The total value of outflow transactions categorized as &#x60;BANK_PENALTIES&#x60;, across all the accounts in the report within the requested time window. * @return amount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The total value of outflow transactions categorized as `BANK_PENALTIES`, 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 BankPenaltiesIndicators 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 BankPenaltiesIndicators 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 BankPenaltiesIndicators 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 BankPenaltiesIndicators categoryDetails(List<CategoryExpenses> categoryDetails) { this.categoryDetails = categoryDetails; return this; } public BankPenaltiesIndicators 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;BANK_PENALTIES&#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 `BANK_PENALTIES` 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 BankPenaltiesIndicators transactionsCount(Integer transactionsCount) { this.transactionsCount = transactionsCount; return this; } /** * The total number of transactions that fall into the &#x60;BANK_PENALTIES&#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 `BANK_PENALTIES` credit category, across all the accounts in the report.") public Integer getTransactionsCount() { return transactionsCount; } public void setTransactionsCount(Integer transactionsCount) { this.transactionsCount = transactionsCount; } public BankPenaltiesIndicators monthlySummaries(List<MonthlySummary> monthlySummaries) { this.monthlySummaries = monthlySummaries; return this; } public BankPenaltiesIndicators 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;BANK_PENALTIES&#x60; credit 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 `BANK_PENALTIES` credit 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 BankPenaltiesIndicators daysSinceLastOccurrence(Integer daysSinceLastOccurrence) { this.daysSinceLastOccurrence = daysSinceLastOccurrence; return this; } /** * The number of days since the last transaction that falls into the &#x60;BANK_PENALTIES&#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 `BANK_PENALTIES` credit category, across all the accounts in the report.") public Integer getDaysSinceLastOccurrence() { return daysSinceLastOccurrence; } public void setDaysSinceLastOccurrence(Integer daysSinceLastOccurrence) { this.daysSinceLastOccurrence = daysSinceLastOccurrence; } public BankPenaltiesIndicators percentageOfIncome(Double percentageOfIncome) { this.percentageOfIncome = percentageOfIncome; return this; } /** * The percentage of the user&#39;s monthly inflows that was spent on transactions that fall into the &#x60;BANK_PENALTIES&#x60; credit category within the given time window, across all the accounts in the report. For example, a value of 100 represents that 100% of the inflows were spent on transactions that fall into the &#x60;BANK_PENALTIES&#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 spent on transactions that fall into the `BANK_PENALTIES` credit category within the given time window, across all the accounts in the report. For example, a value of 100 represents that 100% of the inflows were spent on transactions that fall into the `BANK_PENALTIES` 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; } BankPenaltiesIndicators bankPenaltiesIndicators = (BankPenaltiesIndicators) o; return Objects.equals(this.amount, bankPenaltiesIndicators.amount) && Objects.equals(this.isoCurrencyCode, bankPenaltiesIndicators.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, bankPenaltiesIndicators.unofficialCurrencyCode) && Objects.equals(this.monthlyAverage, bankPenaltiesIndicators.monthlyAverage) && Objects.equals(this.categoryDetails, bankPenaltiesIndicators.categoryDetails) && Objects.equals(this.transactionsCount, bankPenaltiesIndicators.transactionsCount) && Objects.equals(this.monthlySummaries, bankPenaltiesIndicators.monthlySummaries) && Objects.equals(this.daysSinceLastOccurrence, bankPenaltiesIndicators.daysSinceLastOccurrence) && Objects.equals(this.percentageOfIncome, bankPenaltiesIndicators.percentageOfIncome); } @Override public int hashCode() { return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode, monthlyAverage, categoryDetails, transactionsCount, monthlySummaries, daysSinceLastOccurrence, percentageOfIncome); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BankPenaltiesIndicators {\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(" monthlyAverage: ").append(toIndentedString(monthlyAverage)).append("\n"); sb.append(" categoryDetails: ").append(toIndentedString(categoryDetails)).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/TransferRefundCancelResponse.java
src/main/java/com/plaid/client/model/TransferRefundCancelResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the response schema for &#x60;/transfer/refund/cancel&#x60; */ @ApiModel(description = "Defines the response schema for `/transfer/refund/cancel`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferRefundCancelResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public TransferRefundCancelResponse 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; } TransferRefundCancelResponse transferRefundCancelResponse = (TransferRefundCancelResponse) o; return Objects.equals(this.requestId, transferRefundCancelResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferRefundCancelResponse {\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/IdentityVerificationStepStatus.java
src/main/java/com/plaid/client/model/IdentityVerificationStepStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The status of a step in the Identity Verification process. */ @JsonAdapter(IdentityVerificationStepStatus.Adapter.class) public enum IdentityVerificationStepStatus { SUCCESS("success"), ACTIVE("active"), FAILED("failed"), WAITING_FOR_PREREQUISITE("waiting_for_prerequisite"), NOT_APPLICABLE("not_applicable"), SKIPPED("skipped"), EXPIRED("expired"), CANCELED("canceled"), PENDING_REVIEW("pending_review"), MANUALLY_APPROVED("manually_approved"), MANUALLY_REJECTED("manually_rejected"), // 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; IdentityVerificationStepStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static IdentityVerificationStepStatus fromValue(String value) { for (IdentityVerificationStepStatus b : IdentityVerificationStepStatus.values()) { if (b.value.equals(value)) { return b; } } return IdentityVerificationStepStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<IdentityVerificationStepStatus> { @Override public void write(final JsonWriter jsonWriter, final IdentityVerificationStepStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public IdentityVerificationStepStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return IdentityVerificationStepStatus.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/CraCheckReportFreddieMacVerificationOfAssetsDeal.java
src/main/java/com/plaid/client/model/CraCheckReportFreddieMacVerificationOfAssetsDeal.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CreditFreddieMacLoans; import com.plaid.client.model.CreditFreddieMacParties; import com.plaid.client.model.CreditFreddieMacServices; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object representing a Base Report with Freddie Mac schema. */ @ApiModel(description = "An object representing a Base Report with Freddie Mac schema.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCheckReportFreddieMacVerificationOfAssetsDeal { public static final String SERIALIZED_NAME_L_O_A_N_S = "LOANS"; @SerializedName(SERIALIZED_NAME_L_O_A_N_S) private CreditFreddieMacLoans LOANS; public static final String SERIALIZED_NAME_P_A_R_T_I_E_S = "PARTIES"; @SerializedName(SERIALIZED_NAME_P_A_R_T_I_E_S) private CreditFreddieMacParties PARTIES; public static final String SERIALIZED_NAME_S_E_R_V_I_C_E_S = "SERVICES"; @SerializedName(SERIALIZED_NAME_S_E_R_V_I_C_E_S) private CreditFreddieMacServices SERVICES; public CraCheckReportFreddieMacVerificationOfAssetsDeal LOANS(CreditFreddieMacLoans LOANS) { this.LOANS = LOANS; return this; } /** * Get LOANS * @return LOANS **/ @ApiModelProperty(required = true, value = "") public CreditFreddieMacLoans getLOANS() { return LOANS; } public void setLOANS(CreditFreddieMacLoans LOANS) { this.LOANS = LOANS; } public CraCheckReportFreddieMacVerificationOfAssetsDeal PARTIES(CreditFreddieMacParties PARTIES) { this.PARTIES = PARTIES; return this; } /** * Get PARTIES * @return PARTIES **/ @ApiModelProperty(required = true, value = "") public CreditFreddieMacParties getPARTIES() { return PARTIES; } public void setPARTIES(CreditFreddieMacParties PARTIES) { this.PARTIES = PARTIES; } public CraCheckReportFreddieMacVerificationOfAssetsDeal SERVICES(CreditFreddieMacServices SERVICES) { this.SERVICES = SERVICES; return this; } /** * Get SERVICES * @return SERVICES **/ @ApiModelProperty(required = true, value = "") public CreditFreddieMacServices getSERVICES() { return SERVICES; } public void setSERVICES(CreditFreddieMacServices SERVICES) { this.SERVICES = SERVICES; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraCheckReportFreddieMacVerificationOfAssetsDeal craCheckReportFreddieMacVerificationOfAssetsDeal = (CraCheckReportFreddieMacVerificationOfAssetsDeal) o; return Objects.equals(this.LOANS, craCheckReportFreddieMacVerificationOfAssetsDeal.LOANS) && Objects.equals(this.PARTIES, craCheckReportFreddieMacVerificationOfAssetsDeal.PARTIES) && Objects.equals(this.SERVICES, craCheckReportFreddieMacVerificationOfAssetsDeal.SERVICES); } @Override public int hashCode() { return Objects.hash(LOANS, PARTIES, SERVICES); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportFreddieMacVerificationOfAssetsDeal {\n"); sb.append(" LOANS: ").append(toIndentedString(LOANS)).append("\n"); sb.append(" PARTIES: ").append(toIndentedString(PARTIES)).append("\n"); sb.append(" SERVICES: ").append(toIndentedString(SERVICES)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorDefaultUpdateWebhook.java
src/main/java/com/plaid/client/model/ProcessorDefaultUpdateWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.PlaidError; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.math.BigDecimal; /** * This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when new transaction data is available for an Item. Plaid will typically check for new transaction data several times a day. This webhook is intended for use with &#x60;/processor/transactions/get&#x60;; if you are using the newer &#x60;/processor/transactions/sync&#x60; endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the &#x60;SYNC_UPDATES_AVAILABLE&#x60; webhook instead. */ @ApiModel(description = "This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when new transaction data is available for an Item. Plaid will typically check for new transaction data several times a day. This webhook is intended for use with `/processor/transactions/get`; if you are using the newer `/processor/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead. ") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorDefaultUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private PlaidError error; public static final String SERIALIZED_NAME_NEW_TRANSACTIONS = "new_transactions"; @SerializedName(SERIALIZED_NAME_NEW_TRANSACTIONS) private Double newTransactions; public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public ProcessorDefaultUpdateWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;TRANSACTIONS&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`TRANSACTIONS`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public ProcessorDefaultUpdateWebhook 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 ProcessorDefaultUpdateWebhook 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 ProcessorDefaultUpdateWebhook newTransactions(Double newTransactions) { this.newTransactions = newTransactions; return this; } /** * The number of new transactions detected since the last time this webhook was fired. * @return newTransactions **/ @ApiModelProperty(required = true, value = "The number of new transactions detected since the last time this webhook was fired.") public Double getNewTransactions() { return newTransactions; } public void setNewTransactions(Double newTransactions) { this.newTransactions = newTransactions; } public ProcessorDefaultUpdateWebhook accountId(String accountId) { this.accountId = accountId; return this; } /** * The ID of the account. * @return accountId **/ @ApiModelProperty(required = true, value = "The ID of the account.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public ProcessorDefaultUpdateWebhook 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; } ProcessorDefaultUpdateWebhook processorDefaultUpdateWebhook = (ProcessorDefaultUpdateWebhook) o; return Objects.equals(this.webhookType, processorDefaultUpdateWebhook.webhookType) && Objects.equals(this.webhookCode, processorDefaultUpdateWebhook.webhookCode) && Objects.equals(this.error, processorDefaultUpdateWebhook.error) && Objects.equals(this.newTransactions, processorDefaultUpdateWebhook.newTransactions) && Objects.equals(this.accountId, processorDefaultUpdateWebhook.accountId) && Objects.equals(this.environment, processorDefaultUpdateWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, error, newTransactions, accountId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorDefaultUpdateWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" error: ").append(toIndentedString(error)).append("\n"); sb.append(" newTransactions: ").append(toIndentedString(newTransactions)).append("\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" environment: ").append(toIndentedString(environment)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/StandaloneAccountType.java
src/main/java/com/plaid/client/model/StandaloneAccountType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 schema below describes the various &#x60;types&#x60; and corresponding &#x60;subtypes&#x60; that Plaid recognizes and reports for financial institution accounts. For a mapping of supported types and subtypes to Plaid products, see the [Account type / product support matrix](https://plaid.com/docs/api/accounts/#account-type--product-support-matrix). */ @ApiModel(description = "The schema below describes the various `types` and corresponding `subtypes` that Plaid recognizes and reports for financial institution accounts. For a mapping of supported types and subtypes to Plaid products, see the [Account type / product support matrix](https://plaid.com/docs/api/accounts/#account-type--product-support-matrix).") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class StandaloneAccountType { public static final String SERIALIZED_NAME_DEPOSITORY = "depository"; @SerializedName(SERIALIZED_NAME_DEPOSITORY) private String depository; public static final String SERIALIZED_NAME_CREDIT = "credit"; @SerializedName(SERIALIZED_NAME_CREDIT) private String credit; public static final String SERIALIZED_NAME_LOAN = "loan"; @SerializedName(SERIALIZED_NAME_LOAN) private String loan; public static final String SERIALIZED_NAME_INVESTMENT = "investment"; @SerializedName(SERIALIZED_NAME_INVESTMENT) private String investment; public static final String SERIALIZED_NAME_PAYROLL = "payroll"; @SerializedName(SERIALIZED_NAME_PAYROLL) private String payroll; public static final String SERIALIZED_NAME_OTHER = "other"; @SerializedName(SERIALIZED_NAME_OTHER) private String other; public StandaloneAccountType depository(String depository) { this.depository = depository; return this; } /** * An account type holding cash, in which funds are deposited. * @return depository **/ @ApiModelProperty(required = true, value = "An account type holding cash, in which funds are deposited.") public String getDepository() { return depository; } public void setDepository(String depository) { this.depository = depository; } public StandaloneAccountType credit(String credit) { this.credit = credit; return this; } /** * A credit card type account. * @return credit **/ @ApiModelProperty(required = true, value = "A credit card type account.") public String getCredit() { return credit; } public void setCredit(String credit) { this.credit = credit; } public StandaloneAccountType loan(String loan) { this.loan = loan; return this; } /** * A loan type account. * @return loan **/ @ApiModelProperty(required = true, value = "A loan type account.") public String getLoan() { return loan; } public void setLoan(String loan) { this.loan = loan; } public StandaloneAccountType investment(String investment) { this.investment = investment; return this; } /** * An investment account. In API versions 2018-05-22 and earlier, this type is called &#x60;brokerage&#x60;. * @return investment **/ @ApiModelProperty(required = true, value = "An investment account. In API versions 2018-05-22 and earlier, this type is called `brokerage`.") public String getInvestment() { return investment; } public void setInvestment(String investment) { this.investment = investment; } public StandaloneAccountType payroll(String payroll) { this.payroll = payroll; return this; } /** * A payroll account. * @return payroll **/ @javax.annotation.Nullable @ApiModelProperty(value = "A payroll account.") public String getPayroll() { return payroll; } public void setPayroll(String payroll) { this.payroll = payroll; } public StandaloneAccountType other(String other) { this.other = other; return this; } /** * Other or unknown account type. * @return other **/ @ApiModelProperty(required = true, value = "Other or unknown account type.") public String getOther() { return other; } public void setOther(String other) { this.other = other; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } StandaloneAccountType standaloneAccountType = (StandaloneAccountType) o; return Objects.equals(this.depository, standaloneAccountType.depository) && Objects.equals(this.credit, standaloneAccountType.credit) && Objects.equals(this.loan, standaloneAccountType.loan) && Objects.equals(this.investment, standaloneAccountType.investment) && Objects.equals(this.payroll, standaloneAccountType.payroll) && Objects.equals(this.other, standaloneAccountType.other); } @Override public int hashCode() { return Objects.hash(depository, credit, loan, investment, payroll, other); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class StandaloneAccountType {\n"); sb.append(" depository: ").append(toIndentedString(depository)).append("\n"); sb.append(" credit: ").append(toIndentedString(credit)).append("\n"); sb.append(" loan: ").append(toIndentedString(loan)).append("\n"); sb.append(" investment: ").append(toIndentedString(investment)).append("\n"); sb.append(" payroll: ").append(toIndentedString(payroll)).append("\n"); sb.append(" other: ").append(toIndentedString(other)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/HostedMMDVerificationWebhook.java
src/main/java/com/plaid/client/model/HostedMMDVerificationWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.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; /** * Contains the state of a SMS same-day microdeposits verification session. */ @ApiModel(description = "Contains the state of a SMS same-day microdeposits verification session.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class HostedMMDVerificationWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private String status; public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public HostedMMDVerificationWebhook 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 HostedMMDVerificationWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;SMS_MICRODEPOSITS_VERIFICATION&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`SMS_MICRODEPOSITS_VERIFICATION`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public HostedMMDVerificationWebhook status(String status) { this.status = status; return this; } /** * The final status of the same-day microdeposits verification. Will always be &#x60;MANUALLY_VERIFIED&#x60; or &#x60;VERIFICATION_FAILED&#x60;. * @return status **/ @ApiModelProperty(required = true, value = "The final status of the same-day microdeposits verification. Will always be `MANUALLY_VERIFIED` or `VERIFICATION_FAILED`.") public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public HostedMMDVerificationWebhook 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 HostedMMDVerificationWebhook accountId(String accountId) { this.accountId = accountId; return this; } /** * The external account ID of the affected account * @return accountId **/ @ApiModelProperty(required = true, value = "The external account ID of the affected account") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public HostedMMDVerificationWebhook environment(WebhookEnvironmentValues environment) { this.environment = environment; return this; } /** * Get environment * @return environment **/ @javax.annotation.Nullable @ApiModelProperty(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; } HostedMMDVerificationWebhook hostedMMDVerificationWebhook = (HostedMMDVerificationWebhook) o; return Objects.equals(this.webhookType, hostedMMDVerificationWebhook.webhookType) && Objects.equals(this.webhookCode, hostedMMDVerificationWebhook.webhookCode) && Objects.equals(this.status, hostedMMDVerificationWebhook.status) && Objects.equals(this.itemId, hostedMMDVerificationWebhook.itemId) && Objects.equals(this.accountId, hostedMMDVerificationWebhook.accountId) && Objects.equals(this.environment, hostedMMDVerificationWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, status, itemId, accountId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class HostedMMDVerificationWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" environment: ").append(toIndentedString(environment)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetReportGetRequest.java
src/main/java/com/plaid/client/model/AssetReportGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AssetReportGetRequestOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * AssetReportGetRequest defines the request schema for &#x60;/asset_report/get&#x60; */ @ApiModel(description = "AssetReportGetRequest defines the request schema for `/asset_report/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AssetReportGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_ASSET_REPORT_TOKEN = "asset_report_token"; @SerializedName(SERIALIZED_NAME_ASSET_REPORT_TOKEN) private String assetReportToken; public static final String SERIALIZED_NAME_USER_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) private String userToken; public static final String SERIALIZED_NAME_INCLUDE_INSIGHTS = "include_insights"; @SerializedName(SERIALIZED_NAME_INCLUDE_INSIGHTS) private Boolean includeInsights = false; public static final String SERIALIZED_NAME_FAST_REPORT = "fast_report"; @SerializedName(SERIALIZED_NAME_FAST_REPORT) private Boolean fastReport = false; public static final String SERIALIZED_NAME_OPTIONS = "options"; @SerializedName(SERIALIZED_NAME_OPTIONS) private AssetReportGetRequestOptions options; public AssetReportGetRequest 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 AssetReportGetRequest 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 AssetReportGetRequest assetReportToken(String assetReportToken) { this.assetReportToken = assetReportToken; return this; } /** * A token that can be provided to endpoints such as &#x60;/asset_report/get&#x60; or &#x60;/asset_report/pdf/get&#x60; to fetch or update an Asset Report. * @return assetReportToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "A token that can be provided to endpoints such as `/asset_report/get` or `/asset_report/pdf/get` to fetch or update an Asset Report.") public String getAssetReportToken() { return assetReportToken; } public void setAssetReportToken(String assetReportToken) { this.assetReportToken = assetReportToken; } public AssetReportGetRequest userToken(String userToken) { this.userToken = userToken; return this; } /** * The user token associated with the User for which to create an asset report for. The latest asset report associated with the User will be returned * @return userToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user token associated with the User for which to create an asset report for. The latest asset report associated with the User will be returned") public String getUserToken() { return userToken; } public void setUserToken(String userToken) { this.userToken = userToken; } public AssetReportGetRequest includeInsights(Boolean includeInsights) { this.includeInsights = includeInsights; return this; } /** * &#x60;true&#x60; if you would like to retrieve the Asset Report with Insights, &#x60;false&#x60; otherwise. This field defaults to &#x60;false&#x60; if omitted. * @return includeInsights **/ @javax.annotation.Nullable @ApiModelProperty(value = "`true` if you would like to retrieve the Asset Report with Insights, `false` otherwise. This field defaults to `false` if omitted.") public Boolean getIncludeInsights() { return includeInsights; } public void setIncludeInsights(Boolean includeInsights) { this.includeInsights = includeInsights; } public AssetReportGetRequest fastReport(Boolean fastReport) { this.fastReport = fastReport; return this; } /** * &#x60;true&#x60; to fetch \&quot;fast\&quot; version of asset report. Defaults to false if omitted. Can only be used if &#x60;/asset_report/create&#x60; was called with &#x60;options.add_ons&#x60; set to &#x60;[\&quot;fast_assets\&quot;]&#x60;. * @return fastReport **/ @javax.annotation.Nullable @ApiModelProperty(value = "`true` to fetch \"fast\" version of asset report. Defaults to false if omitted. Can only be used if `/asset_report/create` was called with `options.add_ons` set to `[\"fast_assets\"]`.") public Boolean getFastReport() { return fastReport; } public void setFastReport(Boolean fastReport) { this.fastReport = fastReport; } public AssetReportGetRequest options(AssetReportGetRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AssetReportGetRequestOptions getOptions() { return options; } public void setOptions(AssetReportGetRequestOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AssetReportGetRequest assetReportGetRequest = (AssetReportGetRequest) o; return Objects.equals(this.clientId, assetReportGetRequest.clientId) && Objects.equals(this.secret, assetReportGetRequest.secret) && Objects.equals(this.assetReportToken, assetReportGetRequest.assetReportToken) && Objects.equals(this.userToken, assetReportGetRequest.userToken) && Objects.equals(this.includeInsights, assetReportGetRequest.includeInsights) && Objects.equals(this.fastReport, assetReportGetRequest.fastReport) && Objects.equals(this.options, assetReportGetRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, secret, assetReportToken, userToken, includeInsights, fastReport, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetReportGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" assetReportToken: ").append(toIndentedString(assetReportToken)).append("\n"); sb.append(" userToken: ").append(toIndentedString(userToken)).append("\n"); sb.append(" includeInsights: ").append(toIndentedString(includeInsights)).append("\n"); sb.append(" fastReport: ").append(toIndentedString(fastReport)).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/LinkSessionCraItemAddResult.java
src/main/java/com/plaid/client/model/LinkSessionCraItemAddResult.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.LinkSessionSuccessMetadataAccount; import com.plaid.client.model.LinkSessionSuccessMetadataInstitution; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * The details of a Plaid Check Item add in Link. */ @ApiModel(description = "The details of a Plaid Check Item add in Link.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkSessionCraItemAddResult { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) private List<LinkSessionSuccessMetadataAccount> accounts = new ArrayList<>(); public static final String SERIALIZED_NAME_INSTITUTION = "institution"; @SerializedName(SERIALIZED_NAME_INSTITUTION) private LinkSessionSuccessMetadataInstitution institution; public LinkSessionCraItemAddResult itemId(String itemId) { this.itemId = itemId; return this; } /** * The Plaid Check Item ID. The &#x60;item_id&#x60; is always unique; linking the same account at the same institution twice will result in two Items with different &#x60;item_id&#x60; values. The &#x60;item_id&#x60; is case-sensitive. * @return itemId **/ @ApiModelProperty(required = true, value = "The Plaid Check Item ID. The `item_id` is always unique; linking the same account at the same institution twice will result in two Items with different `item_id` values. The `item_id` is case-sensitive.") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public LinkSessionCraItemAddResult accounts(List<LinkSessionSuccessMetadataAccount> accounts) { this.accounts = accounts; return this; } public LinkSessionCraItemAddResult addAccountsItem(LinkSessionSuccessMetadataAccount accountsItem) { this.accounts.add(accountsItem); return this; } /** * A list of accounts attached to the connected Item. If Account Select is enabled via the developer dashboard, &#x60;accounts&#x60; will only include selected accounts. * @return accounts **/ @ApiModelProperty(required = true, value = "A list of accounts attached to the connected Item. If Account Select is enabled via the developer dashboard, `accounts` will only include selected accounts.") public List<LinkSessionSuccessMetadataAccount> getAccounts() { return accounts; } public void setAccounts(List<LinkSessionSuccessMetadataAccount> accounts) { this.accounts = accounts; } public LinkSessionCraItemAddResult institution(LinkSessionSuccessMetadataInstitution institution) { this.institution = institution; return this; } /** * Get institution * @return institution **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public LinkSessionSuccessMetadataInstitution getInstitution() { return institution; } public void setInstitution(LinkSessionSuccessMetadataInstitution institution) { this.institution = institution; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkSessionCraItemAddResult linkSessionCraItemAddResult = (LinkSessionCraItemAddResult) o; return Objects.equals(this.itemId, linkSessionCraItemAddResult.itemId) && Objects.equals(this.accounts, linkSessionCraItemAddResult.accounts) && Objects.equals(this.institution, linkSessionCraItemAddResult.institution); } @Override public int hashCode() { return Objects.hash(itemId, accounts, institution); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkSessionCraItemAddResult {\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" accounts: ").append(toIndentedString(accounts)).append("\n"); sb.append(" institution: ").append(toIndentedString(institution)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ExpenditureSummary.java
src/main/java/com/plaid/client/model/ExpenditureSummary.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.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 io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Summary statistics for a specific expenditure category, including total amount, monthly average, and percentage of income. */ @ApiModel(description = "Summary statistics for a specific expenditure category, including total amount, monthly average, and percentage of income.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ExpenditureSummary { 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_MONTHLY_AVERAGE = "monthly_average"; @SerializedName(SERIALIZED_NAME_MONTHLY_AVERAGE) private MonthlyAverage monthlyAverage; public static final String SERIALIZED_NAME_TRANSACTIONS_COUNT = "transactions_count"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS_COUNT) private Integer transactionsCount; public static final String SERIALIZED_NAME_PERCENTAGE_OF_INCOME = "percentage_of_income"; @SerializedName(SERIALIZED_NAME_PERCENTAGE_OF_INCOME) private Double percentageOfIncome; public static final String SERIALIZED_NAME_TOP_CATEGORIES = "top_categories"; @SerializedName(SERIALIZED_NAME_TOP_CATEGORIES) private List<CategoryExpenses> topCategories = null; public ExpenditureSummary amount(Double amount) { this.amount = amount; return this; } /** * The total value of all the aggregated transactions in this expenditure category. * @return amount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The total value of all the aggregated transactions in this expenditure category.") public Double getAmount() { return amount; } public void setAmount(Double amount) { this.amount = amount; } public ExpenditureSummary 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 ExpenditureSummary 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 ExpenditureSummary 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 ExpenditureSummary transactionsCount(Integer transactionsCount) { this.transactionsCount = transactionsCount; return this; } /** * The total number of outflow transactions in this expenses group, within the given time window across all the accounts in the report. * @return transactionsCount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The total number of outflow transactions in this expenses group, within the given time window across all the accounts in the report.") public Integer getTransactionsCount() { return transactionsCount; } public void setTransactionsCount(Integer transactionsCount) { this.transactionsCount = transactionsCount; } public ExpenditureSummary percentageOfIncome(Double percentageOfIncome) { this.percentageOfIncome = percentageOfIncome; return this; } /** * The percentage of the total inflows that was spent in this expenses group, within the given time window across all the accounts in the report. For example, a value of 100 represents that 100% of the inflows were spent on transactions that fall into this expenditure group. If there&#39;s no available income for the giving time period, this field value will be &#x60;-1&#x60;. * @return percentageOfIncome **/ @javax.annotation.Nullable @ApiModelProperty(value = "The percentage of the total inflows that was spent in this expenses group, within the given time window across all the accounts in the report. For example, a value of 100 represents that 100% of the inflows were spent on transactions that fall into this expenditure group. If there's no available income for the giving time period, this field value will be `-1`.") public Double getPercentageOfIncome() { return percentageOfIncome; } public void setPercentageOfIncome(Double percentageOfIncome) { this.percentageOfIncome = percentageOfIncome; } public ExpenditureSummary topCategories(List<CategoryExpenses> topCategories) { this.topCategories = topCategories; return this; } public ExpenditureSummary addTopCategoriesItem(CategoryExpenses topCategoriesItem) { if (this.topCategories == null) { this.topCategories = new ArrayList<>(); } this.topCategories.add(topCategoriesItem); return this; } /** * The primary credit categories of the expenses within the given time window, across all the accounts in the report. The categories are sorted in descending order by the total value spent. See the [category taxonomy](https://plaid.com/documents/credit-category-taxonomy.csv) for a full listing of category IDs. * @return topCategories **/ @javax.annotation.Nullable @ApiModelProperty(value = "The primary credit categories of the expenses within the given time window, across all the accounts in the report. The categories are sorted in descending order by the total value spent. See the [category taxonomy](https://plaid.com/documents/credit-category-taxonomy.csv) for a full listing of category IDs.") public List<CategoryExpenses> getTopCategories() { return topCategories; } public void setTopCategories(List<CategoryExpenses> topCategories) { this.topCategories = topCategories; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ExpenditureSummary expenditureSummary = (ExpenditureSummary) o; return Objects.equals(this.amount, expenditureSummary.amount) && Objects.equals(this.isoCurrencyCode, expenditureSummary.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, expenditureSummary.unofficialCurrencyCode) && Objects.equals(this.monthlyAverage, expenditureSummary.monthlyAverage) && Objects.equals(this.transactionsCount, expenditureSummary.transactionsCount) && Objects.equals(this.percentageOfIncome, expenditureSummary.percentageOfIncome) && Objects.equals(this.topCategories, expenditureSummary.topCategories); } @Override public int hashCode() { return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode, monthlyAverage, transactionsCount, percentageOfIncome, topCategories); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ExpenditureSummary {\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(" monthlyAverage: ").append(toIndentedString(monthlyAverage)).append("\n"); sb.append(" transactionsCount: ").append(toIndentedString(transactionsCount)).append("\n"); sb.append(" percentageOfIncome: ").append(toIndentedString(percentageOfIncome)).append("\n"); sb.append(" topCategories: ").append(toIndentedString(topCategories)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkDeliveryOptions.java
src/main/java/com/plaid/client/model/LinkDeliveryOptions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.LinkDeliveryRecipient; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Optional metadata related to the Hosted Link session */ @ApiModel(description = "Optional metadata related to the Hosted Link session") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkDeliveryOptions { public static final String SERIALIZED_NAME_RECIPIENT = "recipient"; @SerializedName(SERIALIZED_NAME_RECIPIENT) private LinkDeliveryRecipient recipient; public LinkDeliveryOptions recipient(LinkDeliveryRecipient recipient) { this.recipient = recipient; return this; } /** * Get recipient * @return recipient **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public LinkDeliveryRecipient getRecipient() { return recipient; } public void setRecipient(LinkDeliveryRecipient recipient) { this.recipient = recipient; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkDeliveryOptions linkDeliveryOptions = (LinkDeliveryOptions) o; return Objects.equals(this.recipient, linkDeliveryOptions.recipient); } @Override public int hashCode() { return Objects.hash(recipient); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkDeliveryOptions {\n"); sb.append(" recipient: ").append(toIndentedString(recipient)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditBankIncomeAccountType.java
src/main/java/com/plaid/client/model/CreditBankIncomeAccountType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 account type. This will always be &#x60;depository&#x60;. */ @JsonAdapter(CreditBankIncomeAccountType.Adapter.class) public enum CreditBankIncomeAccountType { DEPOSITORY("depository"), // 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; CreditBankIncomeAccountType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static CreditBankIncomeAccountType fromValue(String value) { for (CreditBankIncomeAccountType b : CreditBankIncomeAccountType.values()) { if (b.value.equals(value)) { return b; } } return CreditBankIncomeAccountType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<CreditBankIncomeAccountType> { @Override public void write(final JsonWriter jsonWriter, final CreditBankIncomeAccountType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public CreditBankIncomeAccountType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return CreditBankIncomeAccountType.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/PlatformIds.java
src/main/java/com/plaid/client/model/PlatformIds.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 containing a set of ids related to an employee */ @ApiModel(description = "An object containing a set of ids related to an employee") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PlatformIds { public static final String SERIALIZED_NAME_EMPLOYEE_ID = "employee_id"; @SerializedName(SERIALIZED_NAME_EMPLOYEE_ID) private String employeeId; public static final String SERIALIZED_NAME_PAYROLL_ID = "payroll_id"; @SerializedName(SERIALIZED_NAME_PAYROLL_ID) private String payrollId; public static final String SERIALIZED_NAME_POSITION_ID = "position_id"; @SerializedName(SERIALIZED_NAME_POSITION_ID) private String positionId; public PlatformIds employeeId(String employeeId) { this.employeeId = employeeId; return this; } /** * The ID of an employee as given by their employer * @return employeeId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ID of an employee as given by their employer") public String getEmployeeId() { return employeeId; } public void setEmployeeId(String employeeId) { this.employeeId = employeeId; } public PlatformIds payrollId(String payrollId) { this.payrollId = payrollId; return this; } /** * The ID of an employee as given by their payroll * @return payrollId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ID of an employee as given by their payroll") public String getPayrollId() { return payrollId; } public void setPayrollId(String payrollId) { this.payrollId = payrollId; } public PlatformIds positionId(String positionId) { this.positionId = positionId; return this; } /** * The ID of the position of the employee * @return positionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ID of the position of the employee") public String getPositionId() { return positionId; } public void setPositionId(String positionId) { this.positionId = positionId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PlatformIds platformIds = (PlatformIds) o; return Objects.equals(this.employeeId, platformIds.employeeId) && Objects.equals(this.payrollId, platformIds.payrollId) && Objects.equals(this.positionId, platformIds.positionId); } @Override public int hashCode() { return Objects.hash(employeeId, payrollId, positionId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PlatformIds {\n"); sb.append(" employeeId: ").append(toIndentedString(employeeId)).append("\n"); sb.append(" payrollId: ").append(toIndentedString(payrollId)).append("\n"); sb.append(" positionId: ").append(toIndentedString(positionId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/NumbersInternationalNullable.java
src/main/java/com/plaid/client/model/NumbersInternationalNullable.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.NumbersInternational; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Identifying information for transferring money to or from an international bank account via wire transfer. */ @ApiModel(description = "Identifying information for transferring money to or from an international bank account via wire transfer.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class NumbersInternationalNullable { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_IBAN = "iban"; @SerializedName(SERIALIZED_NAME_IBAN) private String iban; public static final String SERIALIZED_NAME_BIC = "bic"; @SerializedName(SERIALIZED_NAME_BIC) private String bic; public NumbersInternationalNullable accountId(String accountId) { this.accountId = accountId; return this; } /** * The Plaid account ID associated with the account numbers * @return accountId **/ @ApiModelProperty(required = true, value = "The Plaid account ID associated with the account numbers") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public NumbersInternationalNullable iban(String iban) { this.iban = iban; return this; } /** * The International Bank Account Number (IBAN) for the account * @return iban **/ @ApiModelProperty(required = true, value = "The International Bank Account Number (IBAN) for the account") public String getIban() { return iban; } public void setIban(String iban) { this.iban = iban; } public NumbersInternationalNullable bic(String bic) { this.bic = bic; return this; } /** * The Bank Identifier Code (BIC) for the account * @return bic **/ @ApiModelProperty(required = true, value = "The Bank Identifier Code (BIC) for the account") public String getBic() { return bic; } public void setBic(String bic) { this.bic = bic; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } NumbersInternationalNullable numbersInternationalNullable = (NumbersInternationalNullable) o; return Objects.equals(this.accountId, numbersInternationalNullable.accountId) && Objects.equals(this.iban, numbersInternationalNullable.iban) && Objects.equals(this.bic, numbersInternationalNullable.bic); } @Override public int hashCode() { return Objects.hash(accountId, iban, bic); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class NumbersInternationalNullable {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" iban: ").append(toIndentedString(iban)).append("\n"); sb.append(" bic: ").append(toIndentedString(bic)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransactionsRulesListRequest.java
src/main/java/com/plaid/client/model/TransactionsRulesListRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * TransactionsRulesListRequest defines the request schema for &#x60;/beta/transactions/rules/v1/list&#x60; */ @ApiModel(description = "TransactionsRulesListRequest defines the request schema for `/beta/transactions/rules/v1/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionsRulesListRequest { 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 TransactionsRulesListRequest 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 TransactionsRulesListRequest 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 TransactionsRulesListRequest 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; } TransactionsRulesListRequest transactionsRulesListRequest = (TransactionsRulesListRequest) o; return Objects.equals(this.clientId, transactionsRulesListRequest.clientId) && Objects.equals(this.accessToken, transactionsRulesListRequest.accessToken) && Objects.equals(this.secret, transactionsRulesListRequest.secret); } @Override public int hashCode() { return Objects.hash(clientId, accessToken, secret); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsRulesListRequest {\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
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditSessionsGetRequest.java
src/main/java/com/plaid/client/model/CreditSessionsGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * CreditSessionsGetRequest defines the request schema for &#x60;/credit/sessions/get&#x60; */ @ApiModel(description = "CreditSessionsGetRequest defines the request schema for `/credit/sessions/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditSessionsGetRequest { 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 CreditSessionsGetRequest 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 CreditSessionsGetRequest 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 CreditSessionsGetRequest 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; } CreditSessionsGetRequest creditSessionsGetRequest = (CreditSessionsGetRequest) o; return Objects.equals(this.clientId, creditSessionsGetRequest.clientId) && Objects.equals(this.secret, creditSessionsGetRequest.secret) && Objects.equals(this.userToken, creditSessionsGetRequest.userToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, userToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditSessionsGetRequest {\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/AddressMatchScore.java
src/main/java/com/plaid/client/model/AddressMatchScore.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 address provided by the API with the address on the account at the financial institution. The score can range from 0 to 100 where 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 address provided by the API with the address on the account at the financial institution. The score can range from 0 to 100 where 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 AddressMatchScore { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) private Integer score; public static final String SERIALIZED_NAME_IS_POSTAL_CODE_MATCH = "is_postal_code_match"; @SerializedName(SERIALIZED_NAME_IS_POSTAL_CODE_MATCH) private Boolean isPostalCodeMatch; public AddressMatchScore score(Integer score) { this.score = score; return this; } /** * Match score for address. 100 is a perfect match, 99-90 is a strong match, 89-70 is a partial match, anything below 70 is considered a weak match. Typically, the match threshold should be set to a score of 70 or higher. If the address is missing from either the API or financial institution, this is null. * @return score **/ @javax.annotation.Nullable @ApiModelProperty(value = "Match score for address. 100 is a perfect match, 99-90 is a strong match, 89-70 is a partial match, anything below 70 is considered a weak match. Typically, the match threshold should be set to a score of 70 or higher. If the address 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; } public AddressMatchScore isPostalCodeMatch(Boolean isPostalCodeMatch) { this.isPostalCodeMatch = isPostalCodeMatch; return this; } /** * postal code was provided for both and was a match * @return isPostalCodeMatch **/ @javax.annotation.Nullable @ApiModelProperty(value = "postal code was provided for both and was a match") public Boolean getIsPostalCodeMatch() { return isPostalCodeMatch; } public void setIsPostalCodeMatch(Boolean isPostalCodeMatch) { this.isPostalCodeMatch = isPostalCodeMatch; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AddressMatchScore addressMatchScore = (AddressMatchScore) o; return Objects.equals(this.score, addressMatchScore.score) && Objects.equals(this.isPostalCodeMatch, addressMatchScore.isPostalCodeMatch); } @Override public int hashCode() { return Objects.hash(score, isPostalCodeMatch); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AddressMatchScore {\n"); sb.append(" score: ").append(toIndentedString(score)).append("\n"); sb.append(" isPostalCodeMatch: ").append(toIndentedString(isPostalCodeMatch)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BeaconReportSyndicationListResponse.java
src/main/java/com/plaid/client/model/BeaconReportSyndicationListResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.BeaconReportSyndication; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * The response schema for &#x60;/beacon/report_syndication/list&#x60; */ @ApiModel(description = "The response schema for `/beacon/report_syndication/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconReportSyndicationListResponse { public static final String SERIALIZED_NAME_BEACON_REPORT_SYNDICATIONS = "beacon_report_syndications"; @SerializedName(SERIALIZED_NAME_BEACON_REPORT_SYNDICATIONS) private List<BeaconReportSyndication> beaconReportSyndications = 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 BeaconReportSyndicationListResponse beaconReportSyndications(List<BeaconReportSyndication> beaconReportSyndications) { this.beaconReportSyndications = beaconReportSyndications; return this; } public BeaconReportSyndicationListResponse addBeaconReportSyndicationsItem(BeaconReportSyndication beaconReportSyndicationsItem) { this.beaconReportSyndications.add(beaconReportSyndicationsItem); return this; } /** * Get beaconReportSyndications * @return beaconReportSyndications **/ @ApiModelProperty(required = true, value = "") public List<BeaconReportSyndication> getBeaconReportSyndications() { return beaconReportSyndications; } public void setBeaconReportSyndications(List<BeaconReportSyndication> beaconReportSyndications) { this.beaconReportSyndications = beaconReportSyndications; } public BeaconReportSyndicationListResponse 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 BeaconReportSyndicationListResponse 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; } BeaconReportSyndicationListResponse beaconReportSyndicationListResponse = (BeaconReportSyndicationListResponse) o; return Objects.equals(this.beaconReportSyndications, beaconReportSyndicationListResponse.beaconReportSyndications) && Objects.equals(this.nextCursor, beaconReportSyndicationListResponse.nextCursor) && Objects.equals(this.requestId, beaconReportSyndicationListResponse.requestId); } @Override public int hashCode() { return Objects.hash(beaconReportSyndications, nextCursor, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconReportSyndicationListResponse {\n"); sb.append(" beaconReportSyndications: ").append(toIndentedString(beaconReportSyndications)).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