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/CreditBankIncome.java
src/main/java/com/plaid/client/model/CreditBankIncome.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CreditBankIncomeItem; import com.plaid.client.model.CreditBankIncomeSummary; import com.plaid.client.model.CreditBankIncomeWarning; 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 report of the Bank Income data for an end user. */ @ApiModel(description = "The report of the Bank Income data for an end user.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditBankIncome { public static final String SERIALIZED_NAME_BANK_INCOME_ID = "bank_income_id"; @SerializedName(SERIALIZED_NAME_BANK_INCOME_ID) private String bankIncomeId; public static final String SERIALIZED_NAME_GENERATED_TIME = "generated_time"; @SerializedName(SERIALIZED_NAME_GENERATED_TIME) private OffsetDateTime generatedTime; public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) private Integer daysRequested; public static final String SERIALIZED_NAME_ITEMS = "items"; @SerializedName(SERIALIZED_NAME_ITEMS) private List<CreditBankIncomeItem> items = null; public static final String SERIALIZED_NAME_BANK_INCOME_SUMMARY = "bank_income_summary"; @SerializedName(SERIALIZED_NAME_BANK_INCOME_SUMMARY) private CreditBankIncomeSummary bankIncomeSummary; public static final String SERIALIZED_NAME_WARNINGS = "warnings"; @SerializedName(SERIALIZED_NAME_WARNINGS) private List<CreditBankIncomeWarning> warnings = null; public CreditBankIncome bankIncomeId(String bankIncomeId) { this.bankIncomeId = bankIncomeId; return this; } /** * The unique identifier associated with the Bank Income Report. * @return bankIncomeId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The unique identifier associated with the Bank Income Report.") public String getBankIncomeId() { return bankIncomeId; } public void setBankIncomeId(String bankIncomeId) { this.bankIncomeId = bankIncomeId; } public CreditBankIncome generatedTime(OffsetDateTime generatedTime) { this.generatedTime = generatedTime; return this; } /** * The time when the report was generated. * @return generatedTime **/ @javax.annotation.Nullable @ApiModelProperty(value = "The time when the report was generated.") public OffsetDateTime getGeneratedTime() { return generatedTime; } public void setGeneratedTime(OffsetDateTime generatedTime) { this.generatedTime = generatedTime; } public CreditBankIncome daysRequested(Integer daysRequested) { this.daysRequested = daysRequested; return this; } /** * The number of days requested by the customer for the report. * @return daysRequested **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of days requested by the customer for the report.") public Integer getDaysRequested() { return daysRequested; } public void setDaysRequested(Integer daysRequested) { this.daysRequested = daysRequested; } public CreditBankIncome items(List<CreditBankIncomeItem> items) { this.items = items; return this; } public CreditBankIncome addItemsItem(CreditBankIncomeItem itemsItem) { if (this.items == null) { this.items = new ArrayList<>(); } this.items.add(itemsItem); return this; } /** * The list of Items in the report along with the associated metadata about the Item. * @return items **/ @javax.annotation.Nullable @ApiModelProperty(value = "The list of Items in the report along with the associated metadata about the Item.") public List<CreditBankIncomeItem> getItems() { return items; } public void setItems(List<CreditBankIncomeItem> items) { this.items = items; } public CreditBankIncome bankIncomeSummary(CreditBankIncomeSummary bankIncomeSummary) { this.bankIncomeSummary = bankIncomeSummary; return this; } /** * Get bankIncomeSummary * @return bankIncomeSummary **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CreditBankIncomeSummary getBankIncomeSummary() { return bankIncomeSummary; } public void setBankIncomeSummary(CreditBankIncomeSummary bankIncomeSummary) { this.bankIncomeSummary = bankIncomeSummary; } public CreditBankIncome warnings(List<CreditBankIncomeWarning> warnings) { this.warnings = warnings; return this; } public CreditBankIncome addWarningsItem(CreditBankIncomeWarning warningsItem) { if (this.warnings == null) { this.warnings = new ArrayList<>(); } this.warnings.add(warningsItem); return this; } /** * If data from the report was unable to be retrieved, the warnings will contain information about the error that caused the data to be incomplete. * @return warnings **/ @javax.annotation.Nullable @ApiModelProperty(value = "If data from the report was unable to be retrieved, the warnings will contain information about the error that caused the data to be incomplete.") public List<CreditBankIncomeWarning> getWarnings() { return warnings; } public void setWarnings(List<CreditBankIncomeWarning> warnings) { this.warnings = warnings; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditBankIncome creditBankIncome = (CreditBankIncome) o; return Objects.equals(this.bankIncomeId, creditBankIncome.bankIncomeId) && Objects.equals(this.generatedTime, creditBankIncome.generatedTime) && Objects.equals(this.daysRequested, creditBankIncome.daysRequested) && Objects.equals(this.items, creditBankIncome.items) && Objects.equals(this.bankIncomeSummary, creditBankIncome.bankIncomeSummary) && Objects.equals(this.warnings, creditBankIncome.warnings); } @Override public int hashCode() { return Objects.hash(bankIncomeId, generatedTime, daysRequested, items, bankIncomeSummary, warnings); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditBankIncome {\n"); sb.append(" bankIncomeId: ").append(toIndentedString(bankIncomeId)).append("\n"); sb.append(" generatedTime: ").append(toIndentedString(generatedTime)).append("\n"); sb.append(" daysRequested: ").append(toIndentedString(daysRequested)).append("\n"); sb.append(" items: ").append(toIndentedString(items)).append("\n"); sb.append(" bankIncomeSummary: ").append(toIndentedString(bankIncomeSummary)).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/BeaconReportCreatedWebhook.java
src/main/java/com/plaid/client/model/BeaconReportCreatedWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 one of your Beacon Users is first reported to the Beacon network. */ @ApiModel(description = "Fired when one of your Beacon Users is first reported to the Beacon network.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconReportCreatedWebhook { 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_BEACON_REPORT_ID = "beacon_report_id"; @SerializedName(SERIALIZED_NAME_BEACON_REPORT_ID) private String beaconReportId; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public BeaconReportCreatedWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;BEACON&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`BEACON`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public BeaconReportCreatedWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;REPORT_CREATED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`REPORT_CREATED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public BeaconReportCreatedWebhook beaconReportId(String beaconReportId) { this.beaconReportId = beaconReportId; return this; } /** * The ID of the associated Beacon Report. * @return beaconReportId **/ @ApiModelProperty(required = true, value = "The ID of the associated Beacon Report.") public String getBeaconReportId() { return beaconReportId; } public void setBeaconReportId(String beaconReportId) { this.beaconReportId = beaconReportId; } public BeaconReportCreatedWebhook 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; } BeaconReportCreatedWebhook beaconReportCreatedWebhook = (BeaconReportCreatedWebhook) o; return Objects.equals(this.webhookType, beaconReportCreatedWebhook.webhookType) && Objects.equals(this.webhookCode, beaconReportCreatedWebhook.webhookCode) && Objects.equals(this.beaconReportId, beaconReportCreatedWebhook.beaconReportId) && Objects.equals(this.environment, beaconReportCreatedWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, beaconReportId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconReportCreatedWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" beaconReportId: ").append(toIndentedString(beaconReportId)).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/CreditBankStatementUploadBankAccount.java
src/main/java/com/plaid/client/model/CreditBankStatementUploadBankAccount.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CreditBankStatementUploadAccountOwner; import com.plaid.client.model.CreditBankStatementUploadBankAccountPeriod; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * An object containing data about a user&#39;s bank account related to an uploaded bank statement. */ @ApiModel(description = "An object containing data about a user's bank account related to an uploaded bank statement.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditBankStatementUploadBankAccount { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_BANK_NAME = "bank_name"; @SerializedName(SERIALIZED_NAME_BANK_NAME) private String bankName; public static final String SERIALIZED_NAME_ACCOUNT_TYPE = "account_type"; @SerializedName(SERIALIZED_NAME_ACCOUNT_TYPE) private String accountType; public static final String SERIALIZED_NAME_ACCOUNT_NUMBER = "account_number"; @SerializedName(SERIALIZED_NAME_ACCOUNT_NUMBER) private String accountNumber; public static final String SERIALIZED_NAME_OWNER = "owner"; @SerializedName(SERIALIZED_NAME_OWNER) private CreditBankStatementUploadAccountOwner owner; public static final String SERIALIZED_NAME_PERIODS = "periods"; @SerializedName(SERIALIZED_NAME_PERIODS) private List<CreditBankStatementUploadBankAccountPeriod> periods = new ArrayList<>(); public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public CreditBankStatementUploadBankAccount name(String name) { this.name = name; return this; } /** * The name of the bank account * @return name **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The name of the bank account") public String getName() { return name; } public void setName(String name) { this.name = name; } public CreditBankStatementUploadBankAccount bankName(String bankName) { this.bankName = bankName; return this; } /** * The name of the bank institution. * @return bankName **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The name of the bank institution.") public String getBankName() { return bankName; } public void setBankName(String bankName) { this.bankName = bankName; } public CreditBankStatementUploadBankAccount accountType(String accountType) { this.accountType = accountType; return this; } /** * The type of the bank account. * @return accountType **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The type of the bank account.") public String getAccountType() { return accountType; } public void setAccountType(String accountType) { this.accountType = accountType; } public CreditBankStatementUploadBankAccount accountNumber(String accountNumber) { this.accountNumber = accountNumber; return this; } /** * The bank account number. * @return accountNumber **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The bank account number.") public String getAccountNumber() { return accountNumber; } public void setAccountNumber(String accountNumber) { this.accountNumber = accountNumber; } public CreditBankStatementUploadBankAccount owner(CreditBankStatementUploadAccountOwner owner) { this.owner = owner; return this; } /** * Get owner * @return owner **/ @ApiModelProperty(required = true, value = "") public CreditBankStatementUploadAccountOwner getOwner() { return owner; } public void setOwner(CreditBankStatementUploadAccountOwner owner) { this.owner = owner; } public CreditBankStatementUploadBankAccount periods(List<CreditBankStatementUploadBankAccountPeriod> periods) { this.periods = periods; return this; } public CreditBankStatementUploadBankAccount addPeriodsItem(CreditBankStatementUploadBankAccountPeriod periodsItem) { this.periods.add(periodsItem); return this; } /** * An array of period objects, containing more data on the overall period of the statement. * @return periods **/ @ApiModelProperty(required = true, value = "An array of period objects, containing more data on the overall period of the statement.") public List<CreditBankStatementUploadBankAccountPeriod> getPeriods() { return periods; } public void setPeriods(List<CreditBankStatementUploadBankAccountPeriod> periods) { this.periods = periods; } public CreditBankStatementUploadBankAccount accountId(String accountId) { this.accountId = accountId; return this; } /** * The unique id of the bank account * @return accountId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The unique id of the bank account") 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; } CreditBankStatementUploadBankAccount creditBankStatementUploadBankAccount = (CreditBankStatementUploadBankAccount) o; return Objects.equals(this.name, creditBankStatementUploadBankAccount.name) && Objects.equals(this.bankName, creditBankStatementUploadBankAccount.bankName) && Objects.equals(this.accountType, creditBankStatementUploadBankAccount.accountType) && Objects.equals(this.accountNumber, creditBankStatementUploadBankAccount.accountNumber) && Objects.equals(this.owner, creditBankStatementUploadBankAccount.owner) && Objects.equals(this.periods, creditBankStatementUploadBankAccount.periods) && Objects.equals(this.accountId, creditBankStatementUploadBankAccount.accountId); } @Override public int hashCode() { return Objects.hash(name, bankName, accountType, accountNumber, owner, periods, accountId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditBankStatementUploadBankAccount {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" bankName: ").append(toIndentedString(bankName)).append("\n"); sb.append(" accountType: ").append(toIndentedString(accountType)).append("\n"); sb.append(" accountNumber: ").append(toIndentedString(accountNumber)).append("\n"); sb.append(" owner: ").append(toIndentedString(owner)).append("\n"); sb.append(" periods: ").append(toIndentedString(periods)).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/TransferMetricsGetReturnRates.java
src/main/java/com/plaid/client/model/TransferMetricsGetReturnRates.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.TransferMetricsGetReturnRatesOverInterval; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Details regarding return rates. */ @ApiModel(description = "Details regarding return rates.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferMetricsGetReturnRates { public static final String SERIALIZED_NAME_LAST60D = "last_60d"; @SerializedName(SERIALIZED_NAME_LAST60D) private TransferMetricsGetReturnRatesOverInterval last60d; public TransferMetricsGetReturnRates last60d(TransferMetricsGetReturnRatesOverInterval last60d) { this.last60d = last60d; return this; } /** * Get last60d * @return last60d **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransferMetricsGetReturnRatesOverInterval getLast60d() { return last60d; } public void setLast60d(TransferMetricsGetReturnRatesOverInterval last60d) { this.last60d = last60d; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferMetricsGetReturnRates transferMetricsGetReturnRates = (TransferMetricsGetReturnRates) o; return Objects.equals(this.last60d, transferMetricsGetReturnRates.last60d); } @Override public int hashCode() { return Objects.hash(last60d); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferMetricsGetReturnRates {\n"); sb.append(" last60d: ").append(toIndentedString(last60d)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditRelayRemoveRequest.java
src/main/java/com/plaid/client/model/CreditRelayRemoveRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * CreditRelayRemoveRequest defines the request schema for &#x60;/credit/relay/remove&#x60; */ @ApiModel(description = "CreditRelayRemoveRequest defines the request schema for `/credit/relay/remove`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditRelayRemoveRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_RELAY_TOKEN = "relay_token"; @SerializedName(SERIALIZED_NAME_RELAY_TOKEN) private String relayToken; public CreditRelayRemoveRequest 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 CreditRelayRemoveRequest 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 CreditRelayRemoveRequest relayToken(String relayToken) { this.relayToken = relayToken; return this; } /** * The &#x60;relay_token&#x60; you would like to revoke. * @return relayToken **/ @ApiModelProperty(required = true, value = "The `relay_token` you would like to revoke.") public String getRelayToken() { return relayToken; } public void setRelayToken(String relayToken) { this.relayToken = relayToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditRelayRemoveRequest creditRelayRemoveRequest = (CreditRelayRemoveRequest) o; return Objects.equals(this.clientId, creditRelayRemoveRequest.clientId) && Objects.equals(this.secret, creditRelayRemoveRequest.secret) && Objects.equals(this.relayToken, creditRelayRemoveRequest.relayToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, relayToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditRelayRemoveRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" relayToken: ").append(toIndentedString(relayToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ItemStatusNullable.java
src/main/java/com/plaid/client/model/ItemStatusNullable.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.ItemStatus; import com.plaid.client.model.ItemStatusInvestments; import com.plaid.client.model.ItemStatusLastWebhook; import com.plaid.client.model.ItemStatusTransactions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Information about the last successful and failed transactions update for the Item. */ @ApiModel(description = "Information about the last successful and failed transactions update for the Item.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ItemStatusNullable { public static final String SERIALIZED_NAME_INVESTMENTS = "investments"; @SerializedName(SERIALIZED_NAME_INVESTMENTS) private ItemStatusInvestments investments; public static final String SERIALIZED_NAME_TRANSACTIONS = "transactions"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS) private ItemStatusTransactions transactions; public static final String SERIALIZED_NAME_LAST_WEBHOOK = "last_webhook"; @SerializedName(SERIALIZED_NAME_LAST_WEBHOOK) private ItemStatusLastWebhook lastWebhook; public ItemStatusNullable investments(ItemStatusInvestments investments) { this.investments = investments; return this; } /** * Get investments * @return investments **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ItemStatusInvestments getInvestments() { return investments; } public void setInvestments(ItemStatusInvestments investments) { this.investments = investments; } public ItemStatusNullable transactions(ItemStatusTransactions transactions) { this.transactions = transactions; return this; } /** * Get transactions * @return transactions **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ItemStatusTransactions getTransactions() { return transactions; } public void setTransactions(ItemStatusTransactions transactions) { this.transactions = transactions; } public ItemStatusNullable lastWebhook(ItemStatusLastWebhook lastWebhook) { this.lastWebhook = lastWebhook; return this; } /** * Get lastWebhook * @return lastWebhook **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ItemStatusLastWebhook getLastWebhook() { return lastWebhook; } public void setLastWebhook(ItemStatusLastWebhook lastWebhook) { this.lastWebhook = lastWebhook; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ItemStatusNullable itemStatusNullable = (ItemStatusNullable) o; return Objects.equals(this.investments, itemStatusNullable.investments) && Objects.equals(this.transactions, itemStatusNullable.transactions) && Objects.equals(this.lastWebhook, itemStatusNullable.lastWebhook); } @Override public int hashCode() { return Objects.hash(investments, transactions, lastWebhook); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ItemStatusNullable {\n"); sb.append(" investments: ").append(toIndentedString(investments)).append("\n"); sb.append(" transactions: ").append(toIndentedString(transactions)).append("\n"); sb.append(" lastWebhook: ").append(toIndentedString(lastWebhook)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/NetworkStatusGetResponseLayer.java
src/main/java/com/plaid/client/model/NetworkStatusGetResponseLayer.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 Layer-related metadata for the requested user. */ @ApiModel(description = "An object representing Layer-related metadata for the requested user.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class NetworkStatusGetResponseLayer { public static final String SERIALIZED_NAME_ELIGIBLE = "eligible"; @SerializedName(SERIALIZED_NAME_ELIGIBLE) private Boolean eligible; public NetworkStatusGetResponseLayer eligible(Boolean eligible) { this.eligible = eligible; return this; } /** * Indicates if the user is eligible for a Layer session. * @return eligible **/ @ApiModelProperty(required = true, value = "Indicates if the user is eligible for a Layer session.") public Boolean getEligible() { return eligible; } public void setEligible(Boolean eligible) { this.eligible = eligible; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } NetworkStatusGetResponseLayer networkStatusGetResponseLayer = (NetworkStatusGetResponseLayer) o; return Objects.equals(this.eligible, networkStatusGetResponseLayer.eligible); } @Override public int hashCode() { return Objects.hash(eligible); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class NetworkStatusGetResponseLayer {\n"); sb.append(" eligible: ").append(toIndentedString(eligible)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WatchlistScreeningEntityListRequest.java
src/main/java/com/plaid/client/model/WatchlistScreeningEntityListRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.WatchlistScreeningStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Request input for listing entity watchlist screenings */ @ApiModel(description = "Request input for listing entity watchlist screenings") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WatchlistScreeningEntityListRequest { public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_ENTITY_WATCHLIST_PROGRAM_ID = "entity_watchlist_program_id"; @SerializedName(SERIALIZED_NAME_ENTITY_WATCHLIST_PROGRAM_ID) private String entityWatchlistProgramId; public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id"; @SerializedName(SERIALIZED_NAME_CLIENT_USER_ID) private String clientUserId; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private WatchlistScreeningStatus status; public static final String SERIALIZED_NAME_ASSIGNEE = "assignee"; @SerializedName(SERIALIZED_NAME_ASSIGNEE) private String assignee; public static final String SERIALIZED_NAME_CURSOR = "cursor"; @SerializedName(SERIALIZED_NAME_CURSOR) private String cursor; public WatchlistScreeningEntityListRequest 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 WatchlistScreeningEntityListRequest 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 WatchlistScreeningEntityListRequest entityWatchlistProgramId(String entityWatchlistProgramId) { this.entityWatchlistProgramId = entityWatchlistProgramId; return this; } /** * ID of the associated entity program. * @return entityWatchlistProgramId **/ @ApiModelProperty(example = "entprg_2eRPsDnL66rZ7H", required = true, value = "ID of the associated entity program.") public String getEntityWatchlistProgramId() { return entityWatchlistProgramId; } public void setEntityWatchlistProgramId(String entityWatchlistProgramId) { this.entityWatchlistProgramId = entityWatchlistProgramId; } public WatchlistScreeningEntityListRequest clientUserId(String clientUserId) { this.clientUserId = clientUserId; return this; } /** * A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the &#x60;/link/token/create&#x60; &#x60;client_user_id&#x60; to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the &#x60;client_user_id&#x60;. * @return clientUserId **/ @javax.annotation.Nullable @ApiModelProperty(example = "your-db-id-3b24110", value = "A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the `/link/token/create` `client_user_id` to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the `client_user_id`.") public String getClientUserId() { return clientUserId; } public void setClientUserId(String clientUserId) { this.clientUserId = clientUserId; } public WatchlistScreeningEntityListRequest status(WatchlistScreeningStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public WatchlistScreeningStatus getStatus() { return status; } public void setStatus(WatchlistScreeningStatus status) { this.status = status; } public WatchlistScreeningEntityListRequest assignee(String assignee) { this.assignee = assignee; return this; } /** * ID of the associated user. To retrieve the email address or other details of the person corresponding to this id, use &#x60;/dashboard_user/get&#x60;. * @return assignee **/ @javax.annotation.Nullable @ApiModelProperty(example = "54350110fedcbaf01234ffee", value = "ID of the associated user. To retrieve the email address or other details of the person corresponding to this id, use `/dashboard_user/get`.") public String getAssignee() { return assignee; } public void setAssignee(String assignee) { this.assignee = assignee; } public WatchlistScreeningEntityListRequest cursor(String cursor) { this.cursor = cursor; return this; } /** * An identifier that determines which page of results you receive. * @return cursor **/ @javax.annotation.Nullable @ApiModelProperty(example = "eyJkaXJlY3Rpb24iOiJuZXh0Iiwib2Zmc2V0IjoiMTU5NDM", value = "An identifier that determines which page of results you receive.") public String getCursor() { return cursor; } public void setCursor(String cursor) { this.cursor = cursor; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } WatchlistScreeningEntityListRequest watchlistScreeningEntityListRequest = (WatchlistScreeningEntityListRequest) o; return Objects.equals(this.secret, watchlistScreeningEntityListRequest.secret) && Objects.equals(this.clientId, watchlistScreeningEntityListRequest.clientId) && Objects.equals(this.entityWatchlistProgramId, watchlistScreeningEntityListRequest.entityWatchlistProgramId) && Objects.equals(this.clientUserId, watchlistScreeningEntityListRequest.clientUserId) && Objects.equals(this.status, watchlistScreeningEntityListRequest.status) && Objects.equals(this.assignee, watchlistScreeningEntityListRequest.assignee) && Objects.equals(this.cursor, watchlistScreeningEntityListRequest.cursor); } @Override public int hashCode() { return Objects.hash(secret, clientId, entityWatchlistProgramId, clientUserId, status, assignee, cursor); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WatchlistScreeningEntityListRequest {\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" entityWatchlistProgramId: ").append(toIndentedString(entityWatchlistProgramId)).append("\n"); sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" assignee: ").append(toIndentedString(assignee)).append("\n"); sb.append(" cursor: ").append(toIndentedString(cursor)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferType.java
src/main/java/com/plaid/client/model/TransferType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The type of transfer. This will be either &#x60;debit&#x60; or &#x60;credit&#x60;. A &#x60;debit&#x60; indicates a transfer of money into the origination account; a &#x60;credit&#x60; indicates a transfer of money out of the origination account. */ @JsonAdapter(TransferType.Adapter.class) public enum TransferType { DEBIT("debit"), CREDIT("credit"), // 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; TransferType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransferType fromValue(String value) { for (TransferType b : TransferType.values()) { if (b.value.equals(value)) { return b; } } return TransferType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<TransferType> { @Override public void write(final JsonWriter jsonWriter, final TransferType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransferType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransferType.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/RiskIndicators.java
src/main/java/com/plaid/client/model/RiskIndicators.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.BankPenaltiesIndicators; import com.plaid.client.model.GamblingIndicators; import com.plaid.client.model.LoanDisbursementsIndicators; import com.plaid.client.model.LoanPaymentsIndicators; import com.plaid.client.model.NegativeBalanceInsights; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Risk indicators focus on providing signal on the possibility of a borrower defaulting on their loan repayments by providing data points related to its payment behavior, debt, and other relevant financial information, helping lenders gauge the level of risk involved in a certain operation. */ @ApiModel(description = "Risk indicators focus on providing signal on the possibility of a borrower defaulting on their loan repayments by providing data points related to its payment behavior, debt, and other relevant financial information, helping lenders gauge the level of risk involved in a certain operation.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class RiskIndicators { public static final String SERIALIZED_NAME_BANK_PENALTIES = "bank_penalties"; @SerializedName(SERIALIZED_NAME_BANK_PENALTIES) private BankPenaltiesIndicators bankPenalties; public static final String SERIALIZED_NAME_GAMBLING = "gambling"; @SerializedName(SERIALIZED_NAME_GAMBLING) private GamblingIndicators gambling; public static final String SERIALIZED_NAME_LOAN_DISBURSEMENTS = "loan_disbursements"; @SerializedName(SERIALIZED_NAME_LOAN_DISBURSEMENTS) private LoanDisbursementsIndicators loanDisbursements; public static final String SERIALIZED_NAME_LOAN_PAYMENTS = "loan_payments"; @SerializedName(SERIALIZED_NAME_LOAN_PAYMENTS) private LoanPaymentsIndicators loanPayments; public static final String SERIALIZED_NAME_NEGATIVE_BALANCE = "negative_balance"; @SerializedName(SERIALIZED_NAME_NEGATIVE_BALANCE) private NegativeBalanceInsights negativeBalance; public RiskIndicators bankPenalties(BankPenaltiesIndicators bankPenalties) { this.bankPenalties = bankPenalties; return this; } /** * Get bankPenalties * @return bankPenalties **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public BankPenaltiesIndicators getBankPenalties() { return bankPenalties; } public void setBankPenalties(BankPenaltiesIndicators bankPenalties) { this.bankPenalties = bankPenalties; } public RiskIndicators gambling(GamblingIndicators gambling) { this.gambling = gambling; return this; } /** * Get gambling * @return gambling **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public GamblingIndicators getGambling() { return gambling; } public void setGambling(GamblingIndicators gambling) { this.gambling = gambling; } public RiskIndicators loanDisbursements(LoanDisbursementsIndicators loanDisbursements) { this.loanDisbursements = loanDisbursements; return this; } /** * Get loanDisbursements * @return loanDisbursements **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public LoanDisbursementsIndicators getLoanDisbursements() { return loanDisbursements; } public void setLoanDisbursements(LoanDisbursementsIndicators loanDisbursements) { this.loanDisbursements = loanDisbursements; } public RiskIndicators loanPayments(LoanPaymentsIndicators loanPayments) { this.loanPayments = loanPayments; return this; } /** * Get loanPayments * @return loanPayments **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public LoanPaymentsIndicators getLoanPayments() { return loanPayments; } public void setLoanPayments(LoanPaymentsIndicators loanPayments) { this.loanPayments = loanPayments; } public RiskIndicators negativeBalance(NegativeBalanceInsights negativeBalance) { this.negativeBalance = negativeBalance; return this; } /** * Get negativeBalance * @return negativeBalance **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public NegativeBalanceInsights getNegativeBalance() { return negativeBalance; } public void setNegativeBalance(NegativeBalanceInsights negativeBalance) { this.negativeBalance = negativeBalance; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } RiskIndicators riskIndicators = (RiskIndicators) o; return Objects.equals(this.bankPenalties, riskIndicators.bankPenalties) && Objects.equals(this.gambling, riskIndicators.gambling) && Objects.equals(this.loanDisbursements, riskIndicators.loanDisbursements) && Objects.equals(this.loanPayments, riskIndicators.loanPayments) && Objects.equals(this.negativeBalance, riskIndicators.negativeBalance); } @Override public int hashCode() { return Objects.hash(bankPenalties, gambling, loanDisbursements, loanPayments, negativeBalance); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class RiskIndicators {\n"); sb.append(" bankPenalties: ").append(toIndentedString(bankPenalties)).append("\n"); sb.append(" gambling: ").append(toIndentedString(gambling)).append("\n"); sb.append(" loanDisbursements: ").append(toIndentedString(loanDisbursements)).append("\n"); sb.append(" loanPayments: ").append(toIndentedString(loanPayments)).append("\n"); sb.append(" negativeBalance: ").append(toIndentedString(negativeBalance)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkTokenCreateRequestIdentityVerification.java
src/main/java/com/plaid/client/model/LinkTokenCreateRequestIdentityVerification.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 option for initializing Link for use with the Identity Verification product. */ @ApiModel(description = "Specifies option for initializing Link for use with the Identity Verification product.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkTokenCreateRequestIdentityVerification { public static final String SERIALIZED_NAME_TEMPLATE_ID = "template_id"; @SerializedName(SERIALIZED_NAME_TEMPLATE_ID) private String templateId; public static final String SERIALIZED_NAME_CONSENT = "consent"; @SerializedName(SERIALIZED_NAME_CONSENT) private Boolean consent; public static final String SERIALIZED_NAME_GAVE_CONSENT = "gave_consent"; @SerializedName(SERIALIZED_NAME_GAVE_CONSENT) private Boolean gaveConsent = false; public LinkTokenCreateRequestIdentityVerification templateId(String templateId) { this.templateId = templateId; return this; } /** * Get templateId * @return templateId **/ @ApiModelProperty(required = true, value = "") public String getTemplateId() { return templateId; } public void setTemplateId(String templateId) { this.templateId = templateId; } public LinkTokenCreateRequestIdentityVerification consent(Boolean consent) { this.consent = consent; return this; } /** * Get consent * @return consent **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public Boolean getConsent() { return consent; } public void setConsent(Boolean consent) { this.consent = consent; } public LinkTokenCreateRequestIdentityVerification gaveConsent(Boolean gaveConsent) { this.gaveConsent = gaveConsent; return this; } /** * A flag specifying whether the end user has already agreed to a privacy policy specifying that their data will be shared with Plaid for verification purposes. If &#x60;gave_consent&#x60; is set to &#x60;true&#x60;, the &#x60;accept_tos&#x60; step will be marked as &#x60;skipped&#x60; and the end user&#39;s session will start at the next step requirement. * @return gaveConsent **/ @javax.annotation.Nullable @ApiModelProperty(example = "true", value = "A flag specifying whether the end user has already agreed to a privacy policy specifying that their data will be shared with Plaid for verification purposes. If `gave_consent` is set to `true`, the `accept_tos` step will be marked as `skipped` and the end user's session will start at the next step requirement.") public Boolean getGaveConsent() { return gaveConsent; } public void setGaveConsent(Boolean gaveConsent) { this.gaveConsent = gaveConsent; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkTokenCreateRequestIdentityVerification linkTokenCreateRequestIdentityVerification = (LinkTokenCreateRequestIdentityVerification) o; return Objects.equals(this.templateId, linkTokenCreateRequestIdentityVerification.templateId) && Objects.equals(this.consent, linkTokenCreateRequestIdentityVerification.consent) && Objects.equals(this.gaveConsent, linkTokenCreateRequestIdentityVerification.gaveConsent); } @Override public int hashCode() { return Objects.hash(templateId, consent, gaveConsent); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkTokenCreateRequestIdentityVerification {\n"); sb.append(" templateId: ").append(toIndentedString(templateId)).append("\n"); sb.append(" consent: ").append(toIndentedString(consent)).append("\n"); sb.append(" gaveConsent: ").append(toIndentedString(gaveConsent)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/DocumentDateOfBirthMatchCode.java
src/main/java/com/plaid/client/model/DocumentDateOfBirthMatchCode.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * A match summary describing the cross comparison between the subject&#39;s date of birth, extracted from the document image, and the date of birth they separately provided to the identity verification attempt. */ @JsonAdapter(DocumentDateOfBirthMatchCode.Adapter.class) public enum DocumentDateOfBirthMatchCode { MATCH("match"), PARTIAL_MATCH("partial_match"), NO_MATCH("no_match"), NO_DATA("no_data"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; DocumentDateOfBirthMatchCode(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static DocumentDateOfBirthMatchCode fromValue(String value) { for (DocumentDateOfBirthMatchCode b : DocumentDateOfBirthMatchCode.values()) { if (b.value.equals(value)) { return b; } } return DocumentDateOfBirthMatchCode.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<DocumentDateOfBirthMatchCode> { @Override public void write(final JsonWriter jsonWriter, final DocumentDateOfBirthMatchCode enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public DocumentDateOfBirthMatchCode read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return DocumentDateOfBirthMatchCode.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/RecurringCancelledWebhook.java
src/main/java/com/plaid/client/model/RecurringCancelledWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Fired when a recurring transfer is cancelled by Plaid. */ @ApiModel(description = "Fired when a recurring transfer is cancelled by Plaid.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class RecurringCancelledWebhook { 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_RECURRING_TRANSFER_ID = "recurring_transfer_id"; @SerializedName(SERIALIZED_NAME_RECURRING_TRANSFER_ID) private String recurringTransferId; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public RecurringCancelledWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;TRANSFER&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`TRANSFER`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public RecurringCancelledWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;RECURRING_CANCELLED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`RECURRING_CANCELLED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public RecurringCancelledWebhook recurringTransferId(String recurringTransferId) { this.recurringTransferId = recurringTransferId; return this; } /** * Plaid’s unique identifier for a recurring transfer. * @return recurringTransferId **/ @ApiModelProperty(required = true, value = "Plaid’s unique identifier for a recurring transfer.") public String getRecurringTransferId() { return recurringTransferId; } public void setRecurringTransferId(String recurringTransferId) { this.recurringTransferId = recurringTransferId; } public RecurringCancelledWebhook 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; } RecurringCancelledWebhook recurringCancelledWebhook = (RecurringCancelledWebhook) o; return Objects.equals(this.webhookType, recurringCancelledWebhook.webhookType) && Objects.equals(this.webhookCode, recurringCancelledWebhook.webhookCode) && Objects.equals(this.recurringTransferId, recurringCancelledWebhook.recurringTransferId) && Objects.equals(this.environment, recurringCancelledWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, recurringTransferId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class RecurringCancelledWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" recurringTransferId: ").append(toIndentedString(recurringTransferId)).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/ProcessorSignalPrepareRequest.java
src/main/java/com/plaid/client/model/ProcessorSignalPrepareRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * ProcessorSignalPrepareRequest defines the request schema for &#x60;/processor/signal/prepare&#x60; */ @ApiModel(description = "ProcessorSignalPrepareRequest defines the request schema for `/processor/signal/prepare`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorSignalPrepareRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_PROCESSOR_TOKEN = "processor_token"; @SerializedName(SERIALIZED_NAME_PROCESSOR_TOKEN) private String processorToken; public ProcessorSignalPrepareRequest 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 ProcessorSignalPrepareRequest 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 ProcessorSignalPrepareRequest processorToken(String processorToken) { this.processorToken = processorToken; return this; } /** * The processor token obtained from the Plaid integration partner. Processor tokens are in the format: &#x60;processor-&lt;environment&gt;-&lt;identifier&gt;&#x60; * @return processorToken **/ @ApiModelProperty(required = true, value = "The processor token obtained from the Plaid integration partner. Processor tokens are in the format: `processor-<environment>-<identifier>`") public String getProcessorToken() { return processorToken; } public void setProcessorToken(String processorToken) { this.processorToken = processorToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProcessorSignalPrepareRequest processorSignalPrepareRequest = (ProcessorSignalPrepareRequest) o; return Objects.equals(this.clientId, processorSignalPrepareRequest.clientId) && Objects.equals(this.secret, processorSignalPrepareRequest.secret) && Objects.equals(this.processorToken, processorSignalPrepareRequest.processorToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, processorToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorSignalPrepareRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" processorToken: ").append(toIndentedString(processorToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditSessionError.java
src/main/java/com/plaid/client/model/CreditSessionError.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 Link error. */ @ApiModel(description = "The details of a Link error.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditSessionError { public static final String SERIALIZED_NAME_ERROR_TYPE = "error_type"; @SerializedName(SERIALIZED_NAME_ERROR_TYPE) private String errorType; public static final String SERIALIZED_NAME_ERROR_CODE = "error_code"; @SerializedName(SERIALIZED_NAME_ERROR_CODE) private String errorCode; public static final String SERIALIZED_NAME_ERROR_MESSAGE = "error_message"; @SerializedName(SERIALIZED_NAME_ERROR_MESSAGE) private String errorMessage; public static final String SERIALIZED_NAME_DISPLAY_MESSAGE = "display_message"; @SerializedName(SERIALIZED_NAME_DISPLAY_MESSAGE) private String displayMessage; public CreditSessionError errorType(String errorType) { this.errorType = errorType; return this; } /** * A broad categorization of the error. * @return errorType **/ @javax.annotation.Nullable @ApiModelProperty(value = "A broad categorization of the error.") public String getErrorType() { return errorType; } public void setErrorType(String errorType) { this.errorType = errorType; } public CreditSessionError errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * The particular error code. * @return errorCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The particular error code.") public String getErrorCode() { return errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public CreditSessionError errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * A developer-friendly representation of the error code. * @return errorMessage **/ @javax.annotation.Nullable @ApiModelProperty(value = "A developer-friendly representation of the error code.") public String getErrorMessage() { return errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public CreditSessionError displayMessage(String displayMessage) { this.displayMessage = displayMessage; return this; } /** * A user-friendly representation of the error code. &#x60;null&#x60; if the error is not related to user action. * @return displayMessage **/ @javax.annotation.Nullable @ApiModelProperty(value = "A user-friendly representation of the error code. `null` if the error is not related to user action.") public String getDisplayMessage() { return displayMessage; } public void setDisplayMessage(String displayMessage) { this.displayMessage = displayMessage; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditSessionError creditSessionError = (CreditSessionError) o; return Objects.equals(this.errorType, creditSessionError.errorType) && Objects.equals(this.errorCode, creditSessionError.errorCode) && Objects.equals(this.errorMessage, creditSessionError.errorMessage) && Objects.equals(this.displayMessage, creditSessionError.displayMessage); } @Override public int hashCode() { return Objects.hash(errorType, errorCode, errorMessage, displayMessage); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditSessionError {\n"); sb.append(" errorType: ").append(toIndentedString(errorType)).append("\n"); sb.append(" errorCode: ").append(toIndentedString(errorCode)).append("\n"); sb.append(" errorMessage: ").append(toIndentedString(errorMessage)).append("\n"); sb.append(" displayMessage: ").append(toIndentedString(displayMessage)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PhoneType.java
src/main/java/com/plaid/client/model/PhoneType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * An enum indicating whether a phone number is a phone line or a fax line. */ @JsonAdapter(PhoneType.Adapter.class) public enum PhoneType { PHONE("phone"), FAX("fax"), // 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; PhoneType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PhoneType fromValue(String value) { for (PhoneType b : PhoneType.values()) { if (b.value.equals(value)) { return b; } } return PhoneType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<PhoneType> { @Override public void write(final JsonWriter jsonWriter, final PhoneType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PhoneType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PhoneType.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/TransactionsEnhanceGetRequest.java
src/main/java/com/plaid/client/model/TransactionsEnhanceGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.ClientProvidedRawTransaction; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * TransactionsEnhanceGetRequest defines the request schema for &#x60;/transactions/enhance&#x60;. */ @ApiModel(description = "TransactionsEnhanceGetRequest defines the request schema for `/transactions/enhance`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionsEnhanceGetRequest { 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_ACCOUNT_TYPE = "account_type"; @SerializedName(SERIALIZED_NAME_ACCOUNT_TYPE) private String accountType; public static final String SERIALIZED_NAME_TRANSACTIONS = "transactions"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS) private List<ClientProvidedRawTransaction> transactions = new ArrayList<>(); public TransactionsEnhanceGetRequest 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 TransactionsEnhanceGetRequest 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 TransactionsEnhanceGetRequest accountType(String accountType) { this.accountType = accountType; return this; } /** * The type of account for the requested transactions (&#x60;depository&#x60; or &#x60;credit&#x60;). * @return accountType **/ @ApiModelProperty(required = true, value = "The type of account for the requested transactions (`depository` or `credit`).") public String getAccountType() { return accountType; } public void setAccountType(String accountType) { this.accountType = accountType; } public TransactionsEnhanceGetRequest transactions(List<ClientProvidedRawTransaction> transactions) { this.transactions = transactions; return this; } public TransactionsEnhanceGetRequest addTransactionsItem(ClientProvidedRawTransaction transactionsItem) { this.transactions.add(transactionsItem); return this; } /** * An array of raw transactions to be enhanced. * @return transactions **/ @ApiModelProperty(required = true, value = "An array of raw transactions to be enhanced.") public List<ClientProvidedRawTransaction> getTransactions() { return transactions; } public void setTransactions(List<ClientProvidedRawTransaction> transactions) { this.transactions = transactions; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransactionsEnhanceGetRequest transactionsEnhanceGetRequest = (TransactionsEnhanceGetRequest) o; return Objects.equals(this.clientId, transactionsEnhanceGetRequest.clientId) && Objects.equals(this.secret, transactionsEnhanceGetRequest.secret) && Objects.equals(this.accountType, transactionsEnhanceGetRequest.accountType) && Objects.equals(this.transactions, transactionsEnhanceGetRequest.transactions); } @Override public int hashCode() { return Objects.hash(clientId, secret, accountType, transactions); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsEnhanceGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" accountType: ").append(toIndentedString(accountType)).append("\n"); sb.append(" transactions: ").append(toIndentedString(transactions)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PartnerCustomerEnableResponse.java
src/main/java/com/plaid/client/model/PartnerCustomerEnableResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 schema for &#x60;/partner/customer/enable&#x60;. */ @ApiModel(description = "Response schema for `/partner/customer/enable`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PartnerCustomerEnableResponse { public static final String SERIALIZED_NAME_PRODUCTION_SECRET = "production_secret"; @SerializedName(SERIALIZED_NAME_PRODUCTION_SECRET) private String productionSecret; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public PartnerCustomerEnableResponse productionSecret(String productionSecret) { this.productionSecret = productionSecret; return this; } /** * The end customer&#39;s secret key for the Production environment. * @return productionSecret **/ @javax.annotation.Nullable @ApiModelProperty(value = "The end customer's secret key for the Production environment.") public String getProductionSecret() { return productionSecret; } public void setProductionSecret(String productionSecret) { this.productionSecret = productionSecret; } public PartnerCustomerEnableResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PartnerCustomerEnableResponse partnerCustomerEnableResponse = (PartnerCustomerEnableResponse) o; return Objects.equals(this.productionSecret, partnerCustomerEnableResponse.productionSecret) && Objects.equals(this.requestId, partnerCustomerEnableResponse.requestId); } @Override public int hashCode() { return Objects.hash(productionSecret, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PartnerCustomerEnableResponse {\n"); sb.append(" productionSecret: ").append(toIndentedString(productionSecret)).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/RiskCheckEmailDomainIsDisposable.java
src/main/java/com/plaid/client/model/RiskCheckEmailDomainIsDisposable.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * Indicates whether the email domain is listed as disposable if known. Disposable domains are often used to create email addresses that are part of a fake set of user details. */ @JsonAdapter(RiskCheckEmailDomainIsDisposable.Adapter.class) public enum RiskCheckEmailDomainIsDisposable { YES("yes"), NO("no"), NO_DATA("no_data"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; RiskCheckEmailDomainIsDisposable(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static RiskCheckEmailDomainIsDisposable fromValue(String value) { for (RiskCheckEmailDomainIsDisposable b : RiskCheckEmailDomainIsDisposable.values()) { if (b.value.equals(value)) { return b; } } return RiskCheckEmailDomainIsDisposable.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<RiskCheckEmailDomainIsDisposable> { @Override public void write(final JsonWriter jsonWriter, final RiskCheckEmailDomainIsDisposable enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public RiskCheckEmailDomainIsDisposable read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return RiskCheckEmailDomainIsDisposable.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/DashboardUserListRequest.java
src/main/java/com/plaid/client/model/DashboardUserListRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Request input for listing dashboard users */ @ApiModel(description = "Request input for listing dashboard users") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class DashboardUserListRequest { public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_CURSOR = "cursor"; @SerializedName(SERIALIZED_NAME_CURSOR) private String cursor; public DashboardUserListRequest 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 DashboardUserListRequest 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 DashboardUserListRequest cursor(String cursor) { this.cursor = cursor; return this; } /** * An identifier that determines which page of results you receive. * @return cursor **/ @javax.annotation.Nullable @ApiModelProperty(example = "eyJkaXJlY3Rpb24iOiJuZXh0Iiwib2Zmc2V0IjoiMTU5NDM", value = "An identifier that determines which page of results you receive.") public String getCursor() { return cursor; } public void setCursor(String cursor) { this.cursor = cursor; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } DashboardUserListRequest dashboardUserListRequest = (DashboardUserListRequest) o; return Objects.equals(this.secret, dashboardUserListRequest.secret) && Objects.equals(this.clientId, dashboardUserListRequest.clientId) && Objects.equals(this.cursor, dashboardUserListRequest.cursor); } @Override public int hashCode() { return Objects.hash(secret, clientId, cursor); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class DashboardUserListRequest {\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" cursor: ").append(toIndentedString(cursor)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditBankIncomeCategory.java
src/main/java/com/plaid/client/model/CreditBankIncomeCategory.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The income category. &#x60;BANK_INTEREST&#x60;: Interest earned from a bank account. &#x60;BENEFIT_OTHER&#x60;: Government benefits other than retirement, unemployment, child support, or disability. Currently used only in the UK, to represent benefits such as Cost of Living Payments. &#x60;CASH&#x60;: Deprecated and used only for existing legacy implementations. Has been replaced by &#x60;CASH_DEPOSIT&#x60; and &#x60;TRANSFER_FROM_APPLICATION&#x60;. &#x60;CASH_DEPOSIT&#x60;: A cash or check deposit. &#x60;CHILD_SUPPORT&#x60;: Child support payments received. &#x60;GIG_ECONOMY&#x60;: Income earned as a gig economy worker, e.g. driving for Uber, Lyft, Postmates, DoorDash, etc. &#x60;LONG_TERM_DISABILITY&#x60;: Disability payments, including Social Security disability benefits. &#x60;OTHER&#x60;: Income that could not be categorized as any other income category. &#x60;MILITARY&#x60;: Veterans benefits. Income earned as salary for serving in the military (e.g. through DFAS) will be classified as &#x60;SALARY&#x60; rather than &#x60;MILITARY&#x60;. &#x60;RENTAL&#x60;: Income earned from a rental property. Income may be identified as rental when the payment is received through a rental platform, e.g. Airbnb; rent paid directly by the tenant to the property owner (e.g. via cash, check, or ACH) will typically not be classified as rental income. &#x60;RETIREMENT&#x60;: Payments from private retirement systems, pensions, and government retirement programs, including Social Security retirement benefits. &#x60;SALARY&#x60;: Payment from an employer to an earner or other form of permanent employment. &#x60;TAX_REFUND&#x60;: A tax refund. &#x60;TRANSFER_FROM_APPLICATION&#x60;: Deposits from a money transfer app, such as Venmo, Cash App, or Zelle. &#x60;UNEMPLOYMENT&#x60;: Unemployment benefits. In the UK, includes certain low-income benefits such as the Universal Credit. */ @JsonAdapter(CreditBankIncomeCategory.Adapter.class) public enum CreditBankIncomeCategory { SALARY("SALARY"), UNEMPLOYMENT("UNEMPLOYMENT"), CASH("CASH"), GIG_ECONOMY("GIG_ECONOMY"), RENTAL("RENTAL"), CHILD_SUPPORT("CHILD_SUPPORT"), MILITARY("MILITARY"), RETIREMENT("RETIREMENT"), LONG_TERM_DISABILITY("LONG_TERM_DISABILITY"), BANK_INTEREST("BANK_INTEREST"), CASH_DEPOSIT("CASH_DEPOSIT"), TRANSFER_FROM_APPLICATION("TRANSFER_FROM_APPLICATION"), TAX_REFUND("TAX_REFUND"), BENEFIT_OTHER("BENEFIT_OTHER"), OTHER("OTHER"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; CreditBankIncomeCategory(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static CreditBankIncomeCategory fromValue(String value) { for (CreditBankIncomeCategory b : CreditBankIncomeCategory.values()) { if (b.value.equals(value)) { return b; } } return CreditBankIncomeCategory.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<CreditBankIncomeCategory> { @Override public void write(final JsonWriter jsonWriter, final CreditBankIncomeCategory enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public CreditBankIncomeCategory read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return CreditBankIncomeCategory.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/BetaEwaReportV1GetResponse.java
src/main/java/com/plaid/client/model/BetaEwaReportV1GetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.EwaScore; 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; /** * BetaEwaReportV1GetResponse defines the response schema for &#x60;/beta/ewa_report/v1/get&#x60; */ @ApiModel(description = "BetaEwaReportV1GetResponse defines the response schema for `/beta/ewa_report/v1/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BetaEwaReportV1GetResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public static final String SERIALIZED_NAME_EWA_REPORT_ID = "ewa_report_id"; @SerializedName(SERIALIZED_NAME_EWA_REPORT_ID) private String ewaReportId; public static final String SERIALIZED_NAME_GENERATION_TIME = "generation_time"; @SerializedName(SERIALIZED_NAME_GENERATION_TIME) private OffsetDateTime generationTime; public static final String SERIALIZED_NAME_EWA_SCORES = "ewa_scores"; @SerializedName(SERIALIZED_NAME_EWA_SCORES) private List<EwaScore> ewaScores = null; public BetaEwaReportV1GetResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public BetaEwaReportV1GetResponse ewaReportId(String ewaReportId) { this.ewaReportId = ewaReportId; return this; } /** * Unique identifier for the generated EWA score group. * @return ewaReportId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Unique identifier for the generated EWA score group.") public String getEwaReportId() { return ewaReportId; } public void setEwaReportId(String ewaReportId) { this.ewaReportId = ewaReportId; } public BetaEwaReportV1GetResponse generationTime(OffsetDateTime generationTime) { this.generationTime = generationTime; return this; } /** * The date and time when &#x60;ewa_scores&#x60; was generated, in ISO 8601 format (e.g. \&quot;2018-04-12T03:32:11Z\&quot;). * @return generationTime **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date and time when `ewa_scores` was generated, in ISO 8601 format (e.g. \"2018-04-12T03:32:11Z\").") public OffsetDateTime getGenerationTime() { return generationTime; } public void setGenerationTime(OffsetDateTime generationTime) { this.generationTime = generationTime; } public BetaEwaReportV1GetResponse ewaScores(List<EwaScore> ewaScores) { this.ewaScores = ewaScores; return this; } public BetaEwaReportV1GetResponse addEwaScoresItem(EwaScore ewaScoresItem) { if (this.ewaScores == null) { this.ewaScores = new ArrayList<>(); } this.ewaScores.add(ewaScoresItem); return this; } /** * A list of earned wage access (EWA) scoring entries that map potential advance amounts to repayment likelihood scores. The predefined advance amount ranges are &#x60;[0, 25]&#x60;, &#x60;[25, 50]&#x60;, &#x60;[50, 100]&#x60;, &#x60;[100, 200]&#x60;, &#x60;[200, 300]&#x60;, &#x60;[300, 400]&#x60;, and &#x60;[400, 500]&#x60;. * @return ewaScores **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of earned wage access (EWA) scoring entries that map potential advance amounts to repayment likelihood scores. The predefined advance amount ranges are `[0, 25]`, `[25, 50]`, `[50, 100]`, `[100, 200]`, `[200, 300]`, `[300, 400]`, and `[400, 500]`.") public List<EwaScore> getEwaScores() { return ewaScores; } public void setEwaScores(List<EwaScore> ewaScores) { this.ewaScores = ewaScores; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BetaEwaReportV1GetResponse betaEwaReportV1GetResponse = (BetaEwaReportV1GetResponse) o; return Objects.equals(this.requestId, betaEwaReportV1GetResponse.requestId) && Objects.equals(this.ewaReportId, betaEwaReportV1GetResponse.ewaReportId) && Objects.equals(this.generationTime, betaEwaReportV1GetResponse.generationTime) && Objects.equals(this.ewaScores, betaEwaReportV1GetResponse.ewaScores); } @Override public int hashCode() { return Objects.hash(requestId, ewaReportId, generationTime, ewaScores); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BetaEwaReportV1GetResponse {\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append(" ewaReportId: ").append(toIndentedString(ewaReportId)).append("\n"); sb.append(" generationTime: ").append(toIndentedString(generationTime)).append("\n"); sb.append(" ewaScores: ").append(toIndentedString(ewaScores)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountUpdateRequest.java
src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountUpdateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.TransferFundingAccount; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the request schema for &#x60;/transfer/originator/funding_account/update&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/originator/funding_account/update`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferOriginatorFundingAccountUpdateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_ORIGINATOR_CLIENT_ID = "originator_client_id"; @SerializedName(SERIALIZED_NAME_ORIGINATOR_CLIENT_ID) private String originatorClientId; public static final String SERIALIZED_NAME_FUNDING_ACCOUNT = "funding_account"; @SerializedName(SERIALIZED_NAME_FUNDING_ACCOUNT) private TransferFundingAccount fundingAccount; public TransferOriginatorFundingAccountUpdateRequest 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 TransferOriginatorFundingAccountUpdateRequest 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 TransferOriginatorFundingAccountUpdateRequest originatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; return this; } /** * The Plaid client ID of the transfer originator. * @return originatorClientId **/ @ApiModelProperty(required = true, value = "The Plaid client ID of the transfer originator.") public String getOriginatorClientId() { return originatorClientId; } public void setOriginatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; } public TransferOriginatorFundingAccountUpdateRequest fundingAccount(TransferFundingAccount fundingAccount) { this.fundingAccount = fundingAccount; return this; } /** * Get fundingAccount * @return fundingAccount **/ @ApiModelProperty(required = true, value = "") public TransferFundingAccount getFundingAccount() { return fundingAccount; } public void setFundingAccount(TransferFundingAccount fundingAccount) { this.fundingAccount = fundingAccount; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferOriginatorFundingAccountUpdateRequest transferOriginatorFundingAccountUpdateRequest = (TransferOriginatorFundingAccountUpdateRequest) o; return Objects.equals(this.clientId, transferOriginatorFundingAccountUpdateRequest.clientId) && Objects.equals(this.secret, transferOriginatorFundingAccountUpdateRequest.secret) && Objects.equals(this.originatorClientId, transferOriginatorFundingAccountUpdateRequest.originatorClientId) && Objects.equals(this.fundingAccount, transferOriginatorFundingAccountUpdateRequest.fundingAccount); } @Override public int hashCode() { return Objects.hash(clientId, secret, originatorClientId, fundingAccount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferOriginatorFundingAccountUpdateRequest {\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(" fundingAccount: ").append(toIndentedString(fundingAccount)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/UserThirdPartyTokenCreateRequest.java
src/main/java/com/plaid/client/model/UserThirdPartyTokenCreateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * UserThirdPartyTokenCreateRequest defines the request schema for &#x60;/user/third_party_token/create&#x60; */ @ApiModel(description = "UserThirdPartyTokenCreateRequest defines the request schema for `/user/third_party_token/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class UserThirdPartyTokenCreateRequest { 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_THIRD_PARTY_CLIENT_ID = "third_party_client_id"; @SerializedName(SERIALIZED_NAME_THIRD_PARTY_CLIENT_ID) private String thirdPartyClientId; public static final String SERIALIZED_NAME_EXPIRATION_TIME = "expiration_time"; @SerializedName(SERIALIZED_NAME_EXPIRATION_TIME) private OffsetDateTime expirationTime; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public UserThirdPartyTokenCreateRequest 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 UserThirdPartyTokenCreateRequest 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 UserThirdPartyTokenCreateRequest 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 UserThirdPartyTokenCreateRequest thirdPartyClientId(String thirdPartyClientId) { this.thirdPartyClientId = thirdPartyClientId; return this; } /** * The Plaid API &#x60;client_id&#x60; of the third-party client the token will be shared with. The token will only be valid for the specified client. * @return thirdPartyClientId **/ @ApiModelProperty(required = true, value = "The Plaid API `client_id` of the third-party client the token will be shared with. The token will only be valid for the specified client.") public String getThirdPartyClientId() { return thirdPartyClientId; } public void setThirdPartyClientId(String thirdPartyClientId) { this.thirdPartyClientId = thirdPartyClientId; } public UserThirdPartyTokenCreateRequest expirationTime(OffsetDateTime expirationTime) { this.expirationTime = expirationTime; return this; } /** * The expiration date and time for the third-party user token in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (&#x60;YYYY-MM-DDThh:mm:ssZ&#x60;). The expiration is restricted to a maximum of 24 hours from the token&#39;s creation time. If not provided, the token will automatically expire after 24 hours. * @return expirationTime **/ @javax.annotation.Nullable @ApiModelProperty(value = "The expiration date and time for the third-party user token in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDThh:mm:ssZ`). The expiration is restricted to a maximum of 24 hours from the token's creation time. If not provided, the token will automatically expire after 24 hours.") public OffsetDateTime getExpirationTime() { return expirationTime; } public void setExpirationTime(OffsetDateTime expirationTime) { this.expirationTime = expirationTime; } public UserThirdPartyTokenCreateRequest 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; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } UserThirdPartyTokenCreateRequest userThirdPartyTokenCreateRequest = (UserThirdPartyTokenCreateRequest) o; return Objects.equals(this.clientId, userThirdPartyTokenCreateRequest.clientId) && Objects.equals(this.secret, userThirdPartyTokenCreateRequest.secret) && Objects.equals(this.userToken, userThirdPartyTokenCreateRequest.userToken) && Objects.equals(this.thirdPartyClientId, userThirdPartyTokenCreateRequest.thirdPartyClientId) && Objects.equals(this.expirationTime, userThirdPartyTokenCreateRequest.expirationTime) && Objects.equals(this.userId, userThirdPartyTokenCreateRequest.userId); } @Override public int hashCode() { return Objects.hash(clientId, secret, userToken, thirdPartyClientId, expirationTime, userId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class UserThirdPartyTokenCreateRequest {\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(" thirdPartyClientId: ").append(toIndentedString(thirdPartyClientId)).append("\n"); sb.append(" expirationTime: ").append(toIndentedString(expirationTime)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PlaidCheckScore.java
src/main/java/com/plaid/client/model/PlaidCheckScore.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * The results of the Plaid Check score. For existing customers only; for new customers, the Plaid Check Score has been replaced by the LendScore, which can be obtained by calling &#x60;/cra/check_report/lend_score/get&#x60;. */ @ApiModel(description = "The results of the Plaid Check score. For existing customers only; for new customers, the Plaid Check Score has been replaced by the LendScore, which can be obtained by calling `/cra/check_report/lend_score/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PlaidCheckScore { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) private Integer score; public static final String SERIALIZED_NAME_REASON_CODES = "reason_codes"; @SerializedName(SERIALIZED_NAME_REASON_CODES) private List<String> reasonCodes = null; public static final String SERIALIZED_NAME_ERROR_REASON = "error_reason"; @SerializedName(SERIALIZED_NAME_ERROR_REASON) private String errorReason; public PlaidCheckScore score(Integer score) { this.score = score; return this; } /** * The score returned by the Plaid Check Score model. Will be an integer in the range 1 to 99. * @return score **/ @javax.annotation.Nullable @ApiModelProperty(value = "The score returned by the Plaid Check Score model. Will be an integer in the range 1 to 99.") public Integer getScore() { return score; } public void setScore(Integer score) { this.score = score; } public PlaidCheckScore reasonCodes(List<String> reasonCodes) { this.reasonCodes = reasonCodes; return this; } public PlaidCheckScore addReasonCodesItem(String reasonCodesItem) { if (this.reasonCodes == null) { this.reasonCodes = new ArrayList<>(); } this.reasonCodes.add(reasonCodesItem); return this; } /** * The reasons for an individual having risk according to the Plaid Check score. * @return reasonCodes **/ @javax.annotation.Nullable @ApiModelProperty(value = "The reasons for an individual having risk according to the Plaid Check score.") public List<String> getReasonCodes() { return reasonCodes; } public void setReasonCodes(List<String> reasonCodes) { this.reasonCodes = reasonCodes; } public PlaidCheckScore errorReason(String errorReason) { this.errorReason = errorReason; return this; } /** * Human-readable description of why the score could not be computed. * @return errorReason **/ @javax.annotation.Nullable @ApiModelProperty(value = "Human-readable description of why the score could not be computed.") public String getErrorReason() { return errorReason; } public void setErrorReason(String errorReason) { this.errorReason = errorReason; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PlaidCheckScore plaidCheckScore = (PlaidCheckScore) o; return Objects.equals(this.score, plaidCheckScore.score) && Objects.equals(this.reasonCodes, plaidCheckScore.reasonCodes) && Objects.equals(this.errorReason, plaidCheckScore.errorReason); } @Override public int hashCode() { return Objects.hash(score, reasonCodes, errorReason); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PlaidCheckScore {\n"); sb.append(" score: ").append(toIndentedString(score)).append("\n"); sb.append(" reasonCodes: ").append(toIndentedString(reasonCodes)).append("\n"); sb.append(" errorReason: ").append(toIndentedString(errorReason)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SignalWarning.java
src/main/java/com/plaid/client/model/SignalWarning.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Conveys information about the errors causing missing or stale bank data used to construct the /signal/evaluate scores and response */ @ApiModel(description = "Conveys information about the errors causing missing or stale bank data used to construct the /signal/evaluate scores and response") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SignalWarning { public static final String SERIALIZED_NAME_WARNING_TYPE = "warning_type"; @SerializedName(SERIALIZED_NAME_WARNING_TYPE) private String warningType; public static final String SERIALIZED_NAME_WARNING_CODE = "warning_code"; @SerializedName(SERIALIZED_NAME_WARNING_CODE) private String warningCode; public static final String SERIALIZED_NAME_WARNING_MESSAGE = "warning_message"; @SerializedName(SERIALIZED_NAME_WARNING_MESSAGE) private String warningMessage; public SignalWarning warningType(String warningType) { this.warningType = warningType; return this; } /** * A broad categorization of the warning. Safe for programmatic use. * @return warningType **/ @javax.annotation.Nullable @ApiModelProperty(value = "A broad categorization of the warning. Safe for programmatic use.") public String getWarningType() { return warningType; } public void setWarningType(String warningType) { this.warningType = warningType; } public SignalWarning warningCode(String warningCode) { this.warningCode = warningCode; return this; } /** * The warning code identifies a specific kind of warning that pertains to the error causing bank data to be missing. Safe for programmatic use. For more details on warning codes, please refer to Plaid standard error codes documentation. If you receive the &#x60;ITEM_LOGIN_REQUIRED&#x60; warning, we recommend re-authenticating your user by implementing Link&#39;s update mode. This will guide your user to fix their credentials, allowing Plaid to start fetching data again for future requests. * @return warningCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The warning code identifies a specific kind of warning that pertains to the error causing bank data to be missing. Safe for programmatic use. For more details on warning codes, please refer to Plaid standard error codes documentation. If you receive the `ITEM_LOGIN_REQUIRED` warning, we recommend re-authenticating your user by implementing Link's update mode. This will guide your user to fix their credentials, allowing Plaid to start fetching data again for future requests.") public String getWarningCode() { return warningCode; } public void setWarningCode(String warningCode) { this.warningCode = warningCode; } public SignalWarning warningMessage(String warningMessage) { this.warningMessage = warningMessage; return this; } /** * A developer-friendly representation of the warning type. This may change over time and is not safe for programmatic use. * @return warningMessage **/ @javax.annotation.Nullable @ApiModelProperty(value = "A developer-friendly representation of the warning type. This may change over time and is not safe for programmatic use.") public String getWarningMessage() { return warningMessage; } public void setWarningMessage(String warningMessage) { this.warningMessage = warningMessage; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SignalWarning signalWarning = (SignalWarning) o; return Objects.equals(this.warningType, signalWarning.warningType) && Objects.equals(this.warningCode, signalWarning.warningCode) && Objects.equals(this.warningMessage, signalWarning.warningMessage); } @Override public int hashCode() { return Objects.hash(warningType, warningCode, warningMessage); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SignalWarning {\n"); sb.append(" warningType: ").append(toIndentedString(warningType)).append("\n"); sb.append(" warningCode: ").append(toIndentedString(warningCode)).append("\n"); sb.append(" warningMessage: ").append(toIndentedString(warningMessage)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaymentInitiationPaymentCreateResponse.java
src/main/java/com/plaid/client/model/PaymentInitiationPaymentCreateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.PaymentInitiationPaymentCreateStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * PaymentInitiationPaymentCreateResponse defines the response schema for &#x60;/payment_initiation/payment/create&#x60; */ @ApiModel(description = "PaymentInitiationPaymentCreateResponse defines the response schema for `/payment_initiation/payment/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentInitiationPaymentCreateResponse { public static final String SERIALIZED_NAME_PAYMENT_ID = "payment_id"; @SerializedName(SERIALIZED_NAME_PAYMENT_ID) private String paymentId; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private PaymentInitiationPaymentCreateStatus status; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public PaymentInitiationPaymentCreateResponse paymentId(String paymentId) { this.paymentId = paymentId; return this; } /** * A unique ID identifying the payment * @return paymentId **/ @ApiModelProperty(required = true, value = "A unique ID identifying the payment") public String getPaymentId() { return paymentId; } public void setPaymentId(String paymentId) { this.paymentId = paymentId; } public PaymentInitiationPaymentCreateResponse status(PaymentInitiationPaymentCreateStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public PaymentInitiationPaymentCreateStatus getStatus() { return status; } public void setStatus(PaymentInitiationPaymentCreateStatus status) { this.status = status; } public PaymentInitiationPaymentCreateResponse 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; } PaymentInitiationPaymentCreateResponse paymentInitiationPaymentCreateResponse = (PaymentInitiationPaymentCreateResponse) o; return Objects.equals(this.paymentId, paymentInitiationPaymentCreateResponse.paymentId) && Objects.equals(this.status, paymentInitiationPaymentCreateResponse.status) && Objects.equals(this.requestId, paymentInitiationPaymentCreateResponse.requestId); } @Override public int hashCode() { return Objects.hash(paymentId, status, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentInitiationPaymentCreateResponse {\n"); sb.append(" paymentId: ").append(toIndentedString(paymentId)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProtectEventGetRequest.java
src/main/java/com/plaid/client/model/ProtectEventGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 object for /protect/event/get */ @ApiModel(description = "Request object for /protect/event/get") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProtectEventGetRequest { 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_EVENT_ID = "event_id"; @SerializedName(SERIALIZED_NAME_EVENT_ID) private String eventId; public ProtectEventGetRequest 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 ProtectEventGetRequest 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 ProtectEventGetRequest eventId(String eventId) { this.eventId = eventId; return this; } /** * The event ID to retrieve information for. * @return eventId **/ @ApiModelProperty(required = true, value = "The event ID to retrieve information for.") public String getEventId() { return eventId; } public void setEventId(String eventId) { this.eventId = eventId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProtectEventGetRequest protectEventGetRequest = (ProtectEventGetRequest) o; return Objects.equals(this.clientId, protectEventGetRequest.clientId) && Objects.equals(this.secret, protectEventGetRequest.secret) && Objects.equals(this.eventId, protectEventGetRequest.eventId); } @Override public int hashCode() { return Objects.hash(clientId, secret, eventId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProtectEventGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" eventId: ").append(toIndentedString(eventId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransactionsCategoryRule.java
src/main/java/com/plaid/client/model/TransactionsCategoryRule.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; import java.time.OffsetDateTime; /** * A representation of a transactions category rule. */ @ApiModel(description = "A representation of a transactions category rule.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionsCategoryRule { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) private String id; public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) private OffsetDateTime createdAt; 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 TransactionsCategoryRule id(String id) { this.id = id; return this; } /** * A unique identifier of the rule created * @return id **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique identifier of the rule created") public String getId() { return id; } public void setId(String id) { this.id = id; } public TransactionsCategoryRule itemId(String itemId) { this.itemId = itemId; return this; } /** * A unique identifier of the Item the rule was created for. * @return itemId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique identifier of the Item the rule was created for.") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public TransactionsCategoryRule createdAt(OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** * Date and time when a rule was created in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format ( &#x60;YYYY-MM-DDTHH:mm:ssZ&#x60; ). * @return createdAt **/ @javax.annotation.Nullable @ApiModelProperty(value = "Date and time when a rule was created in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format ( `YYYY-MM-DDTHH:mm:ssZ` ). ") public OffsetDateTime getCreatedAt() { return createdAt; } public void setCreatedAt(OffsetDateTime createdAt) { this.createdAt = createdAt; } public TransactionsCategoryRule personalFinanceCategory(String personalFinanceCategory) { this.personalFinanceCategory = personalFinanceCategory; return this; } /** * Personal finance category unique identifier. In the personal finance category taxonomy, this field is represented by the detailed category field. * @return personalFinanceCategory **/ @javax.annotation.Nullable @ApiModelProperty(value = "Personal finance category unique identifier. In the personal finance category taxonomy, this field is represented by the detailed category field. ") public String getPersonalFinanceCategory() { return personalFinanceCategory; } public void setPersonalFinanceCategory(String personalFinanceCategory) { this.personalFinanceCategory = personalFinanceCategory; } public TransactionsCategoryRule ruleDetails(TransactionsRuleDetails ruleDetails) { this.ruleDetails = ruleDetails; return this; } /** * Get ruleDetails * @return ruleDetails **/ @javax.annotation.Nullable @ApiModelProperty(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; } TransactionsCategoryRule transactionsCategoryRule = (TransactionsCategoryRule) o; return Objects.equals(this.id, transactionsCategoryRule.id) && Objects.equals(this.itemId, transactionsCategoryRule.itemId) && Objects.equals(this.createdAt, transactionsCategoryRule.createdAt) && Objects.equals(this.personalFinanceCategory, transactionsCategoryRule.personalFinanceCategory) && Objects.equals(this.ruleDetails, transactionsCategoryRule.ruleDetails); } @Override public int hashCode() { return Objects.hash(id, itemId, createdAt, personalFinanceCategory, ruleDetails); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsCategoryRule {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" createdAt: ").append(toIndentedString(createdAt)).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/TotalInflowAmount30d.java
src/main/java/com/plaid/client/model/TotalInflowAmount30d.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.math.BigDecimal; /** * Total amount of debit transactions into the account in the last 30 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account. */ @ApiModel(description = "Total amount of debit transactions into the account in the last 30 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TotalInflowAmount30d { 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 TotalInflowAmount30d amount(Double amount) { this.amount = amount; return this; } /** * Value of amount with up to 2 decimal places. * @return amount **/ @ApiModelProperty(required = true, value = "Value of amount with up to 2 decimal places.") public Double getAmount() { return amount; } public void setAmount(Double amount) { this.amount = amount; } public TotalInflowAmount30d isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO 4217 currency code of the amount or balance. * @return isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ISO 4217 currency code of the amount or balance.") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public TotalInflowAmount30d unofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; return this; } /** * The unofficial currency code associated with the amount or balance. Always &#x60;null&#x60; if &#x60;iso_currency_code&#x60; is non-null. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries. * @return unofficialCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The unofficial currency code associated with the amount or balance. Always `null` if `iso_currency_code` is non-null. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.") public String getUnofficialCurrencyCode() { return unofficialCurrencyCode; } public void setUnofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TotalInflowAmount30d totalInflowAmount30d = (TotalInflowAmount30d) o; return Objects.equals(this.amount, totalInflowAmount30d.amount) && Objects.equals(this.isoCurrencyCode, totalInflowAmount30d.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, totalInflowAmount30d.unofficialCurrencyCode); } @Override public int hashCode() { return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TotalInflowAmount30d {\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append(" unofficialCurrencyCode: ").append(toIndentedString(unofficialCurrencyCode)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraBankIncomeHistoricalSummary.java
src/main/java/com/plaid/client/model/CraBankIncomeHistoricalSummary.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CraBankIncomeTransaction; import com.plaid.client.model.CreditAmountWithCurrency; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; import java.util.ArrayList; import java.util.List; /** * The end user&#39;s monthly summary for the income source(s). */ @ApiModel(description = "The end user's monthly summary for the income source(s).") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraBankIncomeHistoricalSummary { public static final String SERIALIZED_NAME_TOTAL_AMOUNTS = "total_amounts"; @SerializedName(SERIALIZED_NAME_TOTAL_AMOUNTS) private List<CreditAmountWithCurrency> totalAmounts = null; public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) private LocalDate startDate; public static final String SERIALIZED_NAME_END_DATE = "end_date"; @SerializedName(SERIALIZED_NAME_END_DATE) private LocalDate endDate; public static final String SERIALIZED_NAME_TRANSACTIONS = "transactions"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS) private List<CraBankIncomeTransaction> transactions = null; public CraBankIncomeHistoricalSummary totalAmounts(List<CreditAmountWithCurrency> totalAmounts) { this.totalAmounts = totalAmounts; return this; } public CraBankIncomeHistoricalSummary addTotalAmountsItem(CreditAmountWithCurrency totalAmountsItem) { if (this.totalAmounts == null) { this.totalAmounts = new ArrayList<>(); } this.totalAmounts.add(totalAmountsItem); return this; } /** * Total amount of earnings for the income source(s) of the user for the month in the summary. This can contain multiple amounts, with each amount denominated in one unique currency. * @return totalAmounts **/ @javax.annotation.Nullable @ApiModelProperty(value = "Total amount of earnings for the income source(s) of the user for the month in the summary. This can contain multiple amounts, with each amount denominated in one unique currency.") public List<CreditAmountWithCurrency> getTotalAmounts() { return totalAmounts; } public void setTotalAmounts(List<CreditAmountWithCurrency> totalAmounts) { this.totalAmounts = totalAmounts; } public CraBankIncomeHistoricalSummary startDate(LocalDate startDate) { this.startDate = startDate; return this; } /** * The start date of the period covered in this monthly summary. This date will be the first day of the month, unless the month being covered is a partial month because it is the first month included in the summary and the date range being requested does not begin with the first day of the month. The date will be returned in an ISO 8601 format (YYYY-MM-DD). * @return startDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The start date of the period covered in this monthly summary. This date will be the first day of the month, unless the month being covered is a partial month because it is the first month included in the summary and the date range being requested does not begin with the first day of the month. The date will be returned in an ISO 8601 format (YYYY-MM-DD).") public LocalDate getStartDate() { return startDate; } public void setStartDate(LocalDate startDate) { this.startDate = startDate; } public CraBankIncomeHistoricalSummary endDate(LocalDate endDate) { this.endDate = endDate; return this; } /** * The end date of the period included in this monthly summary. This date will be the last day of the month, unless the month being covered is a partial month because it is the last month included in the summary and the date range being requested does not end with the last day of the month. The date will be returned in an ISO 8601 format (YYYY-MM-DD). * @return endDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The end date of the period included in this monthly summary. This date will be the last day of the month, unless the month being covered is a partial month because it is the last month included in the summary and the date range being requested does not end with the last day of the month. The date will be returned in an ISO 8601 format (YYYY-MM-DD).") public LocalDate getEndDate() { return endDate; } public void setEndDate(LocalDate endDate) { this.endDate = endDate; } public CraBankIncomeHistoricalSummary transactions(List<CraBankIncomeTransaction> transactions) { this.transactions = transactions; return this; } public CraBankIncomeHistoricalSummary addTransactionsItem(CraBankIncomeTransaction transactionsItem) { if (this.transactions == null) { this.transactions = new ArrayList<>(); } this.transactions.add(transactionsItem); return this; } /** * Get transactions * @return transactions **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public List<CraBankIncomeTransaction> getTransactions() { return transactions; } public void setTransactions(List<CraBankIncomeTransaction> transactions) { this.transactions = transactions; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraBankIncomeHistoricalSummary craBankIncomeHistoricalSummary = (CraBankIncomeHistoricalSummary) o; return Objects.equals(this.totalAmounts, craBankIncomeHistoricalSummary.totalAmounts) && Objects.equals(this.startDate, craBankIncomeHistoricalSummary.startDate) && Objects.equals(this.endDate, craBankIncomeHistoricalSummary.endDate) && Objects.equals(this.transactions, craBankIncomeHistoricalSummary.transactions); } @Override public int hashCode() { return Objects.hash(totalAmounts, startDate, endDate, transactions); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraBankIncomeHistoricalSummary {\n"); sb.append(" totalAmounts: ").append(toIndentedString(totalAmounts)).append("\n"); sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n"); sb.append(" endDate: ").append(toIndentedString(endDate)).append("\n"); sb.append(" transactions: ").append(toIndentedString(transactions)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PartnerCustomerEnableRequest.java
src/main/java/com/plaid/client/model/PartnerCustomerEnableRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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/enable&#x60;. */ @ApiModel(description = "Request schema for `/partner/customer/enable`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PartnerCustomerEnableRequest { 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 PartnerCustomerEnableRequest 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 PartnerCustomerEnableRequest 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 PartnerCustomerEnableRequest endCustomerClientId(String endCustomerClientId) { this.endCustomerClientId = endCustomerClientId; return this; } /** * Get endCustomerClientId * @return endCustomerClientId **/ @ApiModelProperty(required = true, value = "") public String getEndCustomerClientId() { return endCustomerClientId; } public void setEndCustomerClientId(String endCustomerClientId) { this.endCustomerClientId = endCustomerClientId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PartnerCustomerEnableRequest partnerCustomerEnableRequest = (PartnerCustomerEnableRequest) o; return Objects.equals(this.clientId, partnerCustomerEnableRequest.clientId) && Objects.equals(this.secret, partnerCustomerEnableRequest.secret) && Objects.equals(this.endCustomerClientId, partnerCustomerEnableRequest.endCustomerClientId); } @Override public int hashCode() { return Objects.hash(clientId, secret, endCustomerClientId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PartnerCustomerEnableRequest {\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/CauseAllOf.java
src/main/java/com/plaid/client/model/CauseAllOf.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * CauseAllOf */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CauseAllOf { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public CauseAllOf 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 **/ @javax.annotation.Nullable @ApiModelProperty(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; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CauseAllOf causeAllOf = (CauseAllOf) o; return Objects.equals(this.itemId, causeAllOf.itemId); } @Override public int hashCode() { return Objects.hash(itemId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CauseAllOf {\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SingleDocumentRiskSignal.java
src/main/java/com/plaid/client/model/SingleDocumentRiskSignal.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.DocumentRiskSignal; import com.plaid.client.model.DocumentRiskSummary; import com.plaid.client.model.RiskSignalDocumentReference; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Object containing all risk signals and relevant metadata for a single document */ @ApiModel(description = "Object containing all risk signals and relevant metadata for a single document") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SingleDocumentRiskSignal { public static final String SERIALIZED_NAME_DOCUMENT_REFERENCE = "document_reference"; @SerializedName(SERIALIZED_NAME_DOCUMENT_REFERENCE) private RiskSignalDocumentReference documentReference; public static final String SERIALIZED_NAME_RISK_SIGNALS = "risk_signals"; @SerializedName(SERIALIZED_NAME_RISK_SIGNALS) private List<DocumentRiskSignal> riskSignals = new ArrayList<>(); public static final String SERIALIZED_NAME_RISK_SUMMARY = "risk_summary"; @SerializedName(SERIALIZED_NAME_RISK_SUMMARY) private DocumentRiskSummary riskSummary; public SingleDocumentRiskSignal documentReference(RiskSignalDocumentReference documentReference) { this.documentReference = documentReference; return this; } /** * Get documentReference * @return documentReference **/ @ApiModelProperty(required = true, value = "") public RiskSignalDocumentReference getDocumentReference() { return documentReference; } public void setDocumentReference(RiskSignalDocumentReference documentReference) { this.documentReference = documentReference; } public SingleDocumentRiskSignal riskSignals(List<DocumentRiskSignal> riskSignals) { this.riskSignals = riskSignals; return this; } public SingleDocumentRiskSignal addRiskSignalsItem(DocumentRiskSignal riskSignalsItem) { this.riskSignals.add(riskSignalsItem); return this; } /** * Array of attributes that indicate whether or not there is fraud risk with a document * @return riskSignals **/ @ApiModelProperty(required = true, value = "Array of attributes that indicate whether or not there is fraud risk with a document") public List<DocumentRiskSignal> getRiskSignals() { return riskSignals; } public void setRiskSignals(List<DocumentRiskSignal> riskSignals) { this.riskSignals = riskSignals; } public SingleDocumentRiskSignal riskSummary(DocumentRiskSummary riskSummary) { this.riskSummary = riskSummary; return this; } /** * Get riskSummary * @return riskSummary **/ @ApiModelProperty(required = true, value = "") public DocumentRiskSummary getRiskSummary() { return riskSummary; } public void setRiskSummary(DocumentRiskSummary riskSummary) { this.riskSummary = riskSummary; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SingleDocumentRiskSignal singleDocumentRiskSignal = (SingleDocumentRiskSignal) o; return Objects.equals(this.documentReference, singleDocumentRiskSignal.documentReference) && Objects.equals(this.riskSignals, singleDocumentRiskSignal.riskSignals) && Objects.equals(this.riskSummary, singleDocumentRiskSignal.riskSummary); } @Override public int hashCode() { return Objects.hash(documentReference, riskSignals, riskSummary); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SingleDocumentRiskSignal {\n"); sb.append(" documentReference: ").append(toIndentedString(documentReference)).append("\n"); sb.append(" riskSignals: ").append(toIndentedString(riskSignals)).append("\n"); sb.append(" riskSummary: ").append(toIndentedString(riskSummary)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/NumbersInternationalIBAN.java
src/main/java/com/plaid/client/model/NumbersInternationalIBAN.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Account numbers using the International Bank Account Number and BIC/SWIFT code format. */ @ApiModel(description = "Account numbers using the International Bank Account Number and BIC/SWIFT code format.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class NumbersInternationalIBAN { 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 NumbersInternationalIBAN iban(String iban) { this.iban = iban; return this; } /** * International Bank Account Number (IBAN). * @return iban **/ @ApiModelProperty(required = true, value = "International Bank Account Number (IBAN).") public String getIban() { return iban; } public void setIban(String iban) { this.iban = iban; } public NumbersInternationalIBAN bic(String bic) { this.bic = bic; return this; } /** * The Business Identifier Code, also known as SWIFT code, for this bank account. * @return bic **/ @ApiModelProperty(required = true, value = "The Business Identifier Code, also known as SWIFT code, for this bank 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; } NumbersInternationalIBAN numbersInternationalIBAN = (NumbersInternationalIBAN) o; return Objects.equals(this.iban, numbersInternationalIBAN.iban) && Objects.equals(this.bic, numbersInternationalIBAN.bic); } @Override public int hashCode() { return Objects.hash(iban, bic); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class NumbersInternationalIBAN {\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/CreditBankIncomeGetResponse.java
src/main/java/com/plaid/client/model/CreditBankIncomeGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CreditBankIncome; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * CreditBankIncomeGetResponse defines the response schema for &#x60;/credit/bank_income/get&#x60; */ @ApiModel(description = "CreditBankIncomeGetResponse defines the response schema for `/credit/bank_income/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditBankIncomeGetResponse { public static final String SERIALIZED_NAME_BANK_INCOME = "bank_income"; @SerializedName(SERIALIZED_NAME_BANK_INCOME) private List<CreditBankIncome> bankIncome = null; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public CreditBankIncomeGetResponse bankIncome(List<CreditBankIncome> bankIncome) { this.bankIncome = bankIncome; return this; } public CreditBankIncomeGetResponse addBankIncomeItem(CreditBankIncome bankIncomeItem) { if (this.bankIncome == null) { this.bankIncome = new ArrayList<>(); } this.bankIncome.add(bankIncomeItem); return this; } /** * Get bankIncome * @return bankIncome **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public List<CreditBankIncome> getBankIncome() { return bankIncome; } public void setBankIncome(List<CreditBankIncome> bankIncome) { this.bankIncome = bankIncome; } public CreditBankIncomeGetResponse 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; } CreditBankIncomeGetResponse creditBankIncomeGetResponse = (CreditBankIncomeGetResponse) o; return Objects.equals(this.bankIncome, creditBankIncomeGetResponse.bankIncome) && Objects.equals(this.requestId, creditBankIncomeGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(bankIncome, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditBankIncomeGetResponse {\n"); sb.append(" bankIncome: ").append(toIndentedString(bankIncome)).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/BusinessVerificationCreateRequestBusiness.java
src/main/java/com/plaid/client/model/BusinessVerificationCreateRequestBusiness.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.RequestBusinessAddress; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.net.URI; /** * Business information provided in the verification request */ @ApiModel(description = "Business information provided in the verification request") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BusinessVerificationCreateRequestBusiness { 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 RequestBusinessAddress address; public static final String SERIALIZED_NAME_WEBSITE = "website"; @SerializedName(SERIALIZED_NAME_WEBSITE) private URI website; public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBER) private String phoneNumber; public static final String SERIALIZED_NAME_EMAIL = "email"; @SerializedName(SERIALIZED_NAME_EMAIL) private String email; public BusinessVerificationCreateRequestBusiness name(String name) { this.name = name; return this; } /** * The name of the business. Must have at least one character and a maximum length of 500 characters. * @return name **/ @ApiModelProperty(example = "Acme Corporation", required = true, value = "The name of the business. Must have at least one character and a maximum length of 500 characters.") public String getName() { return name; } public void setName(String name) { this.name = name; } public BusinessVerificationCreateRequestBusiness address(RequestBusinessAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @ApiModelProperty(required = true, value = "") public RequestBusinessAddress getAddress() { return address; } public void setAddress(RequestBusinessAddress address) { this.address = address; } public BusinessVerificationCreateRequestBusiness website(URI website) { this.website = website; return this; } /** * An &#39;http&#39; or &#39;https&#39; URL (must begin with either of those). * @return website **/ @javax.annotation.Nullable @ApiModelProperty(example = "https://example.com", value = "An 'http' or 'https' URL (must begin with either of those).") public URI getWebsite() { return website; } public void setWebsite(URI website) { this.website = website; } public BusinessVerificationCreateRequestBusiness phoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; return this; } /** * A phone number in E.164 format. * @return phoneNumber **/ @javax.annotation.Nullable @ApiModelProperty(example = "+14025671234", value = "A phone number in E.164 format.") public String getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } public BusinessVerificationCreateRequestBusiness email(String email) { this.email = email; 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 email **/ @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 getEmail() { return email; } public void setEmail(String email) { this.email = email; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BusinessVerificationCreateRequestBusiness businessVerificationCreateRequestBusiness = (BusinessVerificationCreateRequestBusiness) o; return Objects.equals(this.name, businessVerificationCreateRequestBusiness.name) && Objects.equals(this.address, businessVerificationCreateRequestBusiness.address) && Objects.equals(this.website, businessVerificationCreateRequestBusiness.website) && Objects.equals(this.phoneNumber, businessVerificationCreateRequestBusiness.phoneNumber) && Objects.equals(this.email, businessVerificationCreateRequestBusiness.email); } @Override public int hashCode() { return Objects.hash(name, address, website, phoneNumber, email); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BusinessVerificationCreateRequestBusiness {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" website: ").append(toIndentedString(website)).append("\n"); sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n"); sb.append(" email: ").append(toIndentedString(email)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BeaconUserCreateResponse.java
src/main/java/com/plaid/client/model/BeaconUserCreateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.BeaconAuditTrail; import com.plaid.client.model.BeaconUserData; import com.plaid.client.model.BeaconUserStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; import java.util.LinkedHashSet; import java.util.List; import java.util.Set; /** * A Beacon User represents an end user that has been scanned against the Beacon Network. */ @ApiModel(description = "A Beacon User represents an end user that has been scanned against the Beacon Network.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconUserCreateResponse { public static final String SERIALIZED_NAME_ITEM_IDS = "item_ids"; @SerializedName(SERIALIZED_NAME_ITEM_IDS) private Set<String> itemIds = new LinkedHashSet<>(); public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) private String id; public static final String SERIALIZED_NAME_VERSION = "version"; @SerializedName(SERIALIZED_NAME_VERSION) private Integer version; public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) private java.sql.Timestamp createdAt; public static final String SERIALIZED_NAME_UPDATED_AT = "updated_at"; @SerializedName(SERIALIZED_NAME_UPDATED_AT) private OffsetDateTime updatedAt; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private BeaconUserStatus status; public static final String SERIALIZED_NAME_PROGRAM_ID = "program_id"; @SerializedName(SERIALIZED_NAME_PROGRAM_ID) private String programId; public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id"; @SerializedName(SERIALIZED_NAME_CLIENT_USER_ID) private String clientUserId; public static final String SERIALIZED_NAME_USER = "user"; @SerializedName(SERIALIZED_NAME_USER) private BeaconUserData user; public static final String SERIALIZED_NAME_AUDIT_TRAIL = "audit_trail"; @SerializedName(SERIALIZED_NAME_AUDIT_TRAIL) private BeaconAuditTrail auditTrail; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public BeaconUserCreateResponse itemIds(Set<String> itemIds) { this.itemIds = itemIds; return this; } public BeaconUserCreateResponse addItemIdsItem(String itemIdsItem) { this.itemIds.add(itemIdsItem); return this; } /** * An array of Plaid Item IDs corresponding to the Accounts associated with this Beacon User. * @return itemIds **/ @ApiModelProperty(example = "[\"515cd85321d3649aecddc015\"]", required = true, value = "An array of Plaid Item IDs corresponding to the Accounts associated with this Beacon User.") public Set<String> getItemIds() { return itemIds; } public void setItemIds(Set<String> itemIds) { this.itemIds = itemIds; } public BeaconUserCreateResponse id(String id) { this.id = id; return this; } /** * ID of the associated Beacon User. * @return id **/ @ApiModelProperty(example = "becusr_42cF1MNo42r9Xj", required = true, value = "ID of the associated Beacon User.") public String getId() { return id; } public void setId(String id) { this.id = id; } public BeaconUserCreateResponse version(Integer version) { this.version = version; return this; } /** * The &#x60;version&#x60; field begins with 1 and increments each time the user is updated. * @return version **/ @ApiModelProperty(example = "1", required = true, value = "The `version` field begins with 1 and increments each time the user is updated.") public Integer getVersion() { return version; } public void setVersion(Integer version) { this.version = version; } public BeaconUserCreateResponse createdAt(java.sql.Timestamp createdAt) { this.createdAt = createdAt; return this; } /** * Get createdAt * @return createdAt **/ @ApiModelProperty(required = true, value = "") public java.sql.Timestamp getCreatedAt() { return createdAt; } public void setCreatedAt(java.sql.Timestamp createdAt) { this.createdAt = createdAt; } public BeaconUserCreateResponse updatedAt(OffsetDateTime updatedAt) { this.updatedAt = updatedAt; return this; } /** * An ISO8601 formatted timestamp. This field indicates the last time the resource was modified. * @return updatedAt **/ @ApiModelProperty(example = "2020-07-24T03:26:02Z", required = true, value = "An ISO8601 formatted timestamp. This field indicates the last time the resource was modified.") public OffsetDateTime getUpdatedAt() { return updatedAt; } public void setUpdatedAt(OffsetDateTime updatedAt) { this.updatedAt = updatedAt; } public BeaconUserCreateResponse status(BeaconUserStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public BeaconUserStatus getStatus() { return status; } public void setStatus(BeaconUserStatus status) { this.status = status; } public BeaconUserCreateResponse programId(String programId) { this.programId = programId; return this; } /** * ID of the associated Beacon Program. * @return programId **/ @ApiModelProperty(example = "becprg_11111111111111", required = true, value = "ID of the associated Beacon Program.") public String getProgramId() { return programId; } public void setProgramId(String programId) { this.programId = programId; } public BeaconUserCreateResponse clientUserId(String clientUserId) { this.clientUserId = clientUserId; return this; } /** * A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the &#x60;/link/token/create&#x60; &#x60;client_user_id&#x60; to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the &#x60;client_user_id&#x60;. * @return clientUserId **/ @ApiModelProperty(example = "your-db-id-3b24110", required = true, value = "A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the `/link/token/create` `client_user_id` to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the `client_user_id`.") public String getClientUserId() { return clientUserId; } public void setClientUserId(String clientUserId) { this.clientUserId = clientUserId; } public BeaconUserCreateResponse user(BeaconUserData user) { this.user = user; return this; } /** * Get user * @return user **/ @ApiModelProperty(required = true, value = "") public BeaconUserData getUser() { return user; } public void setUser(BeaconUserData user) { this.user = user; } public BeaconUserCreateResponse auditTrail(BeaconAuditTrail auditTrail) { this.auditTrail = auditTrail; return this; } /** * Get auditTrail * @return auditTrail **/ @ApiModelProperty(required = true, value = "") public BeaconAuditTrail getAuditTrail() { return auditTrail; } public void setAuditTrail(BeaconAuditTrail auditTrail) { this.auditTrail = auditTrail; } public BeaconUserCreateResponse 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; } BeaconUserCreateResponse beaconUserCreateResponse = (BeaconUserCreateResponse) o; return Objects.equals(this.itemIds, beaconUserCreateResponse.itemIds) && Objects.equals(this.id, beaconUserCreateResponse.id) && Objects.equals(this.version, beaconUserCreateResponse.version) && Objects.equals(this.createdAt, beaconUserCreateResponse.createdAt) && Objects.equals(this.updatedAt, beaconUserCreateResponse.updatedAt) && Objects.equals(this.status, beaconUserCreateResponse.status) && Objects.equals(this.programId, beaconUserCreateResponse.programId) && Objects.equals(this.clientUserId, beaconUserCreateResponse.clientUserId) && Objects.equals(this.user, beaconUserCreateResponse.user) && Objects.equals(this.auditTrail, beaconUserCreateResponse.auditTrail) && Objects.equals(this.requestId, beaconUserCreateResponse.requestId); } @Override public int hashCode() { return Objects.hash(itemIds, id, version, createdAt, updatedAt, status, programId, clientUserId, user, auditTrail, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconUserCreateResponse {\n"); sb.append(" itemIds: ").append(toIndentedString(itemIds)).append("\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" version: ").append(toIndentedString(version)).append("\n"); sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n"); sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" programId: ").append(toIndentedString(programId)).append("\n"); sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n"); sb.append(" user: ").append(toIndentedString(user)).append("\n"); sb.append(" auditTrail: ").append(toIndentedString(auditTrail)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AccountIdentityDocumentUpload.java
src/main/java/com/plaid/client/model/AccountIdentityDocumentUpload.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AccountBalance; import com.plaid.client.model.AccountBase; import com.plaid.client.model.AccountHolderCategory; import com.plaid.client.model.AccountIdentityDocumentUploadAllOf; import com.plaid.client.model.AccountSubtype; import com.plaid.client.model.AccountType; import com.plaid.client.model.AccountVerificationInsights; import com.plaid.client.model.IdentityDocumentUpload; import com.plaid.client.model.Owner; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Identity information about an account */ @ApiModel(description = "Identity information about an account") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AccountIdentityDocumentUpload { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_BALANCES = "balances"; @SerializedName(SERIALIZED_NAME_BALANCES) private AccountBalance balances; public static final String SERIALIZED_NAME_MASK = "mask"; @SerializedName(SERIALIZED_NAME_MASK) private String mask; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_OFFICIAL_NAME = "official_name"; @SerializedName(SERIALIZED_NAME_OFFICIAL_NAME) private String officialName; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private AccountType type; public static final String SERIALIZED_NAME_SUBTYPE = "subtype"; @SerializedName(SERIALIZED_NAME_SUBTYPE) private AccountSubtype subtype; /** * Indicates an Item&#39;s micro-deposit-based verification or database verification status. This field is only populated when using Auth and falling back to micro-deposit or database verification. Possible values are: &#x60;pending_automatic_verification&#x60;: The Item is pending automatic verification. &#x60;pending_manual_verification&#x60;: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the code. &#x60;automatically_verified&#x60;: The Item has successfully been automatically verified. &#x60;manually_verified&#x60;: The Item has successfully been manually verified. &#x60;verification_expired&#x60;: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. &#x60;verification_failed&#x60;: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. &#x60;unsent&#x60;: The Item is pending micro-deposit verification, but Plaid has not yet sent the micro-deposit. &#x60;database_insights_pending&#x60;: The Database Auth result is pending and will be available upon Auth request. &#x60;database_insights_fail&#x60;: The Item&#39;s numbers have been verified using Plaid&#39;s data sources and have signal for being invalid and/or have no signal for being valid. Typically this indicates that the routing number is invalid, the account number does not match the account number format associated with the routing number, or the account has been reported as closed or frozen. Only returned for Auth Items created via Database Auth. &#x60;database_insights_pass&#x60;: The Item&#39;s numbers have been verified using Plaid&#39;s data sources: the routing and account number match a routing and account number of an account recognized on the Plaid network, and the account is not known by Plaid to be frozen or closed. Only returned for Auth Items created via Database Auth. &#x60;database_insights_pass_with_caution&#x60;: The Item&#39;s numbers have been verified using Plaid&#39;s data sources and have some signal for being valid: the routing and account number were not recognized on the Plaid network, but the routing number is valid and the account number is a potential valid account number for that routing number. Only returned for Auth Items created via Database Auth. &#x60;database_matched&#x60;: (deprecated) The Item has successfully been verified using Plaid&#39;s data sources. Only returned for Auth Items created via Database Match. &#x60;null&#x60; or empty string: Neither micro-deposit-based verification nor database verification are being used for the Item. */ @JsonAdapter(VerificationStatusEnum.Adapter.class) public enum VerificationStatusEnum { AUTOMATICALLY_VERIFIED("automatically_verified"), PENDING_AUTOMATIC_VERIFICATION("pending_automatic_verification"), PENDING_MANUAL_VERIFICATION("pending_manual_verification"), UNSENT("unsent"), MANUALLY_VERIFIED("manually_verified"), VERIFICATION_EXPIRED("verification_expired"), VERIFICATION_FAILED("verification_failed"), DATABASE_MATCHED("database_matched"), DATABASE_INSIGHTS_PASS("database_insights_pass"), DATABASE_INSIGHTS_PASS_WITH_CAUTION("database_insights_pass_with_caution"), DATABASE_INSIGHTS_FAIL("database_insights_fail"); private String value; VerificationStatusEnum(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static VerificationStatusEnum fromValue(String value) { for (VerificationStatusEnum b : VerificationStatusEnum.values()) { if (b.value.equals(value)) { return b; } } throw new IllegalArgumentException("Unexpected value '" + value + "'"); } public static class Adapter extends TypeAdapter<VerificationStatusEnum> { @Override public void write(final JsonWriter jsonWriter, final VerificationStatusEnum enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public VerificationStatusEnum read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return VerificationStatusEnum.fromValue(value); } } } public static final String SERIALIZED_NAME_VERIFICATION_STATUS = "verification_status"; @SerializedName(SERIALIZED_NAME_VERIFICATION_STATUS) private VerificationStatusEnum verificationStatus; public static final String SERIALIZED_NAME_VERIFICATION_NAME = "verification_name"; @SerializedName(SERIALIZED_NAME_VERIFICATION_NAME) private String verificationName; public static final String SERIALIZED_NAME_VERIFICATION_INSIGHTS = "verification_insights"; @SerializedName(SERIALIZED_NAME_VERIFICATION_INSIGHTS) private AccountVerificationInsights verificationInsights; public static final String SERIALIZED_NAME_PERSISTENT_ACCOUNT_ID = "persistent_account_id"; @SerializedName(SERIALIZED_NAME_PERSISTENT_ACCOUNT_ID) private String persistentAccountId; public static final String SERIALIZED_NAME_HOLDER_CATEGORY = "holder_category"; @SerializedName(SERIALIZED_NAME_HOLDER_CATEGORY) private AccountHolderCategory holderCategory; public static final String SERIALIZED_NAME_OWNERS = "owners"; @SerializedName(SERIALIZED_NAME_OWNERS) private List<Owner> owners = new ArrayList<>(); public static final String SERIALIZED_NAME_DOCUMENTS = "documents"; @SerializedName(SERIALIZED_NAME_DOCUMENTS) private List<IdentityDocumentUpload> documents = null; public AccountIdentityDocumentUpload 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 AccountIdentityDocumentUpload 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 AccountIdentityDocumentUpload 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 AccountIdentityDocumentUpload 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 AccountIdentityDocumentUpload 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 AccountIdentityDocumentUpload 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 AccountIdentityDocumentUpload 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 AccountIdentityDocumentUpload 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 AccountIdentityDocumentUpload 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 AccountIdentityDocumentUpload 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 AccountIdentityDocumentUpload 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 AccountIdentityDocumentUpload holderCategory(AccountHolderCategory holderCategory) { this.holderCategory = holderCategory; return this; } /** * Get holderCategory * @return holderCategory **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AccountHolderCategory getHolderCategory() { return holderCategory; } public void setHolderCategory(AccountHolderCategory holderCategory) { this.holderCategory = holderCategory; } public AccountIdentityDocumentUpload owners(List<Owner> owners) { this.owners = owners; return this; } public AccountIdentityDocumentUpload addOwnersItem(Owner ownersItem) { this.owners.add(ownersItem); return this; } /** * Data returned by the financial institution about the account owner or owners. Only returned by Identity or Assets endpoints. For business accounts, the name reported may be either the name of the individual or the name of the business, depending on the institution; detecting whether the linked account is a business account is not currently supported. Multiple owners on a single account will be represented in the same &#x60;owner&#x60; object, not in multiple owner objects within the array. In API versions 2018-05-22 and earlier, the &#x60;owners&#x60; object is not returned, and instead identity information is returned in the top level &#x60;identity&#x60; object. For more details, see [Plaid API versioning](https://plaid.com/docs/api/versioning/#version-2019-05-29) * @return owners **/ @ApiModelProperty(required = true, value = "Data returned by the financial institution about the account owner or owners. Only returned by Identity or Assets endpoints. For business accounts, the name reported may be either the name of the individual or the name of the business, depending on the institution; detecting whether the linked account is a business account is not currently supported. Multiple owners on a single account will be represented in the same `owner` object, not in multiple owner objects within the array. In API versions 2018-05-22 and earlier, the `owners` object is not returned, and instead identity information is returned in the top level `identity` object. For more details, see [Plaid API versioning](https://plaid.com/docs/api/versioning/#version-2019-05-29)") public List<Owner> getOwners() { return owners; } public void setOwners(List<Owner> owners) { this.owners = owners; } public AccountIdentityDocumentUpload documents(List<IdentityDocumentUpload> documents) { this.documents = documents; return this; } public AccountIdentityDocumentUpload addDocumentsItem(IdentityDocumentUpload documentsItem) { if (this.documents == null) { this.documents = new ArrayList<>(); } this.documents.add(documentsItem); return this; } /** * Data about the documents that were uploaded as proof of account ownership. * @return documents **/ @javax.annotation.Nullable @ApiModelProperty(value = "Data about the documents that were uploaded as proof of account ownership.") public List<IdentityDocumentUpload> getDocuments() { return documents; } public void setDocuments(List<IdentityDocumentUpload> documents) { this.documents = documents; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AccountIdentityDocumentUpload accountIdentityDocumentUpload = (AccountIdentityDocumentUpload) o; return Objects.equals(this.accountId, accountIdentityDocumentUpload.accountId) && Objects.equals(this.balances, accountIdentityDocumentUpload.balances) && Objects.equals(this.mask, accountIdentityDocumentUpload.mask) && Objects.equals(this.name, accountIdentityDocumentUpload.name) && Objects.equals(this.officialName, accountIdentityDocumentUpload.officialName) && Objects.equals(this.type, accountIdentityDocumentUpload.type) && Objects.equals(this.subtype, accountIdentityDocumentUpload.subtype) && Objects.equals(this.verificationStatus, accountIdentityDocumentUpload.verificationStatus) && Objects.equals(this.verificationName, accountIdentityDocumentUpload.verificationName) && Objects.equals(this.verificationInsights, accountIdentityDocumentUpload.verificationInsights) && Objects.equals(this.persistentAccountId, accountIdentityDocumentUpload.persistentAccountId) && Objects.equals(this.holderCategory, accountIdentityDocumentUpload.holderCategory) && Objects.equals(this.owners, accountIdentityDocumentUpload.owners) && Objects.equals(this.documents, accountIdentityDocumentUpload.documents); } @Override public int hashCode() { return Objects.hash(accountId, balances, mask, name, officialName, type, subtype, verificationStatus, verificationName, verificationInsights, persistentAccountId, holderCategory, owners, documents); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AccountIdentityDocumentUpload {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" balances: ").append(toIndentedString(balances)).append("\n"); sb.append(" mask: ").append(toIndentedString(mask)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" officialName: ").append(toIndentedString(officialName)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" subtype: ").append(toIndentedString(subtype)).append("\n"); sb.append(" verificationStatus: ").append(toIndentedString(verificationStatus)).append("\n"); sb.append(" verificationName: ").append(toIndentedString(verificationName)).append("\n"); sb.append(" verificationInsights: ").append(toIndentedString(verificationInsights)).append("\n"); sb.append(" persistentAccountId: ").append(toIndentedString(persistentAccountId)).append("\n"); sb.append(" holderCategory: ").append(toIndentedString(holderCategory)).append("\n"); sb.append(" owners: ").append(toIndentedString(owners)).append("\n"); sb.append(" documents: ").append(toIndentedString(documents)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/NumbersBACSNullable.java
src/main/java/com/plaid/client/model/NumbersBACSNullable.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.NumbersBACS; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Identifying information for transferring money to or from a UK bank account via BACS. */ @ApiModel(description = "Identifying information for transferring money to or from a UK bank account via BACS.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class NumbersBACSNullable { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) private String account; public static final String SERIALIZED_NAME_SORT_CODE = "sort_code"; @SerializedName(SERIALIZED_NAME_SORT_CODE) private String sortCode; public NumbersBACSNullable 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 NumbersBACSNullable account(String account) { this.account = account; return this; } /** * The BACS account number for the account * @return account **/ @ApiModelProperty(required = true, value = "The BACS account number for the account") public String getAccount() { return account; } public void setAccount(String account) { this.account = account; } public NumbersBACSNullable sortCode(String sortCode) { this.sortCode = sortCode; return this; } /** * The BACS sort code for the account * @return sortCode **/ @ApiModelProperty(required = true, value = "The BACS sort code for the account") public String getSortCode() { return sortCode; } public void setSortCode(String sortCode) { this.sortCode = sortCode; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } NumbersBACSNullable numbersBACSNullable = (NumbersBACSNullable) o; return Objects.equals(this.accountId, numbersBACSNullable.accountId) && Objects.equals(this.account, numbersBACSNullable.account) && Objects.equals(this.sortCode, numbersBACSNullable.sortCode); } @Override public int hashCode() { return Objects.hash(accountId, account, sortCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class NumbersBACSNullable {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" account: ").append(toIndentedString(account)).append("\n"); sb.append(" sortCode: ").append(toIndentedString(sortCode)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProtectIncidentAmount.java
src/main/java/com/plaid/client/model/ProtectIncidentAmount.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 monetary amount associated with the incident. */ @ApiModel(description = "The monetary amount associated with the incident.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProtectIncidentAmount { public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code"; @SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE) private String isoCurrencyCode = "USD"; public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) private Double value; public ProtectIncidentAmount isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO-4217 currency code of the incident amount. Defaults to &#x60;USD&#x60; if not specified. * @return isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ISO-4217 currency code of the incident amount. Defaults to `USD` if not specified.") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public ProtectIncidentAmount value(Double value) { this.value = value; return this; } /** * The monetary value of the incident amount. * @return value **/ @ApiModelProperty(required = true, value = "The monetary value of the incident amount.") public Double getValue() { return value; } public void setValue(Double value) { this.value = value; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProtectIncidentAmount protectIncidentAmount = (ProtectIncidentAmount) o; return Objects.equals(this.isoCurrencyCode, protectIncidentAmount.isoCurrencyCode) && Objects.equals(this.value, protectIncidentAmount.value); } @Override public int hashCode() { return Objects.hash(isoCurrencyCode, value); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProtectIncidentAmount {\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append(" value: ").append(toIndentedString(value)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferAuthorizationUserInRequest.java
src/main/java/com/plaid/client/model/TransferAuthorizationUserInRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.TransferUserAddressInRequest; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The legal name and other information for the account holder. If the account has multiple account holders, provide the information for the account holder on whose behalf the authorization is being requested. The &#x60;user.legal_name&#x60; field is required. Other fields are not currently used and are present to support planned future functionality. */ @ApiModel(description = "The legal name and other information for the account holder. If the account has multiple account holders, provide the information for the account holder on whose behalf the authorization is being requested. The `user.legal_name` field is required. Other fields are not currently used and are present to support planned future functionality.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferAuthorizationUserInRequest { public static final String SERIALIZED_NAME_LEGAL_NAME = "legal_name"; @SerializedName(SERIALIZED_NAME_LEGAL_NAME) private String legalName; public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBER) private String phoneNumber; public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) private String emailAddress; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private TransferUserAddressInRequest address; public TransferAuthorizationUserInRequest legalName(String legalName) { this.legalName = legalName; return this; } /** * The user&#39;s legal name. If the user is a business, provide the business name. * @return legalName **/ @ApiModelProperty(required = true, value = "The user's legal name. If the user is a business, provide the business name.") public String getLegalName() { return legalName; } public void setLegalName(String legalName) { this.legalName = legalName; } public TransferAuthorizationUserInRequest phoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; return this; } /** * The user&#39;s phone number. * @return phoneNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's phone number.") public String getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } public TransferAuthorizationUserInRequest 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 TransferAuthorizationUserInRequest address(TransferUserAddressInRequest address) { this.address = address; return this; } /** * Get address * @return address **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransferUserAddressInRequest getAddress() { return address; } public void setAddress(TransferUserAddressInRequest address) { this.address = address; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferAuthorizationUserInRequest transferAuthorizationUserInRequest = (TransferAuthorizationUserInRequest) o; return Objects.equals(this.legalName, transferAuthorizationUserInRequest.legalName) && Objects.equals(this.phoneNumber, transferAuthorizationUserInRequest.phoneNumber) && Objects.equals(this.emailAddress, transferAuthorizationUserInRequest.emailAddress) && Objects.equals(this.address, transferAuthorizationUserInRequest.address); } @Override public int hashCode() { return Objects.hash(legalName, phoneNumber, emailAddress, address); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferAuthorizationUserInRequest {\n"); sb.append(" legalName: ").append(toIndentedString(legalName)).append("\n"); sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n"); sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaystubOverridePayPeriodDetails.java
src/main/java/com/plaid/client/model/PaystubOverridePayPeriodDetails.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.PayPeriodDetailsPayFrequency; import com.plaid.client.model.PaystubOverrideDistributionBreakdown; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; import java.util.ArrayList; import java.util.List; /** * Details about the pay period. */ @ApiModel(description = "Details about the pay period.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaystubOverridePayPeriodDetails { public static final String SERIALIZED_NAME_CHECK_AMOUNT = "check_amount"; @SerializedName(SERIALIZED_NAME_CHECK_AMOUNT) private Double checkAmount; public static final String SERIALIZED_NAME_DISTRIBUTION_BREAKDOWN = "distribution_breakdown"; @SerializedName(SERIALIZED_NAME_DISTRIBUTION_BREAKDOWN) private List<PaystubOverrideDistributionBreakdown> distributionBreakdown = null; public static final String SERIALIZED_NAME_END_DATE = "end_date"; @SerializedName(SERIALIZED_NAME_END_DATE) private LocalDate endDate; public static final String SERIALIZED_NAME_GROSS_EARNINGS = "gross_earnings"; @SerializedName(SERIALIZED_NAME_GROSS_EARNINGS) private Double grossEarnings; public static final String SERIALIZED_NAME_PAY_DATE = "pay_date"; @SerializedName(SERIALIZED_NAME_PAY_DATE) private LocalDate payDate; public static final String SERIALIZED_NAME_PAY_FREQUENCY = "pay_frequency"; @SerializedName(SERIALIZED_NAME_PAY_FREQUENCY) private PayPeriodDetailsPayFrequency payFrequency; public static final String SERIALIZED_NAME_PAY_DAY = "pay_day"; @SerializedName(SERIALIZED_NAME_PAY_DAY) private LocalDate payDay; public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) private LocalDate startDate; public PaystubOverridePayPeriodDetails checkAmount(Double checkAmount) { this.checkAmount = checkAmount; return this; } /** * The amount of the paycheck. * @return checkAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The amount of the paycheck.") public Double getCheckAmount() { return checkAmount; } public void setCheckAmount(Double checkAmount) { this.checkAmount = checkAmount; } public PaystubOverridePayPeriodDetails distributionBreakdown(List<PaystubOverrideDistributionBreakdown> distributionBreakdown) { this.distributionBreakdown = distributionBreakdown; return this; } public PaystubOverridePayPeriodDetails addDistributionBreakdownItem(PaystubOverrideDistributionBreakdown distributionBreakdownItem) { if (this.distributionBreakdown == null) { this.distributionBreakdown = new ArrayList<>(); } this.distributionBreakdown.add(distributionBreakdownItem); return this; } /** * Get distributionBreakdown * @return distributionBreakdown **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public List<PaystubOverrideDistributionBreakdown> getDistributionBreakdown() { return distributionBreakdown; } public void setDistributionBreakdown(List<PaystubOverrideDistributionBreakdown> distributionBreakdown) { this.distributionBreakdown = distributionBreakdown; } public PaystubOverridePayPeriodDetails endDate(LocalDate endDate) { this.endDate = endDate; return this; } /** * The pay period end date, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format: \&quot;yyyy-mm-dd\&quot;. * @return endDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The pay period end date, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format: \"yyyy-mm-dd\".") public LocalDate getEndDate() { return endDate; } public void setEndDate(LocalDate endDate) { this.endDate = endDate; } public PaystubOverridePayPeriodDetails grossEarnings(Double grossEarnings) { this.grossEarnings = grossEarnings; return this; } /** * Total earnings before tax/deductions. * @return grossEarnings **/ @javax.annotation.Nullable @ApiModelProperty(value = "Total earnings before tax/deductions.") public Double getGrossEarnings() { return grossEarnings; } public void setGrossEarnings(Double grossEarnings) { this.grossEarnings = grossEarnings; } public PaystubOverridePayPeriodDetails payDate(LocalDate payDate) { this.payDate = payDate; return this; } /** * The date on which the paystub was issued, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (\&quot;yyyy-mm-dd\&quot;). * @return payDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date on which the paystub was issued, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (\"yyyy-mm-dd\").") public LocalDate getPayDate() { return payDate; } public void setPayDate(LocalDate payDate) { this.payDate = payDate; } public PaystubOverridePayPeriodDetails payFrequency(PayPeriodDetailsPayFrequency payFrequency) { this.payFrequency = payFrequency; return this; } /** * Get payFrequency * @return payFrequency **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PayPeriodDetailsPayFrequency getPayFrequency() { return payFrequency; } public void setPayFrequency(PayPeriodDetailsPayFrequency payFrequency) { this.payFrequency = payFrequency; } public PaystubOverridePayPeriodDetails payDay(LocalDate payDay) { this.payDay = payDay; return this; } /** * The date on which the paystub was issued, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (\&quot;yyyy-mm-dd\&quot;). * @return payDay **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date on which the paystub was issued, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (\"yyyy-mm-dd\").") public LocalDate getPayDay() { return payDay; } public void setPayDay(LocalDate payDay) { this.payDay = payDay; } public PaystubOverridePayPeriodDetails startDate(LocalDate startDate) { this.startDate = startDate; return this; } /** * The pay period start date, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format: \&quot;yyyy-mm-dd\&quot;. * @return startDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The pay period start date, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format: \"yyyy-mm-dd\".") public LocalDate getStartDate() { return startDate; } public void setStartDate(LocalDate startDate) { this.startDate = startDate; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaystubOverridePayPeriodDetails paystubOverridePayPeriodDetails = (PaystubOverridePayPeriodDetails) o; return Objects.equals(this.checkAmount, paystubOverridePayPeriodDetails.checkAmount) && Objects.equals(this.distributionBreakdown, paystubOverridePayPeriodDetails.distributionBreakdown) && Objects.equals(this.endDate, paystubOverridePayPeriodDetails.endDate) && Objects.equals(this.grossEarnings, paystubOverridePayPeriodDetails.grossEarnings) && Objects.equals(this.payDate, paystubOverridePayPeriodDetails.payDate) && Objects.equals(this.payFrequency, paystubOverridePayPeriodDetails.payFrequency) && Objects.equals(this.payDay, paystubOverridePayPeriodDetails.payDay) && Objects.equals(this.startDate, paystubOverridePayPeriodDetails.startDate); } @Override public int hashCode() { return Objects.hash(checkAmount, distributionBreakdown, endDate, grossEarnings, payDate, payFrequency, payDay, startDate); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaystubOverridePayPeriodDetails {\n"); sb.append(" checkAmount: ").append(toIndentedString(checkAmount)).append("\n"); sb.append(" distributionBreakdown: ").append(toIndentedString(distributionBreakdown)).append("\n"); sb.append(" endDate: ").append(toIndentedString(endDate)).append("\n"); sb.append(" grossEarnings: ").append(toIndentedString(grossEarnings)).append("\n"); sb.append(" payDate: ").append(toIndentedString(payDate)).append("\n"); sb.append(" payFrequency: ").append(toIndentedString(payFrequency)).append("\n"); sb.append(" payDay: ").append(toIndentedString(payDay)).append("\n"); sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferPlatformPersonIDNumber.java
src/main/java/com/plaid/client/model/TransferPlatformPersonIDNumber.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.IDNumberType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * ID number of the person */ @ApiModel(description = "ID number of the person") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferPlatformPersonIDNumber { public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) private String value; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private IDNumberType type; public TransferPlatformPersonIDNumber value(String value) { this.value = value; return this; } /** * Value of the person&#39;s ID Number. Alpha-numeric, with all formatting characters stripped. * @return value **/ @ApiModelProperty(example = "123456789", required = true, value = "Value of the person's ID Number. Alpha-numeric, with all formatting characters stripped.") public String getValue() { return value; } public void setValue(String value) { this.value = value; } public TransferPlatformPersonIDNumber type(IDNumberType type) { this.type = type; return this; } /** * Get type * @return type **/ @ApiModelProperty(required = true, value = "") public IDNumberType getType() { return type; } public void setType(IDNumberType type) { this.type = type; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferPlatformPersonIDNumber transferPlatformPersonIDNumber = (TransferPlatformPersonIDNumber) o; return Objects.equals(this.value, transferPlatformPersonIDNumber.value) && Objects.equals(this.type, transferPlatformPersonIDNumber.type); } @Override public int hashCode() { return Objects.hash(value, type); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferPlatformPersonIDNumber {\n"); sb.append(" value: ").append(toIndentedString(value)).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/TransactionsSyncRequestOptions.java
src/main/java/com/plaid/client/model/TransactionsSyncRequestOptions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.PersonalFinanceCategoryVersion; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An optional object to be used with the request. If specified, &#x60;options&#x60; must not be &#x60;null&#x60;. */ @ApiModel(description = "An optional object to be used with the request. If specified, `options` must not be `null`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionsSyncRequestOptions { public static final String SERIALIZED_NAME_INCLUDE_ORIGINAL_DESCRIPTION = "include_original_description"; @SerializedName(SERIALIZED_NAME_INCLUDE_ORIGINAL_DESCRIPTION) private Boolean includeOriginalDescription = false; public static final String SERIALIZED_NAME_INCLUDE_PERSONAL_FINANCE_CATEGORY = "include_personal_finance_category"; @SerializedName(SERIALIZED_NAME_INCLUDE_PERSONAL_FINANCE_CATEGORY) private Boolean includePersonalFinanceCategory = false; public static final String SERIALIZED_NAME_INCLUDE_LOGO_AND_COUNTERPARTY_BETA = "include_logo_and_counterparty_beta"; @SerializedName(SERIALIZED_NAME_INCLUDE_LOGO_AND_COUNTERPARTY_BETA) private Boolean includeLogoAndCounterpartyBeta = false; public static final String SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY_VERSION = "personal_finance_category_version"; @SerializedName(SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY_VERSION) private PersonalFinanceCategoryVersion personalFinanceCategoryVersion; public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) private Integer daysRequested = 90; public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public TransactionsSyncRequestOptions includeOriginalDescription(Boolean includeOriginalDescription) { this.includeOriginalDescription = includeOriginalDescription; return this; } /** * Include the raw unparsed transaction description from the financial institution. * @return includeOriginalDescription **/ @javax.annotation.Nullable @ApiModelProperty(value = "Include the raw unparsed transaction description from the financial institution.") public Boolean getIncludeOriginalDescription() { return includeOriginalDescription; } public void setIncludeOriginalDescription(Boolean includeOriginalDescription) { this.includeOriginalDescription = includeOriginalDescription; } public TransactionsSyncRequestOptions includePersonalFinanceCategory(Boolean includePersonalFinanceCategory) { this.includePersonalFinanceCategory = includePersonalFinanceCategory; return this; } /** * Personal finance categories are now returned by default. * @return includePersonalFinanceCategory **/ @javax.annotation.Nullable @ApiModelProperty(value = "Personal finance categories are now returned by default.") public Boolean getIncludePersonalFinanceCategory() { return includePersonalFinanceCategory; } public void setIncludePersonalFinanceCategory(Boolean includePersonalFinanceCategory) { this.includePersonalFinanceCategory = includePersonalFinanceCategory; } public TransactionsSyncRequestOptions includeLogoAndCounterpartyBeta(Boolean includeLogoAndCounterpartyBeta) { this.includeLogoAndCounterpartyBeta = includeLogoAndCounterpartyBeta; return this; } /** * Counterparties and extra merchant fields are now returned by default. * @return includeLogoAndCounterpartyBeta **/ @javax.annotation.Nullable @ApiModelProperty(value = "Counterparties and extra merchant fields are now returned by default.") public Boolean getIncludeLogoAndCounterpartyBeta() { return includeLogoAndCounterpartyBeta; } public void setIncludeLogoAndCounterpartyBeta(Boolean includeLogoAndCounterpartyBeta) { this.includeLogoAndCounterpartyBeta = includeLogoAndCounterpartyBeta; } public TransactionsSyncRequestOptions personalFinanceCategoryVersion(PersonalFinanceCategoryVersion personalFinanceCategoryVersion) { this.personalFinanceCategoryVersion = personalFinanceCategoryVersion; return this; } /** * Get personalFinanceCategoryVersion * @return personalFinanceCategoryVersion **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PersonalFinanceCategoryVersion getPersonalFinanceCategoryVersion() { return personalFinanceCategoryVersion; } public void setPersonalFinanceCategoryVersion(PersonalFinanceCategoryVersion personalFinanceCategoryVersion) { this.personalFinanceCategoryVersion = personalFinanceCategoryVersion; } public TransactionsSyncRequestOptions daysRequested(Integer daysRequested) { this.daysRequested = daysRequested; return this; } /** * This field only applies to calls for Items where the Transactions product has not already been initialized (i.e., by specifying &#x60;transactions&#x60; in the &#x60;products&#x60;, &#x60;required_if_supported_products&#x60;, or &#x60;optional_products&#x60; array when calling &#x60;/link/token/create&#x60; or by making a previous call to &#x60;/transactions/sync&#x60; or &#x60;/transactions/get&#x60;). In those cases, the field controls the maximum number of days of transaction history that Plaid will request from the financial institution. The more transaction history is requested, the longer the historical update poll will take. If no value is specified, 90 days of history will be requested by default. If you are initializing your Items with transactions during the &#x60;/link/token/create&#x60; call (e.g. by including &#x60;transactions&#x60; in the &#x60;/link/token/create&#x60; &#x60;products&#x60; array), you must use the [&#x60;transactions.days_requested&#x60;](https://plaid.com/docs/api/link/#link-token-create-request-transactions-days-requested) field in the &#x60;/link/token/create&#x60; request instead of in the &#x60;/transactions/sync&#x60; request. If the Item has already been initialized with the Transactions product, this field will have no effect. The maximum amount of transaction history to request on an Item cannot be updated if Transactions has already been added to the Item. To request older transaction history on an Item where Transactions has already been added, you must delete the Item via &#x60;/item/remove&#x60; and send the user through Link to create a new Item. Customers using [Recurring Transactions](https://plaid.com/docs/api/products/transactions/#transactionsrecurringget) should request at least 180 days of history for optimal results. * minimum: 1 * maximum: 730 * @return daysRequested **/ @javax.annotation.Nullable @ApiModelProperty(value = "This field only applies to calls for Items where the Transactions product has not already been initialized (i.e., by specifying `transactions` in the `products`, `required_if_supported_products`, or `optional_products` array when calling `/link/token/create` or by making a previous call to `/transactions/sync` or `/transactions/get`). In those cases, the field controls the maximum number of days of transaction history that Plaid will request from the financial institution. The more transaction history is requested, the longer the historical update poll will take. If no value is specified, 90 days of history will be requested by default. If you are initializing your Items with transactions during the `/link/token/create` call (e.g. by including `transactions` in the `/link/token/create` `products` array), you must use the [`transactions.days_requested`](https://plaid.com/docs/api/link/#link-token-create-request-transactions-days-requested) field in the `/link/token/create` request instead of in the `/transactions/sync` request. If the Item has already been initialized with the Transactions product, this field will have no effect. The maximum amount of transaction history to request on an Item cannot be updated if Transactions has already been added to the Item. To request older transaction history on an Item where Transactions has already been added, you must delete the Item via `/item/remove` and send the user through Link to create a new Item. Customers using [Recurring Transactions](https://plaid.com/docs/api/products/transactions/#transactionsrecurringget) should request at least 180 days of history for optimal results.") public Integer getDaysRequested() { return daysRequested; } public void setDaysRequested(Integer daysRequested) { this.daysRequested = daysRequested; } public TransactionsSyncRequestOptions accountId(String accountId) { this.accountId = accountId; return this; } /** * If provided, the returned updates and cursor will only reflect the specified account&#39;s transactions. Omitting &#x60;account_id&#x60; returns updates for all accounts under the Item. Note that specifying an &#x60;account_id&#x60; effectively creates a separate incremental update stream—and therefore a separate cursor—for that account. If multiple accounts are queried this way, you will maintain multiple cursors, one per &#x60;account_id&#x60;. If you decide to begin filtering by &#x60;account_id&#x60; after using no &#x60;account_id&#x60;, start fresh with a null cursor and maintain separate &#x60;(account_id, cursor)&#x60; pairs going forward. Do not reuse any previously saved cursors, as this can cause pagination errors or incomplete data. Note: An error will be returned if a provided &#x60;account_id&#x60; is not associated with the Item. * @return accountId **/ @javax.annotation.Nullable @ApiModelProperty(value = "If provided, the returned updates and cursor will only reflect the specified account's transactions. Omitting `account_id` returns updates for all accounts under the Item. Note that specifying an `account_id` effectively creates a separate incremental update stream—and therefore a separate cursor—for that account. If multiple accounts are queried this way, you will maintain multiple cursors, one per `account_id`. If you decide to begin filtering by `account_id` after using no `account_id`, start fresh with a null cursor and maintain separate `(account_id, cursor)` pairs going forward. Do not reuse any previously saved cursors, as this can cause pagination errors or incomplete data. Note: An error will be returned if a provided `account_id` is not associated with the 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; } TransactionsSyncRequestOptions transactionsSyncRequestOptions = (TransactionsSyncRequestOptions) o; return Objects.equals(this.includeOriginalDescription, transactionsSyncRequestOptions.includeOriginalDescription) && Objects.equals(this.includePersonalFinanceCategory, transactionsSyncRequestOptions.includePersonalFinanceCategory) && Objects.equals(this.includeLogoAndCounterpartyBeta, transactionsSyncRequestOptions.includeLogoAndCounterpartyBeta) && Objects.equals(this.personalFinanceCategoryVersion, transactionsSyncRequestOptions.personalFinanceCategoryVersion) && Objects.equals(this.daysRequested, transactionsSyncRequestOptions.daysRequested) && Objects.equals(this.accountId, transactionsSyncRequestOptions.accountId); } @Override public int hashCode() { return Objects.hash(includeOriginalDescription, includePersonalFinanceCategory, includeLogoAndCounterpartyBeta, personalFinanceCategoryVersion, daysRequested, accountId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsSyncRequestOptions {\n"); sb.append(" includeOriginalDescription: ").append(toIndentedString(includeOriginalDescription)).append("\n"); sb.append(" includePersonalFinanceCategory: ").append(toIndentedString(includePersonalFinanceCategory)).append("\n"); sb.append(" includeLogoAndCounterpartyBeta: ").append(toIndentedString(includeLogoAndCounterpartyBeta)).append("\n"); sb.append(" personalFinanceCategoryVersion: ").append(toIndentedString(personalFinanceCategoryVersion)).append("\n"); sb.append(" daysRequested: ").append(toIndentedString(daysRequested)).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/Pay.java
src/main/java/com/plaid/client/model/Pay.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 a monetary amount. */ @ApiModel(description = "An object representing a monetary amount.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Pay { public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private Double amount; public static final String SERIALIZED_NAME_CURRENCY = "currency"; @SerializedName(SERIALIZED_NAME_CURRENCY) private String currency; public Pay amount(Double amount) { this.amount = amount; return this; } /** * A numerical amount of a specific currency. * @return amount **/ @javax.annotation.Nullable @ApiModelProperty(value = "A numerical amount of a specific currency.") public Double getAmount() { return amount; } public void setAmount(Double amount) { this.amount = amount; } public Pay currency(String currency) { this.currency = currency; return this; } /** * Currency code, e.g. USD * @return currency **/ @javax.annotation.Nullable @ApiModelProperty(value = "Currency code, e.g. USD") public String getCurrency() { return currency; } public void setCurrency(String currency) { this.currency = currency; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Pay pay = (Pay) o; return Objects.equals(this.amount, pay.amount) && Objects.equals(this.currency, pay.currency); } @Override public int hashCode() { return Objects.hash(amount, currency); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Pay {\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" currency: ").append(toIndentedString(currency)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SignalReturnReportResponse.java
src/main/java/com/plaid/client/model/SignalReturnReportResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * SignalReturnReportResponse defines the response schema for &#x60;/signal/return/report&#x60; */ @ApiModel(description = "SignalReturnReportResponse defines the response schema for `/signal/return/report`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SignalReturnReportResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public SignalReturnReportResponse 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; } SignalReturnReportResponse signalReturnReportResponse = (SignalReturnReportResponse) o; return Objects.equals(this.requestId, signalReturnReportResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SignalReturnReportResponse {\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/TransferPlatformOriginatorCreateRequest.java
src/main/java/com/plaid/client/model/TransferPlatformOriginatorCreateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.TransferPlatformTOSAcceptanceMetadata; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * Defines the request schema for &#x60;/transfer/platform/originator/create&#x60; */ @ApiModel(description = "Defines the request 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 TransferPlatformOriginatorCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_ORIGINATOR_CLIENT_ID = "originator_client_id"; @SerializedName(SERIALIZED_NAME_ORIGINATOR_CLIENT_ID) private String originatorClientId; public static final String SERIALIZED_NAME_TOS_ACCEPTANCE_METADATA = "tos_acceptance_metadata"; @SerializedName(SERIALIZED_NAME_TOS_ACCEPTANCE_METADATA) private TransferPlatformTOSAcceptanceMetadata tosAcceptanceMetadata; public static final String SERIALIZED_NAME_ORIGINATOR_REVIEWED_AT = "originator_reviewed_at"; @SerializedName(SERIALIZED_NAME_ORIGINATOR_REVIEWED_AT) private OffsetDateTime originatorReviewedAt; public static final String SERIALIZED_NAME_WEBHOOK = "webhook"; @SerializedName(SERIALIZED_NAME_WEBHOOK) private String webhook; public TransferPlatformOriginatorCreateRequest 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 TransferPlatformOriginatorCreateRequest 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 TransferPlatformOriginatorCreateRequest originatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; return this; } /** * The client ID of the originator * @return originatorClientId **/ @ApiModelProperty(required = true, value = "The client ID of the originator") public String getOriginatorClientId() { return originatorClientId; } public void setOriginatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; } public TransferPlatformOriginatorCreateRequest tosAcceptanceMetadata(TransferPlatformTOSAcceptanceMetadata tosAcceptanceMetadata) { this.tosAcceptanceMetadata = tosAcceptanceMetadata; return this; } /** * Get tosAcceptanceMetadata * @return tosAcceptanceMetadata **/ @ApiModelProperty(required = true, value = "") public TransferPlatformTOSAcceptanceMetadata getTosAcceptanceMetadata() { return tosAcceptanceMetadata; } public void setTosAcceptanceMetadata(TransferPlatformTOSAcceptanceMetadata tosAcceptanceMetadata) { this.tosAcceptanceMetadata = tosAcceptanceMetadata; } public TransferPlatformOriginatorCreateRequest originatorReviewedAt(OffsetDateTime originatorReviewedAt) { this.originatorReviewedAt = originatorReviewedAt; return this; } /** * ISO8601 timestamp indicating the most recent time the platform collected onboarding data from the originator * @return originatorReviewedAt **/ @ApiModelProperty(required = true, value = "ISO8601 timestamp indicating the most recent time the platform collected onboarding data from the originator") public OffsetDateTime getOriginatorReviewedAt() { return originatorReviewedAt; } public void setOriginatorReviewedAt(OffsetDateTime originatorReviewedAt) { this.originatorReviewedAt = originatorReviewedAt; } public TransferPlatformOriginatorCreateRequest webhook(String webhook) { this.webhook = webhook; return this; } /** * The webhook URL to which a &#x60;PLATFORM_ONBOARDING_UPDATE&#x60; webhook should be sent. * @return webhook **/ @javax.annotation.Nullable @ApiModelProperty(value = "The webhook URL to which a `PLATFORM_ONBOARDING_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; } TransferPlatformOriginatorCreateRequest transferPlatformOriginatorCreateRequest = (TransferPlatformOriginatorCreateRequest) o; return Objects.equals(this.clientId, transferPlatformOriginatorCreateRequest.clientId) && Objects.equals(this.secret, transferPlatformOriginatorCreateRequest.secret) && Objects.equals(this.originatorClientId, transferPlatformOriginatorCreateRequest.originatorClientId) && Objects.equals(this.tosAcceptanceMetadata, transferPlatformOriginatorCreateRequest.tosAcceptanceMetadata) && Objects.equals(this.originatorReviewedAt, transferPlatformOriginatorCreateRequest.originatorReviewedAt) && Objects.equals(this.webhook, transferPlatformOriginatorCreateRequest.webhook); } @Override public int hashCode() { return Objects.hash(clientId, secret, originatorClientId, tosAcceptanceMetadata, originatorReviewedAt, webhook); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferPlatformOriginatorCreateRequest {\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(" tosAcceptanceMetadata: ").append(toIndentedString(tosAcceptanceMetadata)).append("\n"); sb.append(" originatorReviewedAt: ").append(toIndentedString(originatorReviewedAt)).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/Party.java
src/main/java/com/plaid/client/model/Party.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.PartyIndividual; import com.plaid.client.model.Roles; import com.plaid.client.model.TaxpayerIdentifiers; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * A collection of information about a single party to a transaction. Included direct participants like the borrower and seller as well as indirect participants such as the flood certificate provider. */ @ApiModel(description = "A collection of information about a single party to a transaction. Included direct participants like the borrower and seller as well as indirect participants such as the flood certificate provider.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Party { public static final String SERIALIZED_NAME_I_N_D_I_V_I_D_U_A_L = "INDIVIDUAL"; @SerializedName(SERIALIZED_NAME_I_N_D_I_V_I_D_U_A_L) private PartyIndividual INDIVIDUAL; public static final String SERIALIZED_NAME_R_O_L_E_S = "ROLES"; @SerializedName(SERIALIZED_NAME_R_O_L_E_S) private Roles ROLES; public static final String SERIALIZED_NAME_T_A_X_P_A_Y_E_R_I_D_E_N_T_I_F_I_E_R_S = "TAXPAYER_IDENTIFIERS"; @SerializedName(SERIALIZED_NAME_T_A_X_P_A_Y_E_R_I_D_E_N_T_I_F_I_E_R_S) private TaxpayerIdentifiers TAXPAYER_IDENTIFIERS; public Party INDIVIDUAL(PartyIndividual INDIVIDUAL) { this.INDIVIDUAL = INDIVIDUAL; return this; } /** * Get INDIVIDUAL * @return INDIVIDUAL **/ @ApiModelProperty(required = true, value = "") public PartyIndividual getINDIVIDUAL() { return INDIVIDUAL; } public void setINDIVIDUAL(PartyIndividual INDIVIDUAL) { this.INDIVIDUAL = INDIVIDUAL; } public Party ROLES(Roles ROLES) { this.ROLES = ROLES; return this; } /** * Get ROLES * @return ROLES **/ @ApiModelProperty(required = true, value = "") public Roles getROLES() { return ROLES; } public void setROLES(Roles ROLES) { this.ROLES = ROLES; } public Party TAXPAYER_IDENTIFIERS(TaxpayerIdentifiers TAXPAYER_IDENTIFIERS) { this.TAXPAYER_IDENTIFIERS = TAXPAYER_IDENTIFIERS; return this; } /** * Get TAXPAYER_IDENTIFIERS * @return TAXPAYER_IDENTIFIERS **/ @ApiModelProperty(required = true, value = "") public TaxpayerIdentifiers getTAXPAYERIDENTIFIERS() { return TAXPAYER_IDENTIFIERS; } public void setTAXPAYERIDENTIFIERS(TaxpayerIdentifiers TAXPAYER_IDENTIFIERS) { this.TAXPAYER_IDENTIFIERS = TAXPAYER_IDENTIFIERS; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Party party = (Party) o; return Objects.equals(this.INDIVIDUAL, party.INDIVIDUAL) && Objects.equals(this.ROLES, party.ROLES) && Objects.equals(this.TAXPAYER_IDENTIFIERS, party.TAXPAYER_IDENTIFIERS); } @Override public int hashCode() { return Objects.hash(INDIVIDUAL, ROLES, TAXPAYER_IDENTIFIERS); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Party {\n"); sb.append(" INDIVIDUAL: ").append(toIndentedString(INDIVIDUAL)).append("\n"); sb.append(" ROLES: ").append(toIndentedString(ROLES)).append("\n"); sb.append(" TAXPAYER_IDENTIFIERS: ").append(toIndentedString(TAXPAYER_IDENTIFIERS)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ScreeningHitDocumentsItems.java
src/main/java/com/plaid/client/model/ScreeningHitDocumentsItems.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.MatchSummary; import com.plaid.client.model.WatchlistScreeningDocument; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Analyzed document information for the associated hit */ @ApiModel(description = "Analyzed document information for the associated hit") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ScreeningHitDocumentsItems { public static final String SERIALIZED_NAME_ANALYSIS = "analysis"; @SerializedName(SERIALIZED_NAME_ANALYSIS) private MatchSummary analysis; public static final String SERIALIZED_NAME_DATA = "data"; @SerializedName(SERIALIZED_NAME_DATA) private WatchlistScreeningDocument data; public ScreeningHitDocumentsItems analysis(MatchSummary analysis) { this.analysis = analysis; return this; } /** * Get analysis * @return analysis **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public MatchSummary getAnalysis() { return analysis; } public void setAnalysis(MatchSummary analysis) { this.analysis = analysis; } public ScreeningHitDocumentsItems data(WatchlistScreeningDocument data) { this.data = data; return this; } /** * Get data * @return data **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public WatchlistScreeningDocument getData() { return data; } public void setData(WatchlistScreeningDocument data) { this.data = data; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ScreeningHitDocumentsItems screeningHitDocumentsItems = (ScreeningHitDocumentsItems) o; return Objects.equals(this.analysis, screeningHitDocumentsItems.analysis) && Objects.equals(this.data, screeningHitDocumentsItems.data); } @Override public int hashCode() { return Objects.hash(analysis, data); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ScreeningHitDocumentsItems {\n"); sb.append(" analysis: ").append(toIndentedString(analysis)).append("\n"); sb.append(" data: ").append(toIndentedString(data)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferMigrateAccountResponse.java
src/main/java/com/plaid/client/model/TransferMigrateAccountResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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/migrate_account&#x60; */ @ApiModel(description = "Defines the response schema for `/transfer/migrate_account`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferMigrateAccountResponse { 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_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public TransferMigrateAccountResponse accessToken(String accessToken) { this.accessToken = accessToken; return this; } /** * The Plaid &#x60;access_token&#x60; for the newly created Item. * @return accessToken **/ @ApiModelProperty(required = true, value = "The Plaid `access_token` for the newly created Item.") public String getAccessToken() { return accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; } public TransferMigrateAccountResponse 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; } public TransferMigrateAccountResponse 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; } TransferMigrateAccountResponse transferMigrateAccountResponse = (TransferMigrateAccountResponse) o; return Objects.equals(this.accessToken, transferMigrateAccountResponse.accessToken) && Objects.equals(this.accountId, transferMigrateAccountResponse.accountId) && Objects.equals(this.requestId, transferMigrateAccountResponse.requestId); } @Override public int hashCode() { return Objects.hash(accessToken, accountId, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferMigrateAccountResponse {\n"); sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).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/ProductPermissionsRequiredIdentityWebhook.java
src/main/java/com/plaid/client/model/ProductPermissionsRequiredIdentityWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Fired when an &#x60;ACCESS_NOT_GRANTED&#x60; error is hit for Identity. The error can be resolved by putting the user through update mode with &#x60;identity&#x60; in the &#x60;products&#x60; array, as well as through the limited beta for update mode Identity product validations. */ @ApiModel(description = "Fired when an `ACCESS_NOT_GRANTED` error is hit for Identity. The error can be resolved by putting the user through update mode with `identity` in the `products` array, as well as through the limited beta for update mode Identity product validations.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProductPermissionsRequiredIdentityWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public ProductPermissionsRequiredIdentityWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;IDENTITY&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`IDENTITY`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public ProductPermissionsRequiredIdentityWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;PRODUCT_PERMISSIONS_REQUIRED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`PRODUCT_PERMISSIONS_REQUIRED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public ProductPermissionsRequiredIdentityWebhook 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 ProductPermissionsRequiredIdentityWebhook 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; } ProductPermissionsRequiredIdentityWebhook productPermissionsRequiredIdentityWebhook = (ProductPermissionsRequiredIdentityWebhook) o; return Objects.equals(this.webhookType, productPermissionsRequiredIdentityWebhook.webhookType) && Objects.equals(this.webhookCode, productPermissionsRequiredIdentityWebhook.webhookCode) && Objects.equals(this.itemId, productPermissionsRequiredIdentityWebhook.itemId) && Objects.equals(this.environment, productPermissionsRequiredIdentityWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, itemId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProductPermissionsRequiredIdentityWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" environment: ").append(toIndentedString(environment)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PhoneNumber.java
src/main/java/com/plaid/client/model/PhoneNumber.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 phone number */ @ApiModel(description = "A phone number") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PhoneNumber { public static final String SERIALIZED_NAME_DATA = "data"; @SerializedName(SERIALIZED_NAME_DATA) private String data; public static final String SERIALIZED_NAME_PRIMARY = "primary"; @SerializedName(SERIALIZED_NAME_PRIMARY) private Boolean primary; /** * The type of phone number. */ @JsonAdapter(TypeEnum.Adapter.class) public enum TypeEnum { HOME("home"), WORK("work"), OFFICE("office"), MOBILE("mobile"), MOBILE1("mobile1"), OTHER("other"); private String value; TypeEnum(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TypeEnum fromValue(String value) { for (TypeEnum b : TypeEnum.values()) { if (b.value.equals(value)) { return b; } } throw new IllegalArgumentException("Unexpected value '" + value + "'"); } public static class Adapter extends TypeAdapter<TypeEnum> { @Override public void write(final JsonWriter jsonWriter, final TypeEnum enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TypeEnum read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TypeEnum.fromValue(value); } } } public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private TypeEnum type; public PhoneNumber data(String data) { this.data = data; return this; } /** * The phone number. * @return data **/ @ApiModelProperty(required = true, value = "The phone number.") public String getData() { return data; } public void setData(String data) { this.data = data; } public PhoneNumber primary(Boolean primary) { this.primary = primary; return this; } /** * When &#x60;true&#x60;, identifies the phone number as the primary number on an account. * @return primary **/ @ApiModelProperty(required = true, value = "When `true`, identifies the phone number as the primary number on an account.") public Boolean getPrimary() { return primary; } public void setPrimary(Boolean primary) { this.primary = primary; } public PhoneNumber type(TypeEnum type) { this.type = type; return this; } /** * The type of phone number. * @return type **/ @ApiModelProperty(required = true, value = "The type of phone number.") public TypeEnum getType() { return type; } public void setType(TypeEnum type) { this.type = type; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PhoneNumber phoneNumber = (PhoneNumber) o; return Objects.equals(this.data, phoneNumber.data) && Objects.equals(this.primary, phoneNumber.primary) && Objects.equals(this.type, phoneNumber.type); } @Override public int hashCode() { return Objects.hash(data, primary, type); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PhoneNumber {\n"); sb.append(" data: ").append(toIndentedString(data)).append("\n"); sb.append(" primary: ").append(toIndentedString(primary)).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/IncomeSourcesCounts.java
src/main/java/com/plaid/client/model/IncomeSourcesCounts.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 about the number of income sources */ @ApiModel(description = "Details about the number of income sources") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IncomeSourcesCounts { 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 IncomeSourcesCounts baselineCount(Double baselineCount) { this.baselineCount = baselineCount; return this; } /** * The number of income sources detected at the subscription date * @return baselineCount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of income sources detected at the subscription date") public Double getBaselineCount() { return baselineCount; } public void setBaselineCount(Double baselineCount) { this.baselineCount = baselineCount; } public IncomeSourcesCounts currentCount(Double currentCount) { this.currentCount = currentCount; return this; } /** * The number of income sources currently detected * @return currentCount **/ @ApiModelProperty(required = true, value = "The number of income sources currently detected") 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; } IncomeSourcesCounts incomeSourcesCounts = (IncomeSourcesCounts) o; return Objects.equals(this.baselineCount, incomeSourcesCounts.baselineCount) && Objects.equals(this.currentCount, incomeSourcesCounts.currentCount); } @Override public int hashCode() { return Objects.hash(baselineCount, currentCount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IncomeSourcesCounts {\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/HoldingsOverride.java
src/main/java/com/plaid/client/model/HoldingsOverride.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.SecurityOverride; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * Specify the holdings on the account. */ @ApiModel(description = "Specify the holdings on the account.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class HoldingsOverride { public static final String SERIALIZED_NAME_INSTITUTION_PRICE = "institution_price"; @SerializedName(SERIALIZED_NAME_INSTITUTION_PRICE) private Double institutionPrice; public static final String SERIALIZED_NAME_INSTITUTION_PRICE_AS_OF = "institution_price_as_of"; @SerializedName(SERIALIZED_NAME_INSTITUTION_PRICE_AS_OF) private LocalDate institutionPriceAsOf; public static final String SERIALIZED_NAME_COST_BASIS = "cost_basis"; @SerializedName(SERIALIZED_NAME_COST_BASIS) private Double costBasis; public static final String SERIALIZED_NAME_QUANTITY = "quantity"; @SerializedName(SERIALIZED_NAME_QUANTITY) private Double quantity; public static final String SERIALIZED_NAME_CURRENCY = "currency"; @SerializedName(SERIALIZED_NAME_CURRENCY) private String currency; public static final String SERIALIZED_NAME_SECURITY = "security"; @SerializedName(SERIALIZED_NAME_SECURITY) private SecurityOverride security; public HoldingsOverride institutionPrice(Double institutionPrice) { this.institutionPrice = institutionPrice; return this; } /** * The last price given by the institution for this security * @return institutionPrice **/ @ApiModelProperty(required = true, value = "The last price given by the institution for this security") public Double getInstitutionPrice() { return institutionPrice; } public void setInstitutionPrice(Double institutionPrice) { this.institutionPrice = institutionPrice; } public HoldingsOverride institutionPriceAsOf(LocalDate institutionPriceAsOf) { this.institutionPriceAsOf = institutionPriceAsOf; return this; } /** * The date at which &#x60;institution_price&#x60; was current. Must be formatted as an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) date. * @return institutionPriceAsOf **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date at which `institution_price` was current. Must be formatted as an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) date.") public LocalDate getInstitutionPriceAsOf() { return institutionPriceAsOf; } public void setInstitutionPriceAsOf(LocalDate institutionPriceAsOf) { this.institutionPriceAsOf = institutionPriceAsOf; } public HoldingsOverride costBasis(Double costBasis) { this.costBasis = costBasis; return this; } /** * The total cost basis of the holding (e.g., the total amount spent to acquire all assets currently in the holding). * @return costBasis **/ @javax.annotation.Nullable @ApiModelProperty(value = "The total cost basis of the holding (e.g., the total amount spent to acquire all assets currently in the holding).") public Double getCostBasis() { return costBasis; } public void setCostBasis(Double costBasis) { this.costBasis = costBasis; } public HoldingsOverride quantity(Double quantity) { this.quantity = quantity; return this; } /** * The total quantity of the asset held, as reported by the financial institution. * @return quantity **/ @ApiModelProperty(required = true, value = "The total quantity of the asset held, as reported by the financial institution.") public Double getQuantity() { return quantity; } public void setQuantity(Double quantity) { this.quantity = quantity; } public HoldingsOverride currency(String currency) { this.currency = currency; return this; } /** * Either a valid &#x60;iso_currency_code&#x60; or &#x60;unofficial_currency_code&#x60; * @return currency **/ @ApiModelProperty(required = true, value = "Either a valid `iso_currency_code` or `unofficial_currency_code`") public String getCurrency() { return currency; } public void setCurrency(String currency) { this.currency = currency; } public HoldingsOverride security(SecurityOverride security) { this.security = security; return this; } /** * Get security * @return security **/ @ApiModelProperty(required = true, value = "") public SecurityOverride getSecurity() { return security; } public void setSecurity(SecurityOverride security) { this.security = security; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } HoldingsOverride holdingsOverride = (HoldingsOverride) o; return Objects.equals(this.institutionPrice, holdingsOverride.institutionPrice) && Objects.equals(this.institutionPriceAsOf, holdingsOverride.institutionPriceAsOf) && Objects.equals(this.costBasis, holdingsOverride.costBasis) && Objects.equals(this.quantity, holdingsOverride.quantity) && Objects.equals(this.currency, holdingsOverride.currency) && Objects.equals(this.security, holdingsOverride.security); } @Override public int hashCode() { return Objects.hash(institutionPrice, institutionPriceAsOf, costBasis, quantity, currency, security); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class HoldingsOverride {\n"); sb.append(" institutionPrice: ").append(toIndentedString(institutionPrice)).append("\n"); sb.append(" institutionPriceAsOf: ").append(toIndentedString(institutionPriceAsOf)).append("\n"); sb.append(" costBasis: ").append(toIndentedString(costBasis)).append("\n"); sb.append(" quantity: ").append(toIndentedString(quantity)).append("\n"); sb.append(" currency: ").append(toIndentedString(currency)).append("\n"); sb.append(" security: ").append(toIndentedString(security)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WalletTransactionExecuteResponse.java
src/main/java/com/plaid/client/model/WalletTransactionExecuteResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.WalletTransactionStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * WalletTransactionExecuteResponse defines the response schema for &#x60;/wallet/transaction/execute&#x60; */ @ApiModel(description = "WalletTransactionExecuteResponse defines the response schema for `/wallet/transaction/execute`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WalletTransactionExecuteResponse { public static final String SERIALIZED_NAME_TRANSACTION_ID = "transaction_id"; @SerializedName(SERIALIZED_NAME_TRANSACTION_ID) private String transactionId; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private WalletTransactionStatus status; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public WalletTransactionExecuteResponse transactionId(String transactionId) { this.transactionId = transactionId; return this; } /** * A unique ID identifying the transaction * @return transactionId **/ @ApiModelProperty(required = true, value = "A unique ID identifying the transaction") public String getTransactionId() { return transactionId; } public void setTransactionId(String transactionId) { this.transactionId = transactionId; } public WalletTransactionExecuteResponse status(WalletTransactionStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public WalletTransactionStatus getStatus() { return status; } public void setStatus(WalletTransactionStatus status) { this.status = status; } public WalletTransactionExecuteResponse 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; } WalletTransactionExecuteResponse walletTransactionExecuteResponse = (WalletTransactionExecuteResponse) o; return Objects.equals(this.transactionId, walletTransactionExecuteResponse.transactionId) && Objects.equals(this.status, walletTransactionExecuteResponse.status) && Objects.equals(this.requestId, walletTransactionExecuteResponse.requestId); } @Override public int hashCode() { return Objects.hash(transactionId, status, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WalletTransactionExecuteResponse {\n"); sb.append(" transactionId: ").append(toIndentedString(transactionId)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateAccount.java
src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateAccount.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AccountSubtype; import com.plaid.client.model.AccountType; import com.plaid.client.model.BeaconAccountRiskEvaluateAccountAttributes; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An account in the &#x60;/beacon/account_risk/v1/evaluate&#x60; response. */ @ApiModel(description = "An account in the `/beacon/account_risk/v1/evaluate` response.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconAccountRiskEvaluateAccount { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private AccountType type; public static final String SERIALIZED_NAME_SUBTYPE = "subtype"; @SerializedName(SERIALIZED_NAME_SUBTYPE) private AccountSubtype subtype; public static final String SERIALIZED_NAME_ATTRIBUTES = "attributes"; @SerializedName(SERIALIZED_NAME_ATTRIBUTES) private BeaconAccountRiskEvaluateAccountAttributes attributes; public BeaconAccountRiskEvaluateAccount accountId(String accountId) { this.accountId = accountId; return this; } /** * The account ID. * @return accountId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The account ID.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public BeaconAccountRiskEvaluateAccount type(AccountType type) { this.type = type; return this; } /** * Get type * @return type **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AccountType getType() { return type; } public void setType(AccountType type) { this.type = type; } public BeaconAccountRiskEvaluateAccount subtype(AccountSubtype subtype) { this.subtype = subtype; return this; } /** * Get subtype * @return subtype **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AccountSubtype getSubtype() { return subtype; } public void setSubtype(AccountSubtype subtype) { this.subtype = subtype; } public BeaconAccountRiskEvaluateAccount attributes(BeaconAccountRiskEvaluateAccountAttributes attributes) { this.attributes = attributes; return this; } /** * Get attributes * @return attributes **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public BeaconAccountRiskEvaluateAccountAttributes getAttributes() { return attributes; } public void setAttributes(BeaconAccountRiskEvaluateAccountAttributes attributes) { this.attributes = attributes; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BeaconAccountRiskEvaluateAccount beaconAccountRiskEvaluateAccount = (BeaconAccountRiskEvaluateAccount) o; return Objects.equals(this.accountId, beaconAccountRiskEvaluateAccount.accountId) && Objects.equals(this.type, beaconAccountRiskEvaluateAccount.type) && Objects.equals(this.subtype, beaconAccountRiskEvaluateAccount.subtype) && Objects.equals(this.attributes, beaconAccountRiskEvaluateAccount.attributes); } @Override public int hashCode() { return Objects.hash(accountId, type, subtype, attributes); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconAccountRiskEvaluateAccount {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" subtype: ").append(toIndentedString(subtype)).append("\n"); sb.append(" attributes: ").append(toIndentedString(attributes)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/InstitutionStatus.java
src/main/java/com/plaid/client/model/InstitutionStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.HealthIncident; import com.plaid.client.model.ProductStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * The status of an institution is determined by the health of its Item logins, Transactions updates, Investments updates, Liabilities updates, Auth requests, Balance requests, Identity requests, Investments requests, and Liabilities requests. A login attempt is conducted during the initial Item add in Link. If there is not enough traffic to accurately calculate an institution&#39;s status, Plaid will return null rather than potentially inaccurate data. Institution status is accessible in the Dashboard and via the API using the &#x60;/institutions/get_by_id&#x60; endpoint with the &#x60;include_status&#x60; option set to true. Note that institution status is not available in the Sandbox environment. */ @ApiModel(description = "The status of an institution is determined by the health of its Item logins, Transactions updates, Investments updates, Liabilities updates, Auth requests, Balance requests, Identity requests, Investments requests, and Liabilities requests. A login attempt is conducted during the initial Item add in Link. If there is not enough traffic to accurately calculate an institution's status, Plaid will return null rather than potentially inaccurate data. Institution status is accessible in the Dashboard and via the API using the `/institutions/get_by_id` endpoint with the `include_status` option set to true. Note that institution status is not available in the Sandbox environment. ") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InstitutionStatus { public static final String SERIALIZED_NAME_ITEM_LOGINS = "item_logins"; @SerializedName(SERIALIZED_NAME_ITEM_LOGINS) private ProductStatus itemLogins; public static final String SERIALIZED_NAME_TRANSACTIONS_UPDATES = "transactions_updates"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS_UPDATES) private ProductStatus transactionsUpdates; public static final String SERIALIZED_NAME_AUTH = "auth"; @SerializedName(SERIALIZED_NAME_AUTH) private ProductStatus auth; public static final String SERIALIZED_NAME_IDENTITY = "identity"; @SerializedName(SERIALIZED_NAME_IDENTITY) private ProductStatus identity; public static final String SERIALIZED_NAME_INVESTMENTS_UPDATES = "investments_updates"; @SerializedName(SERIALIZED_NAME_INVESTMENTS_UPDATES) private ProductStatus investmentsUpdates; public static final String SERIALIZED_NAME_LIABILITIES_UPDATES = "liabilities_updates"; @SerializedName(SERIALIZED_NAME_LIABILITIES_UPDATES) private ProductStatus liabilitiesUpdates; public static final String SERIALIZED_NAME_LIABILITIES = "liabilities"; @SerializedName(SERIALIZED_NAME_LIABILITIES) private ProductStatus liabilities; public static final String SERIALIZED_NAME_INVESTMENTS = "investments"; @SerializedName(SERIALIZED_NAME_INVESTMENTS) private ProductStatus investments; public static final String SERIALIZED_NAME_HEALTH_INCIDENTS = "health_incidents"; @SerializedName(SERIALIZED_NAME_HEALTH_INCIDENTS) private List<HealthIncident> healthIncidents = null; public InstitutionStatus itemLogins(ProductStatus itemLogins) { this.itemLogins = itemLogins; return this; } /** * Get itemLogins * @return itemLogins **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ProductStatus getItemLogins() { return itemLogins; } public void setItemLogins(ProductStatus itemLogins) { this.itemLogins = itemLogins; } public InstitutionStatus transactionsUpdates(ProductStatus transactionsUpdates) { this.transactionsUpdates = transactionsUpdates; return this; } /** * Get transactionsUpdates * @return transactionsUpdates **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ProductStatus getTransactionsUpdates() { return transactionsUpdates; } public void setTransactionsUpdates(ProductStatus transactionsUpdates) { this.transactionsUpdates = transactionsUpdates; } public InstitutionStatus auth(ProductStatus auth) { this.auth = auth; return this; } /** * Get auth * @return auth **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ProductStatus getAuth() { return auth; } public void setAuth(ProductStatus auth) { this.auth = auth; } public InstitutionStatus identity(ProductStatus identity) { this.identity = identity; return this; } /** * Get identity * @return identity **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ProductStatus getIdentity() { return identity; } public void setIdentity(ProductStatus identity) { this.identity = identity; } public InstitutionStatus investmentsUpdates(ProductStatus investmentsUpdates) { this.investmentsUpdates = investmentsUpdates; return this; } /** * Get investmentsUpdates * @return investmentsUpdates **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ProductStatus getInvestmentsUpdates() { return investmentsUpdates; } public void setInvestmentsUpdates(ProductStatus investmentsUpdates) { this.investmentsUpdates = investmentsUpdates; } public InstitutionStatus liabilitiesUpdates(ProductStatus liabilitiesUpdates) { this.liabilitiesUpdates = liabilitiesUpdates; return this; } /** * Get liabilitiesUpdates * @return liabilitiesUpdates **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ProductStatus getLiabilitiesUpdates() { return liabilitiesUpdates; } public void setLiabilitiesUpdates(ProductStatus liabilitiesUpdates) { this.liabilitiesUpdates = liabilitiesUpdates; } public InstitutionStatus liabilities(ProductStatus liabilities) { this.liabilities = liabilities; return this; } /** * Get liabilities * @return liabilities **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ProductStatus getLiabilities() { return liabilities; } public void setLiabilities(ProductStatus liabilities) { this.liabilities = liabilities; } public InstitutionStatus investments(ProductStatus investments) { this.investments = investments; return this; } /** * Get investments * @return investments **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ProductStatus getInvestments() { return investments; } public void setInvestments(ProductStatus investments) { this.investments = investments; } public InstitutionStatus healthIncidents(List<HealthIncident> healthIncidents) { this.healthIncidents = healthIncidents; return this; } public InstitutionStatus addHealthIncidentsItem(HealthIncident healthIncidentsItem) { if (this.healthIncidents == null) { this.healthIncidents = new ArrayList<>(); } this.healthIncidents.add(healthIncidentsItem); return this; } /** * Details of recent health incidents associated with the institution. * @return healthIncidents **/ @javax.annotation.Nullable @ApiModelProperty(value = "Details of recent health incidents associated with the institution.") public List<HealthIncident> getHealthIncidents() { return healthIncidents; } public void setHealthIncidents(List<HealthIncident> healthIncidents) { this.healthIncidents = healthIncidents; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } InstitutionStatus institutionStatus = (InstitutionStatus) o; return Objects.equals(this.itemLogins, institutionStatus.itemLogins) && Objects.equals(this.transactionsUpdates, institutionStatus.transactionsUpdates) && Objects.equals(this.auth, institutionStatus.auth) && Objects.equals(this.identity, institutionStatus.identity) && Objects.equals(this.investmentsUpdates, institutionStatus.investmentsUpdates) && Objects.equals(this.liabilitiesUpdates, institutionStatus.liabilitiesUpdates) && Objects.equals(this.liabilities, institutionStatus.liabilities) && Objects.equals(this.investments, institutionStatus.investments) && Objects.equals(this.healthIncidents, institutionStatus.healthIncidents); } @Override public int hashCode() { return Objects.hash(itemLogins, transactionsUpdates, auth, identity, investmentsUpdates, liabilitiesUpdates, liabilities, investments, healthIncidents); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InstitutionStatus {\n"); sb.append(" itemLogins: ").append(toIndentedString(itemLogins)).append("\n"); sb.append(" transactionsUpdates: ").append(toIndentedString(transactionsUpdates)).append("\n"); sb.append(" auth: ").append(toIndentedString(auth)).append("\n"); sb.append(" identity: ").append(toIndentedString(identity)).append("\n"); sb.append(" investmentsUpdates: ").append(toIndentedString(investmentsUpdates)).append("\n"); sb.append(" liabilitiesUpdates: ").append(toIndentedString(liabilitiesUpdates)).append("\n"); sb.append(" liabilities: ").append(toIndentedString(liabilities)).append("\n"); sb.append(" investments: ").append(toIndentedString(investments)).append("\n"); sb.append(" healthIncidents: ").append(toIndentedString(healthIncidents)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetTransactionDetail.java
src/main/java/com/plaid/client/model/AssetTransactionDetail.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.AssetInvestmentTransactionType; import com.plaid.client.model.AssetTransactionCategoryType; import com.plaid.client.model.AssetTransactionType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.math.BigDecimal; import java.time.LocalDate; /** * 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 AssetTransactionDetail { public static final String SERIALIZED_NAME_ASSET_TRANSACTION_UNIQUE_IDENTIFIER = "AssetTransactionUniqueIdentifier"; @SerializedName(SERIALIZED_NAME_ASSET_TRANSACTION_UNIQUE_IDENTIFIER) private String assetTransactionUniqueIdentifier; public static final String SERIALIZED_NAME_ASSET_TRANSACTION_AMOUNT = "AssetTransactionAmount"; @SerializedName(SERIALIZED_NAME_ASSET_TRANSACTION_AMOUNT) private Double assetTransactionAmount; public static final String SERIALIZED_NAME_ASSET_TRANSACTION_DATE = "AssetTransactionDate"; @SerializedName(SERIALIZED_NAME_ASSET_TRANSACTION_DATE) private LocalDate assetTransactionDate; public static final String SERIALIZED_NAME_ASSET_TRANSACTION_POST_DATE = "AssetTransactionPostDate"; @SerializedName(SERIALIZED_NAME_ASSET_TRANSACTION_POST_DATE) private LocalDate assetTransactionPostDate; public static final String SERIALIZED_NAME_ASSET_TRANSACTION_TYPE = "AssetTransactionType"; @SerializedName(SERIALIZED_NAME_ASSET_TRANSACTION_TYPE) private AssetTransactionType assetTransactionType; public static final String SERIALIZED_NAME_ASSET_INVESTMENT_TRANSACTION_TYPE = "AssetInvestmentTransactionType"; @SerializedName(SERIALIZED_NAME_ASSET_INVESTMENT_TRANSACTION_TYPE) private AssetInvestmentTransactionType assetInvestmentTransactionType; public static final String SERIALIZED_NAME_ASSET_TRANSACTION_PAID_BY_NAME = "AssetTransactionPaidByName"; @SerializedName(SERIALIZED_NAME_ASSET_TRANSACTION_PAID_BY_NAME) private String assetTransactionPaidByName; public static final String SERIALIZED_NAME_ASSET_TRANSACTION_PAID_TO_NAME = "AssetTransactionPaidToName"; @SerializedName(SERIALIZED_NAME_ASSET_TRANSACTION_PAID_TO_NAME) private String assetTransactionPaidToName; public static final String SERIALIZED_NAME_ASSET_TRANSACTION_TYPE_ADDITIONAL_DESCRIPTION = "AssetTransactionTypeAdditionalDescription"; @SerializedName(SERIALIZED_NAME_ASSET_TRANSACTION_TYPE_ADDITIONAL_DESCRIPTION) private String assetTransactionTypeAdditionalDescription; public static final String SERIALIZED_NAME_ASSET_INVESTMENT_TRANSACTION_TYPE_DESCRIPTION = "AssetInvestmentTransactionTypeDescription"; @SerializedName(SERIALIZED_NAME_ASSET_INVESTMENT_TRANSACTION_TYPE_DESCRIPTION) private String assetInvestmentTransactionTypeDescription; public static final String SERIALIZED_NAME_ASSET_TRANSACTION_CATEGORY_TYPE = "AssetTransactionCategoryType"; @SerializedName(SERIALIZED_NAME_ASSET_TRANSACTION_CATEGORY_TYPE) private AssetTransactionCategoryType assetTransactionCategoryType; public static final String SERIALIZED_NAME_FINANCIAL_INSTITUTION_TRANSACTION_IDENTIFIER = "FinancialInstitutionTransactionIdentifier"; @SerializedName(SERIALIZED_NAME_FINANCIAL_INSTITUTION_TRANSACTION_IDENTIFIER) private String financialInstitutionTransactionIdentifier; public AssetTransactionDetail assetTransactionUniqueIdentifier(String assetTransactionUniqueIdentifier) { this.assetTransactionUniqueIdentifier = assetTransactionUniqueIdentifier; return this; } /** * A vendor created unique Identifier. * @return assetTransactionUniqueIdentifier **/ @ApiModelProperty(required = true, value = "A vendor created unique Identifier.") public String getAssetTransactionUniqueIdentifier() { return assetTransactionUniqueIdentifier; } public void setAssetTransactionUniqueIdentifier(String assetTransactionUniqueIdentifier) { this.assetTransactionUniqueIdentifier = assetTransactionUniqueIdentifier; } public AssetTransactionDetail assetTransactionAmount(Double assetTransactionAmount) { this.assetTransactionAmount = assetTransactionAmount; return this; } /** * Asset Transaction Amount. * @return assetTransactionAmount **/ @ApiModelProperty(required = true, value = "Asset Transaction Amount.") public Double getAssetTransactionAmount() { return assetTransactionAmount; } public void setAssetTransactionAmount(Double assetTransactionAmount) { this.assetTransactionAmount = assetTransactionAmount; } public AssetTransactionDetail assetTransactionDate(LocalDate assetTransactionDate) { this.assetTransactionDate = assetTransactionDate; return this; } /** * Asset Transaction Date. * @return assetTransactionDate **/ @ApiModelProperty(required = true, value = "Asset Transaction Date.") public LocalDate getAssetTransactionDate() { return assetTransactionDate; } public void setAssetTransactionDate(LocalDate assetTransactionDate) { this.assetTransactionDate = assetTransactionDate; } public AssetTransactionDetail assetTransactionPostDate(LocalDate assetTransactionPostDate) { this.assetTransactionPostDate = assetTransactionPostDate; return this; } /** * Asset Transaction Post Date. * @return assetTransactionPostDate **/ @ApiModelProperty(required = true, value = "Asset Transaction Post Date.") public LocalDate getAssetTransactionPostDate() { return assetTransactionPostDate; } public void setAssetTransactionPostDate(LocalDate assetTransactionPostDate) { this.assetTransactionPostDate = assetTransactionPostDate; } public AssetTransactionDetail assetTransactionType(AssetTransactionType assetTransactionType) { this.assetTransactionType = assetTransactionType; return this; } /** * Get assetTransactionType * @return assetTransactionType **/ @ApiModelProperty(required = true, value = "") public AssetTransactionType getAssetTransactionType() { return assetTransactionType; } public void setAssetTransactionType(AssetTransactionType assetTransactionType) { this.assetTransactionType = assetTransactionType; } public AssetTransactionDetail assetInvestmentTransactionType(AssetInvestmentTransactionType assetInvestmentTransactionType) { this.assetInvestmentTransactionType = assetInvestmentTransactionType; return this; } /** * Get assetInvestmentTransactionType * @return assetInvestmentTransactionType **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AssetInvestmentTransactionType getAssetInvestmentTransactionType() { return assetInvestmentTransactionType; } public void setAssetInvestmentTransactionType(AssetInvestmentTransactionType assetInvestmentTransactionType) { this.assetInvestmentTransactionType = assetInvestmentTransactionType; } public AssetTransactionDetail assetTransactionPaidByName(String assetTransactionPaidByName) { this.assetTransactionPaidByName = assetTransactionPaidByName; return this; } /** * Populate with who did the transaction. * @return assetTransactionPaidByName **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Populate with who did the transaction.") public String getAssetTransactionPaidByName() { return assetTransactionPaidByName; } public void setAssetTransactionPaidByName(String assetTransactionPaidByName) { this.assetTransactionPaidByName = assetTransactionPaidByName; } public AssetTransactionDetail assetTransactionPaidToName(String assetTransactionPaidToName) { this.assetTransactionPaidToName = assetTransactionPaidToName; return this; } /** * Populate with for whom the transaction is done * @return assetTransactionPaidToName **/ @javax.annotation.Nullable @ApiModelProperty(value = "Populate with for whom the transaction is done") public String getAssetTransactionPaidToName() { return assetTransactionPaidToName; } public void setAssetTransactionPaidToName(String assetTransactionPaidToName) { this.assetTransactionPaidToName = assetTransactionPaidToName; } public AssetTransactionDetail assetTransactionTypeAdditionalDescription(String assetTransactionTypeAdditionalDescription) { this.assetTransactionTypeAdditionalDescription = assetTransactionTypeAdditionalDescription; return this; } /** * FI Provided - examples are atm, cash, check, credit, debit, deposit, directDebit, directDeposit, dividend, fee, interest, other, payment, pointOfSale, repeatPayment, serviceCharge, transfer. * @return assetTransactionTypeAdditionalDescription **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "FI Provided - examples are atm, cash, check, credit, debit, deposit, directDebit, directDeposit, dividend, fee, interest, other, payment, pointOfSale, repeatPayment, serviceCharge, transfer.") public String getAssetTransactionTypeAdditionalDescription() { return assetTransactionTypeAdditionalDescription; } public void setAssetTransactionTypeAdditionalDescription(String assetTransactionTypeAdditionalDescription) { this.assetTransactionTypeAdditionalDescription = assetTransactionTypeAdditionalDescription; } public AssetTransactionDetail assetInvestmentTransactionTypeDescription(String assetInvestmentTransactionTypeDescription) { this.assetInvestmentTransactionTypeDescription = assetInvestmentTransactionTypeDescription; return this; } /** * Asset Investment Transaction Type Description. * @return assetInvestmentTransactionTypeDescription **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Asset Investment Transaction Type Description.") public String getAssetInvestmentTransactionTypeDescription() { return assetInvestmentTransactionTypeDescription; } public void setAssetInvestmentTransactionTypeDescription(String assetInvestmentTransactionTypeDescription) { this.assetInvestmentTransactionTypeDescription = assetInvestmentTransactionTypeDescription; } public AssetTransactionDetail assetTransactionCategoryType(AssetTransactionCategoryType assetTransactionCategoryType) { this.assetTransactionCategoryType = assetTransactionCategoryType; return this; } /** * Get assetTransactionCategoryType * @return assetTransactionCategoryType **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public AssetTransactionCategoryType getAssetTransactionCategoryType() { return assetTransactionCategoryType; } public void setAssetTransactionCategoryType(AssetTransactionCategoryType assetTransactionCategoryType) { this.assetTransactionCategoryType = assetTransactionCategoryType; } public AssetTransactionDetail financialInstitutionTransactionIdentifier(String financialInstitutionTransactionIdentifier) { this.financialInstitutionTransactionIdentifier = financialInstitutionTransactionIdentifier; return this; } /** * FI provided Transaction Identifier. * @return financialInstitutionTransactionIdentifier **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "FI provided Transaction Identifier.") public String getFinancialInstitutionTransactionIdentifier() { return financialInstitutionTransactionIdentifier; } public void setFinancialInstitutionTransactionIdentifier(String financialInstitutionTransactionIdentifier) { this.financialInstitutionTransactionIdentifier = financialInstitutionTransactionIdentifier; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AssetTransactionDetail assetTransactionDetail = (AssetTransactionDetail) o; return Objects.equals(this.assetTransactionUniqueIdentifier, assetTransactionDetail.assetTransactionUniqueIdentifier) && Objects.equals(this.assetTransactionAmount, assetTransactionDetail.assetTransactionAmount) && Objects.equals(this.assetTransactionDate, assetTransactionDetail.assetTransactionDate) && Objects.equals(this.assetTransactionPostDate, assetTransactionDetail.assetTransactionPostDate) && Objects.equals(this.assetTransactionType, assetTransactionDetail.assetTransactionType) && Objects.equals(this.assetInvestmentTransactionType, assetTransactionDetail.assetInvestmentTransactionType) && Objects.equals(this.assetTransactionPaidByName, assetTransactionDetail.assetTransactionPaidByName) && Objects.equals(this.assetTransactionPaidToName, assetTransactionDetail.assetTransactionPaidToName) && Objects.equals(this.assetTransactionTypeAdditionalDescription, assetTransactionDetail.assetTransactionTypeAdditionalDescription) && Objects.equals(this.assetInvestmentTransactionTypeDescription, assetTransactionDetail.assetInvestmentTransactionTypeDescription) && Objects.equals(this.assetTransactionCategoryType, assetTransactionDetail.assetTransactionCategoryType) && Objects.equals(this.financialInstitutionTransactionIdentifier, assetTransactionDetail.financialInstitutionTransactionIdentifier); } @Override public int hashCode() { return Objects.hash(assetTransactionUniqueIdentifier, assetTransactionAmount, assetTransactionDate, assetTransactionPostDate, assetTransactionType, assetInvestmentTransactionType, assetTransactionPaidByName, assetTransactionPaidToName, assetTransactionTypeAdditionalDescription, assetInvestmentTransactionTypeDescription, assetTransactionCategoryType, financialInstitutionTransactionIdentifier); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetTransactionDetail {\n"); sb.append(" assetTransactionUniqueIdentifier: ").append(toIndentedString(assetTransactionUniqueIdentifier)).append("\n"); sb.append(" assetTransactionAmount: ").append(toIndentedString(assetTransactionAmount)).append("\n"); sb.append(" assetTransactionDate: ").append(toIndentedString(assetTransactionDate)).append("\n"); sb.append(" assetTransactionPostDate: ").append(toIndentedString(assetTransactionPostDate)).append("\n"); sb.append(" assetTransactionType: ").append(toIndentedString(assetTransactionType)).append("\n"); sb.append(" assetInvestmentTransactionType: ").append(toIndentedString(assetInvestmentTransactionType)).append("\n"); sb.append(" assetTransactionPaidByName: ").append(toIndentedString(assetTransactionPaidByName)).append("\n"); sb.append(" assetTransactionPaidToName: ").append(toIndentedString(assetTransactionPaidToName)).append("\n"); sb.append(" assetTransactionTypeAdditionalDescription: ").append(toIndentedString(assetTransactionTypeAdditionalDescription)).append("\n"); sb.append(" assetInvestmentTransactionTypeDescription: ").append(toIndentedString(assetInvestmentTransactionTypeDescription)).append("\n"); sb.append(" assetTransactionCategoryType: ").append(toIndentedString(assetTransactionCategoryType)).append("\n"); sb.append(" financialInstitutionTransactionIdentifier: ").append(toIndentedString(financialInstitutionTransactionIdentifier)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/NegativeBalanceOccurrence.java
src/main/java/com/plaid/client/model/NegativeBalanceOccurrence.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * Details about a specific occurrence of a negative balance period, including start and end dates. */ @ApiModel(description = "Details about a specific occurrence of a negative balance period, including start and end dates.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class NegativeBalanceOccurrence { public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) private LocalDate startDate; public static final String SERIALIZED_NAME_END_DATE = "end_date"; @SerializedName(SERIALIZED_NAME_END_DATE) private LocalDate endDate; public static final String SERIALIZED_NAME_MINIMUM_BALANCE = "minimum_balance"; @SerializedName(SERIALIZED_NAME_MINIMUM_BALANCE) private AmountWithCurrency minimumBalance; public NegativeBalanceOccurrence startDate(LocalDate startDate) { this.startDate = startDate; return this; } /** * The date of the first transaction that caused the account to have a negative balance. The date will be returned in an ISO 8601 format (YYYY-MM-DD). * @return startDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date of the first transaction that caused the account to have a negative balance. The date will be returned in an ISO 8601 format (YYYY-MM-DD).") public LocalDate getStartDate() { return startDate; } public void setStartDate(LocalDate startDate) { this.startDate = startDate; } public NegativeBalanceOccurrence endDate(LocalDate endDate) { this.endDate = endDate; return this; } /** * The date of the last transaction that caused the account to have a negative balance. The date will be returned in an ISO 8601 format (YYYY-MM-DD). This date is inclusive, meaning that this was the last date that the account had a negative balance. * @return endDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date of the last transaction that caused the account to have a negative balance. The date will be returned in an ISO 8601 format (YYYY-MM-DD). This date is inclusive, meaning that this was the last date that the account had a negative balance.") public LocalDate getEndDate() { return endDate; } public void setEndDate(LocalDate endDate) { this.endDate = endDate; } public NegativeBalanceOccurrence minimumBalance(AmountWithCurrency minimumBalance) { this.minimumBalance = minimumBalance; return this; } /** * Get minimumBalance * @return minimumBalance **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AmountWithCurrency getMinimumBalance() { return minimumBalance; } public void setMinimumBalance(AmountWithCurrency minimumBalance) { this.minimumBalance = minimumBalance; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } NegativeBalanceOccurrence negativeBalanceOccurrence = (NegativeBalanceOccurrence) o; return Objects.equals(this.startDate, negativeBalanceOccurrence.startDate) && Objects.equals(this.endDate, negativeBalanceOccurrence.endDate) && Objects.equals(this.minimumBalance, negativeBalanceOccurrence.minimumBalance); } @Override public int hashCode() { return Objects.hash(startDate, endDate, minimumBalance); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class NegativeBalanceOccurrence {\n"); sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n"); sb.append(" endDate: ").append(toIndentedString(endDate)).append("\n"); sb.append(" minimumBalance: ").append(toIndentedString(minimumBalance)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/RiskCheckEmailDomainIsCustom.java
src/main/java/com/plaid/client/model/RiskCheckEmailDomainIsCustom.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * Indicates whether the email address domain is custom if known, i.e. a company domain and not free or disposable. */ @JsonAdapter(RiskCheckEmailDomainIsCustom.Adapter.class) public enum RiskCheckEmailDomainIsCustom { YES("yes"), NO("no"), NO_DATA("no_data"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; RiskCheckEmailDomainIsCustom(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static RiskCheckEmailDomainIsCustom fromValue(String value) { for (RiskCheckEmailDomainIsCustom b : RiskCheckEmailDomainIsCustom.values()) { if (b.value.equals(value)) { return b; } } return RiskCheckEmailDomainIsCustom.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<RiskCheckEmailDomainIsCustom> { @Override public void write(final JsonWriter jsonWriter, final RiskCheckEmailDomainIsCustom enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public RiskCheckEmailDomainIsCustom read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return RiskCheckEmailDomainIsCustom.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/CreditFreddieMacAsset.java
src/main/java/com/plaid/client/model/CreditFreddieMacAsset.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.AssetDetail; import com.plaid.client.model.AssetHolder; import com.plaid.client.model.AssetHoldings; import com.plaid.client.model.AssetOwners; import com.plaid.client.model.CreditFreddieMacAssetTransactions; import com.plaid.client.model.ValidationSources; 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 CreditFreddieMacAsset { public static final String SERIALIZED_NAME_A_S_S_E_T_D_E_T_A_I_L = "ASSET_DETAIL"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T_D_E_T_A_I_L) private AssetDetail ASSET_DETAIL; public static final String SERIALIZED_NAME_A_S_S_E_T_O_W_N_E_R_S = "ASSET_OWNERS"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T_O_W_N_E_R_S) private AssetOwners ASSET_OWNERS; public static final String SERIALIZED_NAME_A_S_S_E_T_H_O_L_D_E_R = "ASSET_HOLDER"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T_H_O_L_D_E_R) private AssetHolder ASSET_HOLDER; public static final String SERIALIZED_NAME_A_S_S_E_T_H_O_L_D_I_N_G_S = "ASSET_HOLDINGS"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T_H_O_L_D_I_N_G_S) private AssetHoldings ASSET_HOLDINGS; public static final String SERIALIZED_NAME_A_S_S_E_T_T_R_A_N_S_A_C_T_I_O_N_S = "ASSET_TRANSACTIONS"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T_T_R_A_N_S_A_C_T_I_O_N_S) private CreditFreddieMacAssetTransactions ASSET_TRANSACTIONS; public static final String SERIALIZED_NAME_V_A_L_I_D_A_T_I_O_N_S_O_U_R_C_E_S = "VALIDATION_SOURCES"; @SerializedName(SERIALIZED_NAME_V_A_L_I_D_A_T_I_O_N_S_O_U_R_C_E_S) private ValidationSources VALIDATION_SOURCES; public CreditFreddieMacAsset ASSET_DETAIL(AssetDetail ASSET_DETAIL) { this.ASSET_DETAIL = ASSET_DETAIL; return this; } /** * Get ASSET_DETAIL * @return ASSET_DETAIL **/ @ApiModelProperty(required = true, value = "") public AssetDetail getASSETDETAIL() { return ASSET_DETAIL; } public void setASSETDETAIL(AssetDetail ASSET_DETAIL) { this.ASSET_DETAIL = ASSET_DETAIL; } public CreditFreddieMacAsset ASSET_OWNERS(AssetOwners ASSET_OWNERS) { this.ASSET_OWNERS = ASSET_OWNERS; return this; } /** * Get ASSET_OWNERS * @return ASSET_OWNERS **/ @ApiModelProperty(required = true, value = "") public AssetOwners getASSETOWNERS() { return ASSET_OWNERS; } public void setASSETOWNERS(AssetOwners ASSET_OWNERS) { this.ASSET_OWNERS = ASSET_OWNERS; } public CreditFreddieMacAsset ASSET_HOLDER(AssetHolder ASSET_HOLDER) { this.ASSET_HOLDER = ASSET_HOLDER; return this; } /** * Get ASSET_HOLDER * @return ASSET_HOLDER **/ @ApiModelProperty(required = true, value = "") public AssetHolder getASSETHOLDER() { return ASSET_HOLDER; } public void setASSETHOLDER(AssetHolder ASSET_HOLDER) { this.ASSET_HOLDER = ASSET_HOLDER; } public CreditFreddieMacAsset ASSET_HOLDINGS(AssetHoldings ASSET_HOLDINGS) { this.ASSET_HOLDINGS = ASSET_HOLDINGS; return this; } /** * Get ASSET_HOLDINGS * @return ASSET_HOLDINGS **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AssetHoldings getASSETHOLDINGS() { return ASSET_HOLDINGS; } public void setASSETHOLDINGS(AssetHoldings ASSET_HOLDINGS) { this.ASSET_HOLDINGS = ASSET_HOLDINGS; } public CreditFreddieMacAsset ASSET_TRANSACTIONS(CreditFreddieMacAssetTransactions ASSET_TRANSACTIONS) { this.ASSET_TRANSACTIONS = ASSET_TRANSACTIONS; return this; } /** * Get ASSET_TRANSACTIONS * @return ASSET_TRANSACTIONS **/ @ApiModelProperty(required = true, value = "") public CreditFreddieMacAssetTransactions getASSETTRANSACTIONS() { return ASSET_TRANSACTIONS; } public void setASSETTRANSACTIONS(CreditFreddieMacAssetTransactions ASSET_TRANSACTIONS) { this.ASSET_TRANSACTIONS = ASSET_TRANSACTIONS; } public CreditFreddieMacAsset VALIDATION_SOURCES(ValidationSources VALIDATION_SOURCES) { this.VALIDATION_SOURCES = VALIDATION_SOURCES; return this; } /** * Get VALIDATION_SOURCES * @return VALIDATION_SOURCES **/ @ApiModelProperty(required = true, value = "") public ValidationSources getVALIDATIONSOURCES() { return VALIDATION_SOURCES; } public void setVALIDATIONSOURCES(ValidationSources VALIDATION_SOURCES) { this.VALIDATION_SOURCES = VALIDATION_SOURCES; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditFreddieMacAsset creditFreddieMacAsset = (CreditFreddieMacAsset) o; return Objects.equals(this.ASSET_DETAIL, creditFreddieMacAsset.ASSET_DETAIL) && Objects.equals(this.ASSET_OWNERS, creditFreddieMacAsset.ASSET_OWNERS) && Objects.equals(this.ASSET_HOLDER, creditFreddieMacAsset.ASSET_HOLDER) && Objects.equals(this.ASSET_HOLDINGS, creditFreddieMacAsset.ASSET_HOLDINGS) && Objects.equals(this.ASSET_TRANSACTIONS, creditFreddieMacAsset.ASSET_TRANSACTIONS) && Objects.equals(this.VALIDATION_SOURCES, creditFreddieMacAsset.VALIDATION_SOURCES); } @Override public int hashCode() { return Objects.hash(ASSET_DETAIL, ASSET_OWNERS, ASSET_HOLDER, ASSET_HOLDINGS, ASSET_TRANSACTIONS, VALIDATION_SOURCES); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditFreddieMacAsset {\n"); sb.append(" ASSET_DETAIL: ").append(toIndentedString(ASSET_DETAIL)).append("\n"); sb.append(" ASSET_OWNERS: ").append(toIndentedString(ASSET_OWNERS)).append("\n"); sb.append(" ASSET_HOLDER: ").append(toIndentedString(ASSET_HOLDER)).append("\n"); sb.append(" ASSET_HOLDINGS: ").append(toIndentedString(ASSET_HOLDINGS)).append("\n"); sb.append(" ASSET_TRANSACTIONS: ").append(toIndentedString(ASSET_TRANSACTIONS)).append("\n"); sb.append(" VALIDATION_SOURCES: ").append(toIndentedString(VALIDATION_SOURCES)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/Credit1099Filer.java
src/main/java/com/plaid/client/model/Credit1099Filer.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CreditPayStubAddress; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object representing a filer used by 1099-K tax documents. */ @ApiModel(description = "An object representing a filer used by 1099-K tax documents.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Credit1099Filer { public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private CreditPayStubAddress address; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_TIN = "tin"; @SerializedName(SERIALIZED_NAME_TIN) private String tin; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private String type; public Credit1099Filer address(CreditPayStubAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CreditPayStubAddress getAddress() { return address; } public void setAddress(CreditPayStubAddress address) { this.address = address; } public Credit1099Filer name(String name) { this.name = name; return this; } /** * Name of filer. * @return name **/ @javax.annotation.Nullable @ApiModelProperty(value = "Name of filer.") public String getName() { return name; } public void setName(String name) { this.name = name; } public Credit1099Filer tin(String tin) { this.tin = tin; return this; } /** * Tax identification number of filer. * @return tin **/ @javax.annotation.Nullable @ApiModelProperty(value = "Tax identification number of filer.") public String getTin() { return tin; } public void setTin(String tin) { this.tin = tin; } public Credit1099Filer type(String type) { this.type = type; return this; } /** * One of the following values will be provided: Payment Settlement Entity (PSE), Electronic Payment Facilitator (EPF), Other Third Party * @return type **/ @javax.annotation.Nullable @ApiModelProperty(value = "One of the following values will be provided: Payment Settlement Entity (PSE), Electronic Payment Facilitator (EPF), Other Third Party") public String getType() { return type; } public void setType(String type) { this.type = type; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Credit1099Filer credit1099Filer = (Credit1099Filer) o; return Objects.equals(this.address, credit1099Filer.address) && Objects.equals(this.name, credit1099Filer.name) && Objects.equals(this.tin, credit1099Filer.tin) && Objects.equals(this.type, credit1099Filer.type); } @Override public int hashCode() { return Objects.hash(address, name, tin, type); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Credit1099Filer {\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" tin: ").append(toIndentedString(tin)).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/CreditSessionBankEmploymentStatus.java
src/main/java/com/plaid/client/model/CreditSessionBankEmploymentStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * Status of the Bank Employment Link session. &#x60;APPROVED&#x60;: User has approved and verified their employment. &#x60;NO_EMPLOYMENTS_FOUND&#x60;: We attempted, but were unable to find any employment in the connected account. &#x60;EMPLOYER_NOT_LISTED&#x60;: The user explicitly indicated that they did not see their current or previous employer in the list of employer names found. &#x60;STARTED&#x60;: The user began the bank income portion of the link flow. &#x60;INTERNAL_ERROR&#x60;: The user encountered an internal error. */ @JsonAdapter(CreditSessionBankEmploymentStatus.Adapter.class) public enum CreditSessionBankEmploymentStatus { APPROVED("APPROVED"), NO_EMPLOYERS_FOUND("NO_EMPLOYERS_FOUND"), EMPLOYER_NOT_LISTED("EMPLOYER_NOT_LISTED"), // 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; CreditSessionBankEmploymentStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static CreditSessionBankEmploymentStatus fromValue(String value) { for (CreditSessionBankEmploymentStatus b : CreditSessionBankEmploymentStatus.values()) { if (b.value.equals(value)) { return b; } } return CreditSessionBankEmploymentStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<CreditSessionBankEmploymentStatus> { @Override public void write(final JsonWriter jsonWriter, final CreditSessionBankEmploymentStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public CreditSessionBankEmploymentStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return CreditSessionBankEmploymentStatus.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/TransferLedgerDistributeResponse.java
src/main/java/com/plaid/client/model/TransferLedgerDistributeResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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/ledger/distribute&#x60; */ @ApiModel(description = "Defines the response schema for `/transfer/ledger/distribute`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferLedgerDistributeResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public TransferLedgerDistributeResponse 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; } TransferLedgerDistributeResponse transferLedgerDistributeResponse = (TransferLedgerDistributeResponse) o; return Objects.equals(this.requestId, transferLedgerDistributeResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferLedgerDistributeResponse {\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/BeaconReportUpdatedWebhook.java
src/main/java/com/plaid/client/model/BeaconReportUpdatedWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 one of your existing Beacon Reports has been modified or removed from the Beacon Network. */ @ApiModel(description = "Fired when one of your existing Beacon Reports has been modified or removed from the Beacon Network.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconReportUpdatedWebhook { 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_BEACON_REPORT_ID = "beacon_report_id"; @SerializedName(SERIALIZED_NAME_BEACON_REPORT_ID) private String beaconReportId; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public BeaconReportUpdatedWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;BEACON&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`BEACON`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public BeaconReportUpdatedWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;REPORT_UPDATED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`REPORT_UPDATED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public BeaconReportUpdatedWebhook beaconReportId(String beaconReportId) { this.beaconReportId = beaconReportId; return this; } /** * The ID of the associated Beacon Report. * @return beaconReportId **/ @ApiModelProperty(required = true, value = "The ID of the associated Beacon Report.") public String getBeaconReportId() { return beaconReportId; } public void setBeaconReportId(String beaconReportId) { this.beaconReportId = beaconReportId; } public BeaconReportUpdatedWebhook 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; } BeaconReportUpdatedWebhook beaconReportUpdatedWebhook = (BeaconReportUpdatedWebhook) o; return Objects.equals(this.webhookType, beaconReportUpdatedWebhook.webhookType) && Objects.equals(this.webhookCode, beaconReportUpdatedWebhook.webhookCode) && Objects.equals(this.beaconReportId, beaconReportUpdatedWebhook.beaconReportId) && Objects.equals(this.environment, beaconReportUpdatedWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, beaconReportId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconReportUpdatedWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" beaconReportId: ").append(toIndentedString(beaconReportId)).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/AssetOwners.java
src/main/java/com/plaid/client/model/AssetOwners.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.AssetOwner; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Documentation not found in the MISMO model viewer and not provided by Freddie Mac. */ @ApiModel(description = "Documentation not found in the MISMO model viewer and not provided by Freddie Mac.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AssetOwners { public static final String SERIALIZED_NAME_A_S_S_E_T_O_W_N_E_R = "ASSET_OWNER"; @SerializedName(SERIALIZED_NAME_A_S_S_E_T_O_W_N_E_R) private List<AssetOwner> ASSET_OWNER = new ArrayList<>(); public AssetOwners ASSET_OWNER(List<AssetOwner> ASSET_OWNER) { this.ASSET_OWNER = ASSET_OWNER; return this; } public AssetOwners addASSETOWNERItem(AssetOwner ASSET_OWNERItem) { this.ASSET_OWNER.add(ASSET_OWNERItem); return this; } /** * Multiple Occurances of Account Owners Full Name up to 4. * @return ASSET_OWNER **/ @ApiModelProperty(required = true, value = "Multiple Occurances of Account Owners Full Name up to 4.") public List<AssetOwner> getASSETOWNER() { return ASSET_OWNER; } public void setASSETOWNER(List<AssetOwner> ASSET_OWNER) { this.ASSET_OWNER = ASSET_OWNER; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AssetOwners assetOwners = (AssetOwners) o; return Objects.equals(this.ASSET_OWNER, assetOwners.ASSET_OWNER); } @Override public int hashCode() { return Objects.hash(ASSET_OWNER); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetOwners {\n"); sb.append(" ASSET_OWNER: ").append(toIndentedString(ASSET_OWNER)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferRecurringListRequest.java
src/main/java/com/plaid/client/model/TransferRecurringListRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * Defines the request schema for &#x60;/transfer/recurring/list&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/recurring/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferRecurringListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_START_TIME = "start_time"; @SerializedName(SERIALIZED_NAME_START_TIME) private OffsetDateTime startTime; public static final String SERIALIZED_NAME_END_TIME = "end_time"; @SerializedName(SERIALIZED_NAME_END_TIME) private OffsetDateTime endTime; public static final String SERIALIZED_NAME_COUNT = "count"; @SerializedName(SERIALIZED_NAME_COUNT) private Integer count = 25; public static final String SERIALIZED_NAME_OFFSET = "offset"; @SerializedName(SERIALIZED_NAME_OFFSET) private Integer offset = 0; public static final String SERIALIZED_NAME_FUNDING_ACCOUNT_ID = "funding_account_id"; @SerializedName(SERIALIZED_NAME_FUNDING_ACCOUNT_ID) private String fundingAccountId; public TransferRecurringListRequest 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 TransferRecurringListRequest 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 TransferRecurringListRequest startTime(OffsetDateTime startTime) { this.startTime = startTime; return this; } /** * The start &#x60;created&#x60; datetime of recurring transfers to list. This should be in RFC 3339 format (i.e. &#x60;2019-12-06T22:35:49Z&#x60;) * @return startTime **/ @javax.annotation.Nullable @ApiModelProperty(value = "The start `created` datetime of recurring transfers to list. This should be in RFC 3339 format (i.e. `2019-12-06T22:35:49Z`)") public OffsetDateTime getStartTime() { return startTime; } public void setStartTime(OffsetDateTime startTime) { this.startTime = startTime; } public TransferRecurringListRequest endTime(OffsetDateTime endTime) { this.endTime = endTime; return this; } /** * The end &#x60;created&#x60; datetime of recurring transfers to list. This should be in RFC 3339 format (i.e. &#x60;2019-12-06T22:35:49Z&#x60;) * @return endTime **/ @javax.annotation.Nullable @ApiModelProperty(value = "The end `created` datetime of recurring transfers to list. This should be in RFC 3339 format (i.e. `2019-12-06T22:35:49Z`)") public OffsetDateTime getEndTime() { return endTime; } public void setEndTime(OffsetDateTime endTime) { this.endTime = endTime; } public TransferRecurringListRequest count(Integer count) { this.count = count; return this; } /** * The maximum number of recurring transfers to return. * minimum: 1 * maximum: 25 * @return count **/ @javax.annotation.Nullable @ApiModelProperty(value = "The maximum number of recurring transfers to return.") public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } public TransferRecurringListRequest offset(Integer offset) { this.offset = offset; return this; } /** * The number of recurring transfers to skip before returning results. * minimum: 0 * @return offset **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of recurring transfers to skip before returning results.") public Integer getOffset() { return offset; } public void setOffset(Integer offset) { this.offset = offset; } public TransferRecurringListRequest fundingAccountId(String fundingAccountId) { this.fundingAccountId = fundingAccountId; return this; } /** * Filter recurring transfers to only those with the specified &#x60;funding_account_id&#x60;. * @return fundingAccountId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Filter recurring transfers to only those with the specified `funding_account_id`.") public String getFundingAccountId() { return fundingAccountId; } public void setFundingAccountId(String fundingAccountId) { this.fundingAccountId = fundingAccountId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferRecurringListRequest transferRecurringListRequest = (TransferRecurringListRequest) o; return Objects.equals(this.clientId, transferRecurringListRequest.clientId) && Objects.equals(this.secret, transferRecurringListRequest.secret) && Objects.equals(this.startTime, transferRecurringListRequest.startTime) && Objects.equals(this.endTime, transferRecurringListRequest.endTime) && Objects.equals(this.count, transferRecurringListRequest.count) && Objects.equals(this.offset, transferRecurringListRequest.offset) && Objects.equals(this.fundingAccountId, transferRecurringListRequest.fundingAccountId); } @Override public int hashCode() { return Objects.hash(clientId, secret, startTime, endTime, count, offset, fundingAccountId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferRecurringListRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" startTime: ").append(toIndentedString(startTime)).append("\n"); sb.append(" endTime: ").append(toIndentedString(endTime)).append("\n"); sb.append(" count: ").append(toIndentedString(count)).append("\n"); sb.append(" offset: ").append(toIndentedString(offset)).append("\n"); sb.append(" fundingAccountId: ").append(toIndentedString(fundingAccountId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProtectReportType.java
src/main/java/com/plaid/client/model/ProtectReportType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 incident being reported. &#x60;USER_ACCOUNT_TAKEOVER&#x60; - Indicates that a legitimate user&#39;s account was accessed or controlled by an unauthorized party. &#x60;FALSE_IDENTITY&#x60; - Indicates that a user created an account using stolen or fabricated identity information. &#x60;STOLEN_IDENTITY&#x60; - Indicates that a user created an account using identity information belonging to a real individual without their consent. &#x60;SYNTHETIC_IDENTITY&#x60; - Indicates that a user created an account using a fake or partially fabricated identity (e.g., combining real and fake information to form a new persona). &#x60;MULTIPLE_USER_ACCOUNTS&#x60; - Indicates that the same individual is operating multiple accounts in violation of policy. &#x60;SCAM_VICTIM&#x60; - Indicates that the user was tricked into authorizing or sending funds as part of a scam. &#x60;BANK_ACCOUNT_TAKEOVER&#x60; - Indicates that a user&#39;s linked bank account was accessed or misused by an unauthorized party. &#x60;BANK_CONNECTION_REVOKED&#x60; - Indicates that a linked bank account connection was revoked by the financial institution, often due to suspected misuse, fraud, or security concerns. &#x60;CARD_TESTING&#x60; - Indicates that a card was used in small or repeated transactions to test its validity. &#x60;UNAUTHORIZED_TRANSACTION&#x60; - Indicates that a transaction was made without the user&#39;s consent or authorization. &#x60;CARD_CHARGEBACK&#x60; - Indicates that a card transaction was reversed via a chargeback claim. &#x60;ACH_RETURN&#x60; - Indicates that an ACH transaction was returned or reversed by the bank. &#x60;DISPUTE&#x60; - Indicates that a user filed a dispute regarding a transaction or account activity. &#x60;FIRST_PARTY_FRAUD&#x60; - Indicates that a user intentionally misrepresented themselves or their actions for financial gain. &#x60;MISSED_PAYMENT&#x60; - Indicates that a user failed to make a required payment on time. &#x60;LOAN_STACKING&#x60; - Indicates that a user applied for or took out multiple loans simultaneously beyond their ability to repay. &#x60;MONEY_LAUNDERING&#x60; - Indicates that funds are being moved through accounts to obscure their illicit origin. &#x60;NO_FRAUD&#x60; - Indicates that an investigation determined no fraudulent activity occurred on user/event (positive label) &#x60;OTHER&#x60; - Indicates that the case involves fraud or financial risk not covered by other report types. Requires notes describing the report. */ @JsonAdapter(ProtectReportType.Adapter.class) public enum ProtectReportType { USER_ACCOUNT_TAKEOVER("USER_ACCOUNT_TAKEOVER"), FALSE_IDENTITY("FALSE_IDENTITY"), STOLEN_IDENTITY("STOLEN_IDENTITY"), SYNTHETIC_IDENTITY("SYNTHETIC_IDENTITY"), MULTIPLE_USER_ACCOUNTS("MULTIPLE_USER_ACCOUNTS"), SCAM_VICTIM("SCAM_VICTIM"), BANK_ACCOUNT_TAKEOVER("BANK_ACCOUNT_TAKEOVER"), BANK_CONNECTION_REVOKED("BANK_CONNECTION_REVOKED"), CARD_TESTING("CARD_TESTING"), UNAUTHORIZED_TRANSACTION("UNAUTHORIZED_TRANSACTION"), CARD_CHARGEBACK("CARD_CHARGEBACK"), ACH_RETURN("ACH_RETURN"), DISPUTE("DISPUTE"), FIRST_PARTY_FRAUD("FIRST_PARTY_FRAUD"), MISSED_PAYMENT("MISSED_PAYMENT"), LOAN_STACKING("LOAN_STACKING"), MONEY_LAUNDERING("MONEY_LAUNDERING"), NO_FRAUD("NO_FRAUD"), OTHER("OTHER"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; ProtectReportType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static ProtectReportType fromValue(String value) { for (ProtectReportType b : ProtectReportType.values()) { if (b.value.equals(value)) { return b; } } return ProtectReportType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<ProtectReportType> { @Override public void write(final JsonWriter jsonWriter, final ProtectReportType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public ProtectReportType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return ProtectReportType.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/WalletTransactionCounterpartyNumbers.java
src/main/java/com/plaid/client/model/WalletTransactionCounterpartyNumbers.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.WalletTransactionCounterpartyBACS; import com.plaid.client.model.WalletTransactionCounterpartyInternational; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The counterparty&#39;s bank account numbers. Exactly one of IBAN or BACS data is required. */ @ApiModel(description = "The counterparty's bank account numbers. Exactly one of IBAN or BACS data is required.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WalletTransactionCounterpartyNumbers { public static final String SERIALIZED_NAME_BACS = "bacs"; @SerializedName(SERIALIZED_NAME_BACS) private WalletTransactionCounterpartyBACS bacs; public static final String SERIALIZED_NAME_INTERNATIONAL = "international"; @SerializedName(SERIALIZED_NAME_INTERNATIONAL) private WalletTransactionCounterpartyInternational international; public WalletTransactionCounterpartyNumbers bacs(WalletTransactionCounterpartyBACS bacs) { this.bacs = bacs; return this; } /** * Get bacs * @return bacs **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public WalletTransactionCounterpartyBACS getBacs() { return bacs; } public void setBacs(WalletTransactionCounterpartyBACS bacs) { this.bacs = bacs; } public WalletTransactionCounterpartyNumbers international(WalletTransactionCounterpartyInternational international) { this.international = international; return this; } /** * Get international * @return international **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public WalletTransactionCounterpartyInternational getInternational() { return international; } public void setInternational(WalletTransactionCounterpartyInternational international) { this.international = international; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } WalletTransactionCounterpartyNumbers walletTransactionCounterpartyNumbers = (WalletTransactionCounterpartyNumbers) o; return Objects.equals(this.bacs, walletTransactionCounterpartyNumbers.bacs) && Objects.equals(this.international, walletTransactionCounterpartyNumbers.international); } @Override public int hashCode() { return Objects.hash(bacs, international); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WalletTransactionCounterpartyNumbers {\n"); sb.append(" bacs: ").append(toIndentedString(bacs)).append("\n"); sb.append(" international: ").append(toIndentedString(international)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetReportFreddieGetRequest.java
src/main/java/com/plaid/client/model/AssetReportFreddieGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * AssetReportFreddieGetRequest defines the request schema for &#x60;credit/asset_report/freddie_mac/get&#x60; */ @ApiModel(description = "AssetReportFreddieGetRequest defines the request schema for `credit/asset_report/freddie_mac/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AssetReportFreddieGetRequest { public static final String SERIALIZED_NAME_AUDIT_COPY_TOKEN = "audit_copy_token"; @SerializedName(SERIALIZED_NAME_AUDIT_COPY_TOKEN) private String auditCopyToken; public static final String SERIALIZED_NAME_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 AssetReportFreddieGetRequest auditCopyToken(String auditCopyToken) { this.auditCopyToken = auditCopyToken; return this; } /** * A token that can be shared with a third party auditor to allow them to obtain access to the Asset Report. This token should be stored securely. * @return auditCopyToken **/ @ApiModelProperty(required = true, value = "A token that can be shared with a third party auditor to allow them to obtain access to the Asset Report. This token should be stored securely.") public String getAuditCopyToken() { return auditCopyToken; } public void setAuditCopyToken(String auditCopyToken) { this.auditCopyToken = auditCopyToken; } public AssetReportFreddieGetRequest 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 AssetReportFreddieGetRequest 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; } AssetReportFreddieGetRequest assetReportFreddieGetRequest = (AssetReportFreddieGetRequest) o; return Objects.equals(this.auditCopyToken, assetReportFreddieGetRequest.auditCopyToken) && Objects.equals(this.clientId, assetReportFreddieGetRequest.clientId) && Objects.equals(this.secret, assetReportFreddieGetRequest.secret); } @Override public int hashCode() { return Objects.hash(auditCopyToken, clientId, secret); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetReportFreddieGetRequest {\n"); sb.append(" auditCopyToken: ").append(toIndentedString(auditCopyToken)).append("\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraCashflowInsightsReport.java
src/main/java/com/plaid/client/model/CraCashflowInsightsReport.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.PlaidCheckScore; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * Contains data for the CRA Cashflow Insights Report. */ @ApiModel(description = "Contains data for the CRA Cashflow Insights Report.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCashflowInsightsReport { public static final String SERIALIZED_NAME_REPORT_ID = "report_id"; @SerializedName(SERIALIZED_NAME_REPORT_ID) private String reportId; public static final String SERIALIZED_NAME_GENERATED_TIME = "generated_time"; @SerializedName(SERIALIZED_NAME_GENERATED_TIME) private OffsetDateTime generatedTime; public static final String SERIALIZED_NAME_PLAID_CHECK_SCORE = "plaid_check_score"; @SerializedName(SERIALIZED_NAME_PLAID_CHECK_SCORE) private PlaidCheckScore plaidCheckScore; public static final String SERIALIZED_NAME_ATTRIBUTES = "attributes"; @SerializedName(SERIALIZED_NAME_ATTRIBUTES) private Object attributes; public CraCashflowInsightsReport reportId(String reportId) { this.reportId = reportId; return this; } /** * The unique identifier associated with the report object. * @return reportId **/ @ApiModelProperty(required = true, value = "The unique identifier associated with the report object.") public String getReportId() { return reportId; } public void setReportId(String reportId) { this.reportId = reportId; } public CraCashflowInsightsReport generatedTime(OffsetDateTime generatedTime) { this.generatedTime = generatedTime; return this; } /** * The time when the report was generated. * @return generatedTime **/ @ApiModelProperty(required = true, value = "The time when the report was generated.") public OffsetDateTime getGeneratedTime() { return generatedTime; } public void setGeneratedTime(OffsetDateTime generatedTime) { this.generatedTime = generatedTime; } public CraCashflowInsightsReport plaidCheckScore(PlaidCheckScore plaidCheckScore) { this.plaidCheckScore = plaidCheckScore; return this; } /** * Get plaidCheckScore * @return plaidCheckScore **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PlaidCheckScore getPlaidCheckScore() { return plaidCheckScore; } public void setPlaidCheckScore(PlaidCheckScore plaidCheckScore) { this.plaidCheckScore = plaidCheckScore; } public CraCashflowInsightsReport attributes(Object attributes) { this.attributes = attributes; return this; } /** * A map of cash flow attributes, where the key is a string, and the value is a float, int, or boolean. The specific list of attributes will depend on the cash flow attributes version used. For a full list of attributes, contact your account manager. * @return attributes **/ @javax.annotation.Nullable @ApiModelProperty(value = "A map of cash flow attributes, where the key is a string, and the value is a float, int, or boolean. The specific list of attributes will depend on the cash flow attributes version used. For a full list of attributes, contact your account manager.") public Object getAttributes() { return attributes; } public void setAttributes(Object attributes) { this.attributes = attributes; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraCashflowInsightsReport craCashflowInsightsReport = (CraCashflowInsightsReport) o; return Objects.equals(this.reportId, craCashflowInsightsReport.reportId) && Objects.equals(this.generatedTime, craCashflowInsightsReport.generatedTime) && Objects.equals(this.plaidCheckScore, craCashflowInsightsReport.plaidCheckScore) && Objects.equals(this.attributes, craCashflowInsightsReport.attributes); } @Override public int hashCode() { return Objects.hash(reportId, generatedTime, plaidCheckScore, attributes); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCashflowInsightsReport {\n"); sb.append(" reportId: ").append(toIndentedString(reportId)).append("\n"); sb.append(" generatedTime: ").append(toIndentedString(generatedTime)).append("\n"); sb.append(" plaidCheckScore: ").append(toIndentedString(plaidCheckScore)).append("\n"); sb.append(" attributes: ").append(toIndentedString(attributes)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaymentProfileGetRequest.java
src/main/java/com/plaid/client/model/PaymentProfileGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * PaymentProfileGetRequest defines the request schema for &#x60;/payment_profile/get&#x60; */ @ApiModel(description = "PaymentProfileGetRequest defines the request schema for `/payment_profile/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentProfileGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_PAYMENT_PROFILE_TOKEN = "payment_profile_token"; @SerializedName(SERIALIZED_NAME_PAYMENT_PROFILE_TOKEN) private String paymentProfileToken; public PaymentProfileGetRequest 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 PaymentProfileGetRequest 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 PaymentProfileGetRequest paymentProfileToken(String paymentProfileToken) { this.paymentProfileToken = paymentProfileToken; return this; } /** * A payment profile token associated with the Payment Profile data that is being requested. * @return paymentProfileToken **/ @ApiModelProperty(required = true, value = "A payment profile token associated with the Payment Profile data that is being requested.") public String getPaymentProfileToken() { return paymentProfileToken; } public void setPaymentProfileToken(String paymentProfileToken) { this.paymentProfileToken = paymentProfileToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaymentProfileGetRequest paymentProfileGetRequest = (PaymentProfileGetRequest) o; return Objects.equals(this.clientId, paymentProfileGetRequest.clientId) && Objects.equals(this.secret, paymentProfileGetRequest.secret) && Objects.equals(this.paymentProfileToken, paymentProfileGetRequest.paymentProfileToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, paymentProfileToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentProfileGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" paymentProfileToken: ").append(toIndentedString(paymentProfileToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SandboxBankTransferSimulateRequest.java
src/main/java/com/plaid/client/model/SandboxBankTransferSimulateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.BankTransferFailure; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the request schema for &#x60;/sandbox/bank_transfer/simulate&#x60; */ @ApiModel(description = "Defines the request schema for `/sandbox/bank_transfer/simulate`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SandboxBankTransferSimulateRequest { 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_BANK_TRANSFER_ID = "bank_transfer_id"; @SerializedName(SERIALIZED_NAME_BANK_TRANSFER_ID) private String bankTransferId; 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 BankTransferFailure failureReason; public SandboxBankTransferSimulateRequest 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 SandboxBankTransferSimulateRequest 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 SandboxBankTransferSimulateRequest bankTransferId(String bankTransferId) { this.bankTransferId = bankTransferId; return this; } /** * Plaid’s unique identifier for a bank transfer. * @return bankTransferId **/ @ApiModelProperty(required = true, value = "Plaid’s unique identifier for a bank transfer.") public String getBankTransferId() { return bankTransferId; } public void setBankTransferId(String bankTransferId) { this.bankTransferId = bankTransferId; } public SandboxBankTransferSimulateRequest eventType(String eventType) { this.eventType = eventType; return this; } /** * The asynchronous event to be simulated. May be: &#x60;posted&#x60;, &#x60;failed&#x60;, or &#x60;reversed&#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;reversed&#x60; * @return eventType **/ @ApiModelProperty(required = true, value = "The asynchronous event to be simulated. May be: `posted`, `failed`, or `reversed`. 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` --> `reversed` ") public String getEventType() { return eventType; } public void setEventType(String eventType) { this.eventType = eventType; } public SandboxBankTransferSimulateRequest failureReason(BankTransferFailure failureReason) { this.failureReason = failureReason; return this; } /** * Get failureReason * @return failureReason **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public BankTransferFailure getFailureReason() { return failureReason; } public void setFailureReason(BankTransferFailure failureReason) { this.failureReason = failureReason; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SandboxBankTransferSimulateRequest sandboxBankTransferSimulateRequest = (SandboxBankTransferSimulateRequest) o; return Objects.equals(this.clientId, sandboxBankTransferSimulateRequest.clientId) && Objects.equals(this.secret, sandboxBankTransferSimulateRequest.secret) && Objects.equals(this.bankTransferId, sandboxBankTransferSimulateRequest.bankTransferId) && Objects.equals(this.eventType, sandboxBankTransferSimulateRequest.eventType) && Objects.equals(this.failureReason, sandboxBankTransferSimulateRequest.failureReason); } @Override public int hashCode() { return Objects.hash(clientId, secret, bankTransferId, eventType, failureReason); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SandboxBankTransferSimulateRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" bankTransferId: ").append(toIndentedString(bankTransferId)).append("\n"); sb.append(" eventType: ").append(toIndentedString(eventType)).append("\n"); sb.append(" failureReason: ").append(toIndentedString(failureReason)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/OAuthIntrospectRequest.java
src/main/java/com/plaid/client/model/OAuthIntrospectRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * OAuth token introspect request. */ @ApiModel(description = "OAuth token introspect request.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class OAuthIntrospectRequest { public static final String SERIALIZED_NAME_TOKEN = "token"; @SerializedName(SERIALIZED_NAME_TOKEN) private String token; public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_CLIENT_SECRET = "client_secret"; @SerializedName(SERIALIZED_NAME_CLIENT_SECRET) private String clientSecret; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public OAuthIntrospectRequest token(String token) { this.token = token; return this; } /** * An OAuth token of any type (&#x60;refresh_token&#x60;, &#x60;access_token&#x60;, etc) * @return token **/ @ApiModelProperty(required = true, value = "An OAuth token of any type (`refresh_token`, `access_token`, etc)") public String getToken() { return token; } public void setToken(String token) { this.token = token; } public OAuthIntrospectRequest 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 OAuthIntrospectRequest clientSecret(String clientSecret) { this.clientSecret = clientSecret; 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 as either &#x60;secret&#x60; or &#x60;client_secret&#x60;. * @return clientSecret **/ @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 as either `secret` or `client_secret`.") public String getClientSecret() { return clientSecret; } public void setClientSecret(String clientSecret) { this.clientSecret = clientSecret; } public OAuthIntrospectRequest 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 as either &#x60;secret&#x60; or &#x60;client_secret&#x60;. * @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 as either `secret` or `client_secret`.") 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; } OAuthIntrospectRequest oauthIntrospectRequest = (OAuthIntrospectRequest) o; return Objects.equals(this.token, oauthIntrospectRequest.token) && Objects.equals(this.clientId, oauthIntrospectRequest.clientId) && Objects.equals(this.clientSecret, oauthIntrospectRequest.clientSecret) && Objects.equals(this.secret, oauthIntrospectRequest.secret); } @Override public int hashCode() { return Objects.hash(token, clientId, clientSecret, secret); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class OAuthIntrospectRequest {\n"); sb.append(" token: ").append(toIndentedString(token)).append("\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" clientSecret: ").append(toIndentedString(clientSecret)).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/TransactionsEnrichRequest.java
src/main/java/com/plaid/client/model/TransactionsEnrichRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.ClientProvidedTransaction; import com.plaid.client.model.TransactionsEnrichRequestOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * TransactionsEnrichRequest defines the request schema for &#x60;/transactions/enrich&#x60;. */ @ApiModel(description = "TransactionsEnrichRequest defines the request schema for `/transactions/enrich`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionsEnrichRequest { 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_ACCOUNT_TYPE = "account_type"; @SerializedName(SERIALIZED_NAME_ACCOUNT_TYPE) private String accountType; public static final String SERIALIZED_NAME_TRANSACTIONS = "transactions"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS) private List<ClientProvidedTransaction> transactions = new ArrayList<>(); public static final String SERIALIZED_NAME_OPTIONS = "options"; @SerializedName(SERIALIZED_NAME_OPTIONS) private TransactionsEnrichRequestOptions options; public TransactionsEnrichRequest 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 TransactionsEnrichRequest 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 TransactionsEnrichRequest accountType(String accountType) { this.accountType = accountType; return this; } /** * The account type for the requested transactions (either &#x60;depository&#x60; or &#x60;credit&#x60;). * @return accountType **/ @ApiModelProperty(required = true, value = "The account type for the requested transactions (either `depository` or `credit`).") public String getAccountType() { return accountType; } public void setAccountType(String accountType) { this.accountType = accountType; } public TransactionsEnrichRequest transactions(List<ClientProvidedTransaction> transactions) { this.transactions = transactions; return this; } public TransactionsEnrichRequest addTransactionsItem(ClientProvidedTransaction transactionsItem) { this.transactions.add(transactionsItem); return this; } /** * An array of transaction objects to be enriched by Plaid. Maximum of 100 transactions per request. * @return transactions **/ @ApiModelProperty(required = true, value = "An array of transaction objects to be enriched by Plaid. Maximum of 100 transactions per request.") public List<ClientProvidedTransaction> getTransactions() { return transactions; } public void setTransactions(List<ClientProvidedTransaction> transactions) { this.transactions = transactions; } public TransactionsEnrichRequest options(TransactionsEnrichRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransactionsEnrichRequestOptions getOptions() { return options; } public void setOptions(TransactionsEnrichRequestOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransactionsEnrichRequest transactionsEnrichRequest = (TransactionsEnrichRequest) o; return Objects.equals(this.clientId, transactionsEnrichRequest.clientId) && Objects.equals(this.secret, transactionsEnrichRequest.secret) && Objects.equals(this.accountType, transactionsEnrichRequest.accountType) && Objects.equals(this.transactions, transactionsEnrichRequest.transactions) && Objects.equals(this.options, transactionsEnrichRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, secret, accountType, transactions, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsEnrichRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" accountType: ").append(toIndentedString(accountType)).append("\n"); sb.append(" transactions: ").append(toIndentedString(transactions)).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/MonthlySummary.java
src/main/java/com/plaid/client/model/MonthlySummary.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * Monthly summary of transactions within a specific time period, showing aggregated amounts. */ @ApiModel(description = "Monthly summary of transactions within a specific time period, showing aggregated amounts.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class MonthlySummary { public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) private LocalDate startDate; public static final String SERIALIZED_NAME_END_DATE = "end_date"; @SerializedName(SERIALIZED_NAME_END_DATE) private LocalDate endDate; public static final String SERIALIZED_NAME_TOTAL_AMOUNT = "total_amount"; @SerializedName(SERIALIZED_NAME_TOTAL_AMOUNT) private AmountWithCurrency totalAmount; public MonthlySummary startDate(LocalDate startDate) { this.startDate = startDate; return this; } /** * The start date of the month for the given report time window. Will be provided in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). * @return startDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The start date of the month for the given report time window. Will be provided in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD).") public LocalDate getStartDate() { return startDate; } public void setStartDate(LocalDate startDate) { this.startDate = startDate; } public MonthlySummary endDate(LocalDate endDate) { this.endDate = endDate; return this; } /** * The end date of the month for the given report time window. Will be provided in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). * @return endDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The end date of the month for the given report time window. Will be provided in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD).") public LocalDate getEndDate() { return endDate; } public void setEndDate(LocalDate endDate) { this.endDate = endDate; } public MonthlySummary totalAmount(AmountWithCurrency totalAmount) { this.totalAmount = totalAmount; return this; } /** * Get totalAmount * @return totalAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AmountWithCurrency getTotalAmount() { return totalAmount; } public void setTotalAmount(AmountWithCurrency totalAmount) { this.totalAmount = totalAmount; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } MonthlySummary monthlySummary = (MonthlySummary) o; return Objects.equals(this.startDate, monthlySummary.startDate) && Objects.equals(this.endDate, monthlySummary.endDate) && Objects.equals(this.totalAmount, monthlySummary.totalAmount); } @Override public int hashCode() { return Objects.hash(startDate, endDate, totalAmount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class MonthlySummary {\n"); sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n"); sb.append(" endDate: ").append(toIndentedString(endDate)).append("\n"); sb.append(" totalAmount: ").append(toIndentedString(totalAmount)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PartnerEndCustomerCRAUseCase.java
src/main/java/com/plaid/client/model/PartnerEndCustomerCRAUseCase.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * A CRA use case under a permissible purpose. */ @JsonAdapter(PartnerEndCustomerCRAUseCase.Adapter.class) public enum PartnerEndCustomerCRAUseCase { CREDIT_UNDERWRITING("CREDIT_UNDERWRITING"), TENANT_SCREENING("TENANT_SCREENING"), INVESTOR_OR_SERVICER_OF_CREDIT("INVESTOR_OR_SERVICER_OF_CREDIT"), UTILITIES("UTILITIES"), BANK_ACCOUNT_OPENING("BANK_ACCOUNT_OPENING"), IDENTITY_VERIFICATION_FRAUD_PREVENTION("IDENTITY_VERIFICATION_FRAUD_PREVENTION"), COLLECTIONS_DEBT_RECOVERY("COLLECTIONS_DEBT_RECOVERY"), // 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; PartnerEndCustomerCRAUseCase(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PartnerEndCustomerCRAUseCase fromValue(String value) { for (PartnerEndCustomerCRAUseCase b : PartnerEndCustomerCRAUseCase.values()) { if (b.value.equals(value)) { return b; } } return PartnerEndCustomerCRAUseCase.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<PartnerEndCustomerCRAUseCase> { @Override public void write(final JsonWriter jsonWriter, final PartnerEndCustomerCRAUseCase enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PartnerEndCustomerCRAUseCase read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PartnerEndCustomerCRAUseCase.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/SelfieCapture.java
src/main/java/com/plaid/client/model/SelfieCapture.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 image or video capture of a selfie. Only one of image or video URL will be populated per selfie. */ @ApiModel(description = "The image or video capture of a selfie. Only one of image or video URL will be populated per selfie.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SelfieCapture { public static final String SERIALIZED_NAME_IMAGE_URL = "image_url"; @SerializedName(SERIALIZED_NAME_IMAGE_URL) private String imageUrl; public static final String SERIALIZED_NAME_VIDEO_URL = "video_url"; @SerializedName(SERIALIZED_NAME_VIDEO_URL) private String videoUrl; public SelfieCapture imageUrl(String imageUrl) { this.imageUrl = imageUrl; return this; } /** * Temporary URL for downloading an image selfie capture. * @return imageUrl **/ @javax.annotation.Nullable @ApiModelProperty(example = "https://example.plaid.com/verifications/idv_52xR9LKo77r1Np/selfie/liveness.jpeg", required = true, value = "Temporary URL for downloading an image selfie capture.") public String getImageUrl() { return imageUrl; } public void setImageUrl(String imageUrl) { this.imageUrl = imageUrl; } public SelfieCapture videoUrl(String videoUrl) { this.videoUrl = videoUrl; return this; } /** * Temporary URL for downloading a video selfie capture. * @return videoUrl **/ @javax.annotation.Nullable @ApiModelProperty(example = "https://example.plaid.com/verifications/idv_52xR9LKo77r1Np/selfie/liveness.webm", required = true, value = "Temporary URL for downloading a video selfie capture.") public String getVideoUrl() { return videoUrl; } public void setVideoUrl(String videoUrl) { this.videoUrl = videoUrl; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SelfieCapture selfieCapture = (SelfieCapture) o; return Objects.equals(this.imageUrl, selfieCapture.imageUrl) && Objects.equals(this.videoUrl, selfieCapture.videoUrl); } @Override public int hashCode() { return Objects.hash(imageUrl, videoUrl); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SelfieCapture {\n"); sb.append(" imageUrl: ").append(toIndentedString(imageUrl)).append("\n"); sb.append(" videoUrl: ").append(toIndentedString(videoUrl)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BaseReportWarning.java
src/main/java/com/plaid/client/model/BaseReportWarning.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.BaseReportWarningCode; import com.plaid.client.model.Cause; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * It is possible for a Base Report to be returned with missing account owner information. In such cases, the Base Report will contain warning data in the response, indicating why obtaining the owner information failed. */ @ApiModel(description = "It is possible for a Base Report to be returned with missing account owner information. In such cases, the Base Report will contain warning data in the response, indicating why obtaining the owner information failed.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BaseReportWarning { public static final String SERIALIZED_NAME_WARNING_TYPE = "warning_type"; @SerializedName(SERIALIZED_NAME_WARNING_TYPE) private String warningType; public static final String SERIALIZED_NAME_WARNING_CODE = "warning_code"; @SerializedName(SERIALIZED_NAME_WARNING_CODE) private BaseReportWarningCode warningCode; public static final String SERIALIZED_NAME_CAUSE = "cause"; @SerializedName(SERIALIZED_NAME_CAUSE) private Cause cause; public BaseReportWarning warningType(String warningType) { this.warningType = warningType; return this; } /** * The warning type, which will always be &#x60;BASE_REPORT_WARNING&#x60; * @return warningType **/ @ApiModelProperty(required = true, value = "The warning type, which will always be `BASE_REPORT_WARNING`") public String getWarningType() { return warningType; } public void setWarningType(String warningType) { this.warningType = warningType; } public BaseReportWarning warningCode(BaseReportWarningCode warningCode) { this.warningCode = warningCode; return this; } /** * Get warningCode * @return warningCode **/ @ApiModelProperty(required = true, value = "") public BaseReportWarningCode getWarningCode() { return warningCode; } public void setWarningCode(BaseReportWarningCode warningCode) { this.warningCode = warningCode; } public BaseReportWarning cause(Cause cause) { this.cause = cause; return this; } /** * Get cause * @return cause **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public Cause getCause() { return cause; } public void setCause(Cause cause) { this.cause = cause; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BaseReportWarning baseReportWarning = (BaseReportWarning) o; return Objects.equals(this.warningType, baseReportWarning.warningType) && Objects.equals(this.warningCode, baseReportWarning.warningCode) && Objects.equals(this.cause, baseReportWarning.cause); } @Override public int hashCode() { return Objects.hash(warningType, warningCode, cause); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BaseReportWarning {\n"); sb.append(" warningType: ").append(toIndentedString(warningType)).append("\n"); sb.append(" warningCode: ").append(toIndentedString(warningCode)).append("\n"); sb.append(" cause: ").append(toIndentedString(cause)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditAuditCopyTokenRemoveRequest.java
src/main/java/com/plaid/client/model/CreditAuditCopyTokenRemoveRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * CreditAuditCopyTokenRemoveRequest defines the request schema for &#x60;/credit/audit_copy_token/remove&#x60; */ @ApiModel(description = "CreditAuditCopyTokenRemoveRequest defines the request schema for `/credit/audit_copy_token/remove`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditAuditCopyTokenRemoveRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_AUDIT_COPY_TOKEN = "audit_copy_token"; @SerializedName(SERIALIZED_NAME_AUDIT_COPY_TOKEN) private String auditCopyToken; public CreditAuditCopyTokenRemoveRequest 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 CreditAuditCopyTokenRemoveRequest 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 CreditAuditCopyTokenRemoveRequest auditCopyToken(String auditCopyToken) { this.auditCopyToken = auditCopyToken; return this; } /** * The &#x60;audit_copy_token&#x60; granting access to the Audit Copy you would like to revoke. * @return auditCopyToken **/ @ApiModelProperty(required = true, value = "The `audit_copy_token` granting access to the Audit Copy you would like to revoke.") public String getAuditCopyToken() { return auditCopyToken; } public void setAuditCopyToken(String auditCopyToken) { this.auditCopyToken = auditCopyToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditAuditCopyTokenRemoveRequest creditAuditCopyTokenRemoveRequest = (CreditAuditCopyTokenRemoveRequest) o; return Objects.equals(this.clientId, creditAuditCopyTokenRemoveRequest.clientId) && Objects.equals(this.secret, creditAuditCopyTokenRemoveRequest.secret) && Objects.equals(this.auditCopyToken, creditAuditCopyTokenRemoveRequest.auditCopyToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, auditCopyToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditAuditCopyTokenRemoveRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" auditCopyToken: ").append(toIndentedString(auditCopyToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/UserTransactionsRefreshRequest.java
src/main/java/com/plaid/client/model/UserTransactionsRefreshRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * UserTransactionsRefreshRequest defines the request schema for &#x60;user/transactions/refresh&#x60; */ @ApiModel(description = "UserTransactionsRefreshRequest defines the request schema for `user/transactions/refresh`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class UserTransactionsRefreshRequest { public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_CLIENT_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 UserTransactionsRefreshRequest userId(String userId) { this.userId = userId; return this; } /** * A Plaid-generated ID that identifies the end user. * @return userId **/ @ApiModelProperty(required = true, value = "A Plaid-generated ID that identifies the end user.") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public UserTransactionsRefreshRequest 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 UserTransactionsRefreshRequest 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; } UserTransactionsRefreshRequest userTransactionsRefreshRequest = (UserTransactionsRefreshRequest) o; return Objects.equals(this.userId, userTransactionsRefreshRequest.userId) && Objects.equals(this.clientId, userTransactionsRefreshRequest.clientId) && Objects.equals(this.secret, userTransactionsRefreshRequest.secret); } @Override public int hashCode() { return Objects.hash(userId, clientId, secret); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class UserTransactionsRefreshRequest {\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditPayStub.java
src/main/java/com/plaid/client/model/CreditPayStub.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.CreditDocumentMetadata; import com.plaid.client.model.CreditPayStubDeductions; import com.plaid.client.model.CreditPayStubEarnings; import com.plaid.client.model.CreditPayStubEmployee; import com.plaid.client.model.CreditPayStubEmployer; import com.plaid.client.model.CreditPayStubNetPay; import com.plaid.client.model.PayStubPayPeriodDetails; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object representing an end user&#39;s pay stub. */ @ApiModel(description = "An object representing an end user's pay stub.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditPayStub { public static final String SERIALIZED_NAME_DEDUCTIONS = "deductions"; @SerializedName(SERIALIZED_NAME_DEDUCTIONS) private CreditPayStubDeductions deductions; public static final String SERIALIZED_NAME_DOCUMENT_ID = "document_id"; @SerializedName(SERIALIZED_NAME_DOCUMENT_ID) private String documentId; public static final String SERIALIZED_NAME_DOCUMENT_METADATA = "document_metadata"; @SerializedName(SERIALIZED_NAME_DOCUMENT_METADATA) private CreditDocumentMetadata documentMetadata; public static final String SERIALIZED_NAME_EARNINGS = "earnings"; @SerializedName(SERIALIZED_NAME_EARNINGS) private CreditPayStubEarnings earnings; public static final String SERIALIZED_NAME_EMPLOYEE = "employee"; @SerializedName(SERIALIZED_NAME_EMPLOYEE) private CreditPayStubEmployee employee; public static final String SERIALIZED_NAME_EMPLOYER = "employer"; @SerializedName(SERIALIZED_NAME_EMPLOYER) private CreditPayStubEmployer employer; public static final String SERIALIZED_NAME_NET_PAY = "net_pay"; @SerializedName(SERIALIZED_NAME_NET_PAY) private CreditPayStubNetPay netPay; public static final String SERIALIZED_NAME_PAY_PERIOD_DETAILS = "pay_period_details"; @SerializedName(SERIALIZED_NAME_PAY_PERIOD_DETAILS) private PayStubPayPeriodDetails payPeriodDetails; public CreditPayStub deductions(CreditPayStubDeductions deductions) { this.deductions = deductions; return this; } /** * Get deductions * @return deductions **/ @ApiModelProperty(required = true, value = "") public CreditPayStubDeductions getDeductions() { return deductions; } public void setDeductions(CreditPayStubDeductions deductions) { this.deductions = deductions; } public CreditPayStub documentId(String documentId) { this.documentId = documentId; return this; } /** * An identifier of the document referenced by the document metadata. * @return documentId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "An identifier of the document referenced by the document metadata.") public String getDocumentId() { return documentId; } public void setDocumentId(String documentId) { this.documentId = documentId; } public CreditPayStub documentMetadata(CreditDocumentMetadata documentMetadata) { this.documentMetadata = documentMetadata; return this; } /** * Get documentMetadata * @return documentMetadata **/ @ApiModelProperty(required = true, value = "") public CreditDocumentMetadata getDocumentMetadata() { return documentMetadata; } public void setDocumentMetadata(CreditDocumentMetadata documentMetadata) { this.documentMetadata = documentMetadata; } public CreditPayStub earnings(CreditPayStubEarnings earnings) { this.earnings = earnings; return this; } /** * Get earnings * @return earnings **/ @ApiModelProperty(required = true, value = "") public CreditPayStubEarnings getEarnings() { return earnings; } public void setEarnings(CreditPayStubEarnings earnings) { this.earnings = earnings; } public CreditPayStub employee(CreditPayStubEmployee employee) { this.employee = employee; return this; } /** * Get employee * @return employee **/ @ApiModelProperty(required = true, value = "") public CreditPayStubEmployee getEmployee() { return employee; } public void setEmployee(CreditPayStubEmployee employee) { this.employee = employee; } public CreditPayStub employer(CreditPayStubEmployer employer) { this.employer = employer; return this; } /** * Get employer * @return employer **/ @ApiModelProperty(required = true, value = "") public CreditPayStubEmployer getEmployer() { return employer; } public void setEmployer(CreditPayStubEmployer employer) { this.employer = employer; } public CreditPayStub netPay(CreditPayStubNetPay netPay) { this.netPay = netPay; return this; } /** * Get netPay * @return netPay **/ @ApiModelProperty(required = true, value = "") public CreditPayStubNetPay getNetPay() { return netPay; } public void setNetPay(CreditPayStubNetPay netPay) { this.netPay = netPay; } public CreditPayStub payPeriodDetails(PayStubPayPeriodDetails payPeriodDetails) { this.payPeriodDetails = payPeriodDetails; return this; } /** * Get payPeriodDetails * @return payPeriodDetails **/ @ApiModelProperty(required = true, value = "") public PayStubPayPeriodDetails getPayPeriodDetails() { return payPeriodDetails; } public void setPayPeriodDetails(PayStubPayPeriodDetails payPeriodDetails) { this.payPeriodDetails = payPeriodDetails; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditPayStub creditPayStub = (CreditPayStub) o; return Objects.equals(this.deductions, creditPayStub.deductions) && Objects.equals(this.documentId, creditPayStub.documentId) && Objects.equals(this.documentMetadata, creditPayStub.documentMetadata) && Objects.equals(this.earnings, creditPayStub.earnings) && Objects.equals(this.employee, creditPayStub.employee) && Objects.equals(this.employer, creditPayStub.employer) && Objects.equals(this.netPay, creditPayStub.netPay) && Objects.equals(this.payPeriodDetails, creditPayStub.payPeriodDetails); } @Override public int hashCode() { return Objects.hash(deductions, documentId, documentMetadata, earnings, employee, employer, netPay, payPeriodDetails); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditPayStub {\n"); sb.append(" deductions: ").append(toIndentedString(deductions)).append("\n"); sb.append(" documentId: ").append(toIndentedString(documentId)).append("\n"); sb.append(" documentMetadata: ").append(toIndentedString(documentMetadata)).append("\n"); sb.append(" earnings: ").append(toIndentedString(earnings)).append("\n"); sb.append(" employee: ").append(toIndentedString(employee)).append("\n"); sb.append(" employer: ").append(toIndentedString(employer)).append("\n"); sb.append(" netPay: ").append(toIndentedString(netPay)).append("\n"); sb.append(" payPeriodDetails: ").append(toIndentedString(payPeriodDetails)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AuthGetNumbers.java
src/main/java/com/plaid/client/model/AuthGetNumbers.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.NumbersACH; import com.plaid.client.model.NumbersBACS; import com.plaid.client.model.NumbersEFT; import com.plaid.client.model.NumbersInternational; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * An object containing identifying numbers used for making electronic transfers to and from the &#x60;accounts&#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 any &#x60;accounts&#x60; for which data has been requested, the array for that type will be empty. */ @ApiModel(description = "An object containing identifying numbers used for making electronic transfers to and from the `accounts`. 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 any `accounts` for which data has been requested, the array for that type will be empty.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AuthGetNumbers { public static final String SERIALIZED_NAME_ACH = "ach"; @SerializedName(SERIALIZED_NAME_ACH) private List<NumbersACH> ach = new ArrayList<>(); public static final String SERIALIZED_NAME_EFT = "eft"; @SerializedName(SERIALIZED_NAME_EFT) private List<NumbersEFT> eft = new ArrayList<>(); public static final String SERIALIZED_NAME_INTERNATIONAL = "international"; @SerializedName(SERIALIZED_NAME_INTERNATIONAL) private List<NumbersInternational> international = new ArrayList<>(); public static final String SERIALIZED_NAME_BACS = "bacs"; @SerializedName(SERIALIZED_NAME_BACS) private List<NumbersBACS> bacs = new ArrayList<>(); public AuthGetNumbers ach(List<NumbersACH> ach) { this.ach = ach; return this; } public AuthGetNumbers addAchItem(NumbersACH achItem) { this.ach.add(achItem); return this; } /** * An array of ACH numbers identifying accounts. * @return ach **/ @ApiModelProperty(required = true, value = "An array of ACH numbers identifying accounts.") public List<NumbersACH> getAch() { return ach; } public void setAch(List<NumbersACH> ach) { this.ach = ach; } public AuthGetNumbers eft(List<NumbersEFT> eft) { this.eft = eft; return this; } public AuthGetNumbers addEftItem(NumbersEFT eftItem) { this.eft.add(eftItem); return this; } /** * An array of EFT numbers identifying accounts. * @return eft **/ @ApiModelProperty(required = true, value = "An array of EFT numbers identifying accounts.") public List<NumbersEFT> getEft() { return eft; } public void setEft(List<NumbersEFT> eft) { this.eft = eft; } public AuthGetNumbers international(List<NumbersInternational> international) { this.international = international; return this; } public AuthGetNumbers addInternationalItem(NumbersInternational internationalItem) { this.international.add(internationalItem); return this; } /** * An array of IBAN numbers identifying accounts. * @return international **/ @ApiModelProperty(required = true, value = "An array of IBAN numbers identifying accounts.") public List<NumbersInternational> getInternational() { return international; } public void setInternational(List<NumbersInternational> international) { this.international = international; } public AuthGetNumbers bacs(List<NumbersBACS> bacs) { this.bacs = bacs; return this; } public AuthGetNumbers addBacsItem(NumbersBACS bacsItem) { this.bacs.add(bacsItem); return this; } /** * An array of BACS numbers identifying accounts. * @return bacs **/ @ApiModelProperty(required = true, value = "An array of BACS numbers identifying accounts.") public List<NumbersBACS> getBacs() { return bacs; } public void setBacs(List<NumbersBACS> bacs) { this.bacs = bacs; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AuthGetNumbers authGetNumbers = (AuthGetNumbers) o; return Objects.equals(this.ach, authGetNumbers.ach) && Objects.equals(this.eft, authGetNumbers.eft) && Objects.equals(this.international, authGetNumbers.international) && Objects.equals(this.bacs, authGetNumbers.bacs); } @Override public int hashCode() { return Objects.hash(ach, eft, international, bacs); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AuthGetNumbers {\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/TransferListRequest.java
src/main/java/com/plaid/client/model/TransferListRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * Defines the request schema for &#x60;/transfer/list&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_START_DATE = "start_date"; @SerializedName(SERIALIZED_NAME_START_DATE) private OffsetDateTime startDate; public static final String SERIALIZED_NAME_END_DATE = "end_date"; @SerializedName(SERIALIZED_NAME_END_DATE) private OffsetDateTime endDate; public static final String SERIALIZED_NAME_COUNT = "count"; @SerializedName(SERIALIZED_NAME_COUNT) private Integer count = 25; public static final String SERIALIZED_NAME_OFFSET = "offset"; @SerializedName(SERIALIZED_NAME_OFFSET) private Integer offset = 0; public 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_ORIGINATOR_CLIENT_ID = "originator_client_id"; @SerializedName(SERIALIZED_NAME_ORIGINATOR_CLIENT_ID) private String originatorClientId; public static final String SERIALIZED_NAME_FUNDING_ACCOUNT_ID = "funding_account_id"; @SerializedName(SERIALIZED_NAME_FUNDING_ACCOUNT_ID) private String fundingAccountId; public TransferListRequest 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 TransferListRequest 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 TransferListRequest startDate(OffsetDateTime startDate) { this.startDate = startDate; return this; } /** * The start &#x60;created&#x60; datetime of transfers to list. This should be in RFC 3339 format (i.e. &#x60;2019-12-06T22:35:49Z&#x60;) * @return startDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The start `created` datetime of transfers to list. This should be in RFC 3339 format (i.e. `2019-12-06T22:35:49Z`)") public OffsetDateTime getStartDate() { return startDate; } public void setStartDate(OffsetDateTime startDate) { this.startDate = startDate; } public TransferListRequest endDate(OffsetDateTime endDate) { this.endDate = endDate; return this; } /** * The end &#x60;created&#x60; datetime of transfers to list. This should be in RFC 3339 format (i.e. &#x60;2019-12-06T22:35:49Z&#x60;) * @return endDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The end `created` datetime of transfers to list. This should be in RFC 3339 format (i.e. `2019-12-06T22:35:49Z`)") public OffsetDateTime getEndDate() { return endDate; } public void setEndDate(OffsetDateTime endDate) { this.endDate = endDate; } public TransferListRequest count(Integer count) { this.count = count; return this; } /** * The maximum number of transfers to return. * minimum: 1 * maximum: 25 * @return count **/ @javax.annotation.Nullable @ApiModelProperty(value = "The maximum number of transfers to return.") public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } public TransferListRequest offset(Integer offset) { this.offset = offset; return this; } /** * The number of transfers to skip before returning results. * minimum: 0 * @return offset **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of transfers to skip before returning results.") public Integer getOffset() { return offset; } public void setOffset(Integer offset) { this.offset = offset; } public TransferListRequest originationAccountId(String originationAccountId) { this.originationAccountId = originationAccountId; return this; } /** * Filter transfers to only those originated through the specified origination account. * @return originationAccountId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Filter transfers to only those originated through the specified origination account.") public String getOriginationAccountId() { return originationAccountId; } public void setOriginationAccountId(String originationAccountId) { this.originationAccountId = originationAccountId; } public TransferListRequest originatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; return this; } /** * Filter transfers to only those with the specified originator client. * @return originatorClientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Filter transfers to only those with the specified originator client.") public String getOriginatorClientId() { return originatorClientId; } public void setOriginatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; } public TransferListRequest fundingAccountId(String fundingAccountId) { this.fundingAccountId = fundingAccountId; return this; } /** * Filter transfers to only those with the specified &#x60;funding_account_id&#x60;. * @return fundingAccountId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Filter transfers to only those with the specified `funding_account_id`.") public String getFundingAccountId() { return fundingAccountId; } public void setFundingAccountId(String fundingAccountId) { this.fundingAccountId = fundingAccountId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferListRequest transferListRequest = (TransferListRequest) o; return Objects.equals(this.clientId, transferListRequest.clientId) && Objects.equals(this.secret, transferListRequest.secret) && Objects.equals(this.startDate, transferListRequest.startDate) && Objects.equals(this.endDate, transferListRequest.endDate) && Objects.equals(this.count, transferListRequest.count) && Objects.equals(this.offset, transferListRequest.offset) && Objects.equals(this.originationAccountId, transferListRequest.originationAccountId) && Objects.equals(this.originatorClientId, transferListRequest.originatorClientId) && Objects.equals(this.fundingAccountId, transferListRequest.fundingAccountId); } @Override public int hashCode() { return Objects.hash(clientId, secret, startDate, endDate, count, offset, originationAccountId, originatorClientId, fundingAccountId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferListRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n"); sb.append(" endDate: ").append(toIndentedString(endDate)).append("\n"); sb.append(" count: ").append(toIndentedString(count)).append("\n"); sb.append(" offset: ").append(toIndentedString(offset)).append("\n"); sb.append(" originationAccountId: ").append(toIndentedString(originationAccountId)).append("\n"); sb.append(" originatorClientId: ").append(toIndentedString(originatorClientId)).append("\n"); sb.append(" fundingAccountId: ").append(toIndentedString(fundingAccountId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetReportRemoveRequest.java
src/main/java/com/plaid/client/model/AssetReportRemoveRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * AssetReportRemoveRequest defines the request schema for &#x60;/asset_report/remove&#x60; */ @ApiModel(description = "AssetReportRemoveRequest defines the request schema for `/asset_report/remove`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AssetReportRemoveRequest { 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 AssetReportRemoveRequest 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 AssetReportRemoveRequest 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 AssetReportRemoveRequest assetReportToken(String assetReportToken) { this.assetReportToken = assetReportToken; return this; } /** * A token that can be provided to endpoints such as &#x60;/asset_report/get&#x60; or &#x60;/asset_report/pdf/get&#x60; to fetch or update an Asset Report. * @return assetReportToken **/ @ApiModelProperty(required = true, value = "A token that can be provided to endpoints such as `/asset_report/get` or `/asset_report/pdf/get` to fetch or update an Asset Report.") public String getAssetReportToken() { return assetReportToken; } public void setAssetReportToken(String assetReportToken) { this.assetReportToken = assetReportToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AssetReportRemoveRequest assetReportRemoveRequest = (AssetReportRemoveRequest) o; return Objects.equals(this.clientId, assetReportRemoveRequest.clientId) && Objects.equals(this.secret, assetReportRemoveRequest.secret) && Objects.equals(this.assetReportToken, assetReportRemoveRequest.assetReportToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, assetReportToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetReportRemoveRequest {\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("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BankTransferSweepListResponse.java
src/main/java/com/plaid/client/model/BankTransferSweepListResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.BankTransferSweep; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * BankTransferSweepListResponse defines the response schema for &#x60;/bank_transfer/sweep/list&#x60; */ @ApiModel(description = "BankTransferSweepListResponse defines the response schema for `/bank_transfer/sweep/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BankTransferSweepListResponse { public static final String SERIALIZED_NAME_SWEEPS = "sweeps"; @SerializedName(SERIALIZED_NAME_SWEEPS) private List<BankTransferSweep> sweeps = new ArrayList<>(); public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public BankTransferSweepListResponse sweeps(List<BankTransferSweep> sweeps) { this.sweeps = sweeps; return this; } public BankTransferSweepListResponse addSweepsItem(BankTransferSweep sweepsItem) { this.sweeps.add(sweepsItem); return this; } /** * Get sweeps * @return sweeps **/ @ApiModelProperty(required = true, value = "") public List<BankTransferSweep> getSweeps() { return sweeps; } public void setSweeps(List<BankTransferSweep> sweeps) { this.sweeps = sweeps; } public BankTransferSweepListResponse 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; } BankTransferSweepListResponse bankTransferSweepListResponse = (BankTransferSweepListResponse) o; return Objects.equals(this.sweeps, bankTransferSweepListResponse.sweeps) && Objects.equals(this.requestId, bankTransferSweepListResponse.requestId); } @Override public int hashCode() { return Objects.hash(sweeps, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BankTransferSweepListResponse {\n"); sb.append(" sweeps: ").append(toIndentedString(sweeps)).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/BaseReportTransactionType.java
src/main/java/com/plaid/client/model/BaseReportTransactionType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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; /** * &#x60;digital:&#x60; transactions that took place online. &#x60;place:&#x60; transactions that were made at a physical location. &#x60;special:&#x60; transactions that relate to banks, e.g. fees or deposits. &#x60;unresolved:&#x60; transactions that do not fit into the other types. */ @JsonAdapter(BaseReportTransactionType.Adapter.class) public enum BaseReportTransactionType { DIGITAL("digital"), PLACE("place"), SPECIAL("special"), UNRESOLVED("unresolved"), // 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; BaseReportTransactionType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static BaseReportTransactionType fromValue(String value) { for (BaseReportTransactionType b : BaseReportTransactionType.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<BaseReportTransactionType> { @Override public void write(final JsonWriter jsonWriter, final BaseReportTransactionType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public BaseReportTransactionType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return BaseReportTransactionType.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/CraVoaReportAccountHistoricalBalance.java
src/main/java/com/plaid/client/model/CraVoaReportAccountHistoricalBalance.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 CraVoaReportAccountHistoricalBalance { public static final String SERIALIZED_NAME_CURRENT = "current"; @SerializedName(SERIALIZED_NAME_CURRENT) private Double current; public static final String SERIALIZED_NAME_DATE = "date"; @SerializedName(SERIALIZED_NAME_DATE) private LocalDate date; 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 CraVoaReportAccountHistoricalBalance 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. * @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.") public Double getCurrent() { return current; } public void setCurrent(Double current) { this.current = current; } public CraVoaReportAccountHistoricalBalance 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 CraVoaReportAccountHistoricalBalance 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 CraVoaReportAccountHistoricalBalance 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; } CraVoaReportAccountHistoricalBalance craVoaReportAccountHistoricalBalance = (CraVoaReportAccountHistoricalBalance) o; return Objects.equals(this.current, craVoaReportAccountHistoricalBalance.current) && Objects.equals(this.date, craVoaReportAccountHistoricalBalance.date) && Objects.equals(this.isoCurrencyCode, craVoaReportAccountHistoricalBalance.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, craVoaReportAccountHistoricalBalance.unofficialCurrencyCode); } @Override public int hashCode() { return Objects.hash(current, date, isoCurrencyCode, unofficialCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraVoaReportAccountHistoricalBalance {\n"); sb.append(" current: ").append(toIndentedString(current)).append("\n"); sb.append(" date: ").append(toIndentedString(date)).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/PayStubDeductionsBreakdown.java
src/main/java/com/plaid/client/model/PayStubDeductionsBreakdown.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object representing the deduction line items for the pay period */ @ApiModel(description = "An object representing the deduction line items for the pay period") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PayStubDeductionsBreakdown { public static final String SERIALIZED_NAME_CURRENT_AMOUNT = "current_amount"; @SerializedName(SERIALIZED_NAME_CURRENT_AMOUNT) private Double currentAmount; public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) private String description; public static final String SERIALIZED_NAME_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_YTD_AMOUNT = "ytd_amount"; @SerializedName(SERIALIZED_NAME_YTD_AMOUNT) private Double ytdAmount; public PayStubDeductionsBreakdown currentAmount(Double currentAmount) { this.currentAmount = currentAmount; return this; } /** * Raw amount of the deduction * @return currentAmount **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Raw amount of the deduction") public Double getCurrentAmount() { return currentAmount; } public void setCurrentAmount(Double currentAmount) { this.currentAmount = currentAmount; } public PayStubDeductionsBreakdown description(String description) { this.description = description; return this; } /** * Description of the deduction line item * @return description **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Description of the deduction line item") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public PayStubDeductionsBreakdown isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO-4217 currency code of the line item. Always &#x60;null&#x60; if &#x60;unofficial_currency_code&#x60; is non-null. * @return isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ISO-4217 currency code of the line item. Always `null` if `unofficial_currency_code` is non-null.") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public PayStubDeductionsBreakdown unofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; return this; } /** * The unofficial currency code associated with the line item. Always &#x60;null&#x60; if &#x60;iso_currency_code&#x60; is non-&#x60;null&#x60;. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported &#x60;iso_currency_code&#x60;s. * @return unofficialCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The unofficial currency code associated with the line item. Always `null` if `iso_currency_code` is non-`null`. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported `iso_currency_code`s.") public String getUnofficialCurrencyCode() { return unofficialCurrencyCode; } public void setUnofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; } public PayStubDeductionsBreakdown ytdAmount(Double ytdAmount) { this.ytdAmount = ytdAmount; return this; } /** * The year-to-date amount of the deduction * @return ytdAmount **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The year-to-date amount of the deduction") public Double getYtdAmount() { return ytdAmount; } public void setYtdAmount(Double ytdAmount) { this.ytdAmount = ytdAmount; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PayStubDeductionsBreakdown payStubDeductionsBreakdown = (PayStubDeductionsBreakdown) o; return Objects.equals(this.currentAmount, payStubDeductionsBreakdown.currentAmount) && Objects.equals(this.description, payStubDeductionsBreakdown.description) && Objects.equals(this.isoCurrencyCode, payStubDeductionsBreakdown.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, payStubDeductionsBreakdown.unofficialCurrencyCode) && Objects.equals(this.ytdAmount, payStubDeductionsBreakdown.ytdAmount); } @Override public int hashCode() { return Objects.hash(currentAmount, description, isoCurrencyCode, unofficialCurrencyCode, ytdAmount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PayStubDeductionsBreakdown {\n"); sb.append(" currentAmount: ").append(toIndentedString(currentAmount)).append("\n"); sb.append(" description: ").append(toIndentedString(description)).append("\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append(" unofficialCurrencyCode: ").append(toIndentedString(unofficialCurrencyCode)).append("\n"); sb.append(" ytdAmount: ").append(toIndentedString(ytdAmount)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/UserRemoveRequest.java
src/main/java/com/plaid/client/model/UserRemoveRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * UserRemoveRequest defines the request schema for &#x60;/user/remove&#x60; */ @ApiModel(description = "UserRemoveRequest defines the request schema for `/user/remove`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class UserRemoveRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_USER_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) private String userToken; public UserRemoveRequest 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 UserRemoveRequest 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 UserRemoveRequest 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 UserRemoveRequest 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; } UserRemoveRequest userRemoveRequest = (UserRemoveRequest) o; return Objects.equals(this.clientId, userRemoveRequest.clientId) && Objects.equals(this.secret, userRemoveRequest.secret) && Objects.equals(this.userId, userRemoveRequest.userId) && Objects.equals(this.userToken, userRemoveRequest.userToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, userId, userToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class UserRemoveRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" userToken: ").append(toIndentedString(userToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferIntentGet.java
src/main/java/com/plaid/client/model/TransferIntentGet.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.TransferAuthorizationDecisionRationale; import com.plaid.client.model.TransferAuthorizationGuaranteeDecision; import com.plaid.client.model.TransferAuthorizationGuaranteeDecisionRationale; import com.plaid.client.model.TransferIntentAuthorizationDecision; import com.plaid.client.model.TransferIntentCreateMode; import com.plaid.client.model.TransferIntentCreateNetwork; import com.plaid.client.model.TransferIntentGetFailureReason; import com.plaid.client.model.TransferIntentStatus; import com.plaid.client.model.TransferUserInResponse; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; import java.util.HashMap; import java.util.List; import java.util.Map; /** * Represents a transfer intent within Transfer UI. */ @ApiModel(description = "Represents a transfer intent within Transfer UI.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferIntentGet { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) private String id; public static final String SERIALIZED_NAME_CREATED = "created"; @SerializedName(SERIALIZED_NAME_CREATED) private OffsetDateTime created; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private TransferIntentStatus status; public static final String SERIALIZED_NAME_TRANSFER_ID = "transfer_id"; @SerializedName(SERIALIZED_NAME_TRANSFER_ID) private String transferId; public static final String SERIALIZED_NAME_FAILURE_REASON = "failure_reason"; @SerializedName(SERIALIZED_NAME_FAILURE_REASON) private TransferIntentGetFailureReason failureReason; public static final String SERIALIZED_NAME_AUTHORIZATION_DECISION = "authorization_decision"; @SerializedName(SERIALIZED_NAME_AUTHORIZATION_DECISION) private TransferIntentAuthorizationDecision authorizationDecision; public static final String SERIALIZED_NAME_AUTHORIZATION_DECISION_RATIONALE = "authorization_decision_rationale"; @SerializedName(SERIALIZED_NAME_AUTHORIZATION_DECISION_RATIONALE) private TransferAuthorizationDecisionRationale authorizationDecisionRationale; public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; 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_FUNDING_ACCOUNT_ID = "funding_account_id"; @SerializedName(SERIALIZED_NAME_FUNDING_ACCOUNT_ID) private String fundingAccountId; public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private String amount; public static final String SERIALIZED_NAME_MODE = "mode"; @SerializedName(SERIALIZED_NAME_MODE) private TransferIntentCreateMode mode; public static final String SERIALIZED_NAME_NETWORK = "network"; @SerializedName(SERIALIZED_NAME_NETWORK) private TransferIntentCreateNetwork network = TransferIntentCreateNetwork.SAME_DAY_ACH; 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 TransferUserInResponse user; public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) private String description; public static final String SERIALIZED_NAME_METADATA = "metadata"; @SerializedName(SERIALIZED_NAME_METADATA) private Map<String, String> metadata = null; 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_REQUIRE_GUARANTEE = "require_guarantee"; @SerializedName(SERIALIZED_NAME_REQUIRE_GUARANTEE) private Boolean requireGuarantee; public static final String SERIALIZED_NAME_GUARANTEE_DECISION = "guarantee_decision"; @SerializedName(SERIALIZED_NAME_GUARANTEE_DECISION) private TransferAuthorizationGuaranteeDecision guaranteeDecision; public static final String SERIALIZED_NAME_GUARANTEE_DECISION_RATIONALE = "guarantee_decision_rationale"; @SerializedName(SERIALIZED_NAME_GUARANTEE_DECISION_RATIONALE) private TransferAuthorizationGuaranteeDecisionRationale guaranteeDecisionRationale; public TransferIntentGet id(String id) { this.id = id; return this; } /** * Plaid&#39;s unique identifier for a transfer intent object. * @return id **/ @ApiModelProperty(required = true, value = "Plaid's unique identifier for a transfer intent object.") public String getId() { return id; } public void setId(String id) { this.id = id; } public TransferIntentGet created(OffsetDateTime created) { this.created = created; return this; } /** * The datetime the transfer was created. This will be of the form &#x60;2006-01-02T15:04:05Z&#x60;. * @return created **/ @ApiModelProperty(required = true, value = "The datetime the transfer was created. This will be of the form `2006-01-02T15:04:05Z`.") public OffsetDateTime getCreated() { return created; } public void setCreated(OffsetDateTime created) { this.created = created; } public TransferIntentGet status(TransferIntentStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public TransferIntentStatus getStatus() { return status; } public void setStatus(TransferIntentStatus status) { this.status = status; } public TransferIntentGet transferId(String transferId) { this.transferId = transferId; return this; } /** * Plaid&#39;s unique identifier for the transfer created through the UI. Returned only if the transfer was successfully created. Null value otherwise. * @return transferId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Plaid's unique identifier for the transfer created through the UI. Returned only if the transfer was successfully created. Null value otherwise.") public String getTransferId() { return transferId; } public void setTransferId(String transferId) { this.transferId = transferId; } public TransferIntentGet failureReason(TransferIntentGetFailureReason failureReason) { this.failureReason = failureReason; return this; } /** * Get failureReason * @return failureReason **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public TransferIntentGetFailureReason getFailureReason() { return failureReason; } public void setFailureReason(TransferIntentGetFailureReason failureReason) { this.failureReason = failureReason; } public TransferIntentGet authorizationDecision(TransferIntentAuthorizationDecision authorizationDecision) { this.authorizationDecision = authorizationDecision; return this; } /** * Get authorizationDecision * @return authorizationDecision **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public TransferIntentAuthorizationDecision getAuthorizationDecision() { return authorizationDecision; } public void setAuthorizationDecision(TransferIntentAuthorizationDecision authorizationDecision) { this.authorizationDecision = authorizationDecision; } public TransferIntentGet authorizationDecisionRationale(TransferAuthorizationDecisionRationale authorizationDecisionRationale) { this.authorizationDecisionRationale = authorizationDecisionRationale; return this; } /** * Get authorizationDecisionRationale * @return authorizationDecisionRationale **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public TransferAuthorizationDecisionRationale getAuthorizationDecisionRationale() { return authorizationDecisionRationale; } public void setAuthorizationDecisionRationale(TransferAuthorizationDecisionRationale authorizationDecisionRationale) { this.authorizationDecisionRationale = authorizationDecisionRationale; } public TransferIntentGet accountId(String accountId) { this.accountId = accountId; return this; } /** * The Plaid &#x60;account_id&#x60; for the account that will be debited or credited. Returned only if &#x60;account_id&#x60; was set on intent creation. * @return accountId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The Plaid `account_id` for the account that will be debited or credited. Returned only if `account_id` was set on intent creation.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public TransferIntentGet originationAccountId(String originationAccountId) { this.originationAccountId = originationAccountId; return this; } /** * Plaid’s unique identifier for the origination account used for the transfer. * @return originationAccountId **/ @ApiModelProperty(required = true, value = "Plaid’s unique identifier for the origination account used for the transfer.") public String getOriginationAccountId() { return originationAccountId; } public void setOriginationAccountId(String originationAccountId) { this.originationAccountId = originationAccountId; } public TransferIntentGet fundingAccountId(String fundingAccountId) { this.fundingAccountId = fundingAccountId; return this; } /** * The id of the funding account to use, available in the Plaid Dashboard. This determines which of your business checking accounts will be credited or debited. * @return fundingAccountId **/ @ApiModelProperty(required = true, value = "The id of the funding account to use, available in the Plaid Dashboard. This determines which of your business checking accounts will be credited or debited.") public String getFundingAccountId() { return fundingAccountId; } public void setFundingAccountId(String fundingAccountId) { this.fundingAccountId = fundingAccountId; } public TransferIntentGet 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 **/ @ApiModelProperty(required = true, 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 TransferIntentGet mode(TransferIntentCreateMode mode) { this.mode = mode; return this; } /** * Get mode * @return mode **/ @ApiModelProperty(required = true, value = "") public TransferIntentCreateMode getMode() { return mode; } public void setMode(TransferIntentCreateMode mode) { this.mode = mode; } public TransferIntentGet network(TransferIntentCreateNetwork network) { this.network = network; return this; } /** * Get network * @return network **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public TransferIntentCreateNetwork getNetwork() { return network; } public void setNetwork(TransferIntentCreateNetwork network) { this.network = network; } public TransferIntentGet 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 TransferIntentGet user(TransferUserInResponse user) { this.user = user; return this; } /** * Get user * @return user **/ @ApiModelProperty(required = true, value = "") public TransferUserInResponse getUser() { return user; } public void setUser(TransferUserInResponse user) { this.user = user; } public TransferIntentGet description(String description) { this.description = description; return this; } /** * A description for the underlying transfer. Maximum of 8 characters. * @return description **/ @ApiModelProperty(required = true, value = "A description for the underlying transfer. Maximum of 8 characters.") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public TransferIntentGet metadata(Map<String, String> metadata) { this.metadata = metadata; return this; } public TransferIntentGet 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 TransferIntentGet isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The currency of the transfer amount, e.g. \&quot;USD\&quot; * @return isoCurrencyCode **/ @ApiModelProperty(required = true, value = "The currency of the transfer amount, e.g. \"USD\"") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public TransferIntentGet requireGuarantee(Boolean requireGuarantee) { this.requireGuarantee = requireGuarantee; return this; } /** * When &#x60;true&#x60;, the transfer requires a &#x60;GUARANTEED&#x60; decision by Plaid to proceed (Guarantee customers only). * @return requireGuarantee **/ @javax.annotation.Nullable @ApiModelProperty(value = "When `true`, the transfer requires a `GUARANTEED` decision by Plaid to proceed (Guarantee customers only).") public Boolean getRequireGuarantee() { return requireGuarantee; } public void setRequireGuarantee(Boolean requireGuarantee) { this.requireGuarantee = requireGuarantee; } public TransferIntentGet guaranteeDecision(TransferAuthorizationGuaranteeDecision guaranteeDecision) { this.guaranteeDecision = guaranteeDecision; return this; } /** * Get guaranteeDecision * @return guaranteeDecision **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public TransferAuthorizationGuaranteeDecision getGuaranteeDecision() { return guaranteeDecision; } public void setGuaranteeDecision(TransferAuthorizationGuaranteeDecision guaranteeDecision) { this.guaranteeDecision = guaranteeDecision; } public TransferIntentGet guaranteeDecisionRationale(TransferAuthorizationGuaranteeDecisionRationale guaranteeDecisionRationale) { this.guaranteeDecisionRationale = guaranteeDecisionRationale; return this; } /** * Get guaranteeDecisionRationale * @return guaranteeDecisionRationale **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public TransferAuthorizationGuaranteeDecisionRationale getGuaranteeDecisionRationale() { return guaranteeDecisionRationale; } public void setGuaranteeDecisionRationale(TransferAuthorizationGuaranteeDecisionRationale guaranteeDecisionRationale) { this.guaranteeDecisionRationale = guaranteeDecisionRationale; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferIntentGet transferIntentGet = (TransferIntentGet) o; return Objects.equals(this.id, transferIntentGet.id) && Objects.equals(this.created, transferIntentGet.created) && Objects.equals(this.status, transferIntentGet.status) && Objects.equals(this.transferId, transferIntentGet.transferId) && Objects.equals(this.failureReason, transferIntentGet.failureReason) && Objects.equals(this.authorizationDecision, transferIntentGet.authorizationDecision) && Objects.equals(this.authorizationDecisionRationale, transferIntentGet.authorizationDecisionRationale) && Objects.equals(this.accountId, transferIntentGet.accountId) && Objects.equals(this.originationAccountId, transferIntentGet.originationAccountId) && Objects.equals(this.fundingAccountId, transferIntentGet.fundingAccountId) && Objects.equals(this.amount, transferIntentGet.amount) && Objects.equals(this.mode, transferIntentGet.mode) && Objects.equals(this.network, transferIntentGet.network) && Objects.equals(this.achClass, transferIntentGet.achClass) && Objects.equals(this.user, transferIntentGet.user) && Objects.equals(this.description, transferIntentGet.description) && Objects.equals(this.metadata, transferIntentGet.metadata) && Objects.equals(this.isoCurrencyCode, transferIntentGet.isoCurrencyCode) && Objects.equals(this.requireGuarantee, transferIntentGet.requireGuarantee) && Objects.equals(this.guaranteeDecision, transferIntentGet.guaranteeDecision) && Objects.equals(this.guaranteeDecisionRationale, transferIntentGet.guaranteeDecisionRationale); } @Override public int hashCode() { return Objects.hash(id, created, status, transferId, failureReason, authorizationDecision, authorizationDecisionRationale, accountId, originationAccountId, fundingAccountId, amount, mode, network, achClass, user, description, metadata, isoCurrencyCode, requireGuarantee, guaranteeDecision, guaranteeDecisionRationale); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferIntentGet {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" created: ").append(toIndentedString(created)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" transferId: ").append(toIndentedString(transferId)).append("\n"); sb.append(" failureReason: ").append(toIndentedString(failureReason)).append("\n"); sb.append(" authorizationDecision: ").append(toIndentedString(authorizationDecision)).append("\n"); sb.append(" authorizationDecisionRationale: ").append(toIndentedString(authorizationDecisionRationale)).append("\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" originationAccountId: ").append(toIndentedString(originationAccountId)).append("\n"); sb.append(" fundingAccountId: ").append(toIndentedString(fundingAccountId)).append("\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" mode: ").append(toIndentedString(mode)).append("\n"); sb.append(" network: ").append(toIndentedString(network)).append("\n"); sb.append(" achClass: ").append(toIndentedString(achClass)).append("\n"); sb.append(" user: ").append(toIndentedString(user)).append("\n"); sb.append(" description: ").append(toIndentedString(description)).append("\n"); sb.append(" metadata: ").append(toIndentedString(metadata)).append("\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append(" requireGuarantee: ").append(toIndentedString(requireGuarantee)).append("\n"); sb.append(" guaranteeDecision: ").append(toIndentedString(guaranteeDecision)).append("\n"); sb.append(" guaranteeDecisionRationale: ").append(toIndentedString(guaranteeDecisionRationale)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/InvestmentsAuthOwner.java
src/main/java/com/plaid/client/model/InvestmentsAuthOwner.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Information on the ownership of an investments account */ @ApiModel(description = "Information on the ownership of an investments account") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InvestmentsAuthOwner { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_NAMES = "names"; @SerializedName(SERIALIZED_NAME_NAMES) private List<String> names = null; public InvestmentsAuthOwner accountId(String accountId) { this.accountId = accountId; return this; } /** * The ID of the account that this identity information pertains to * @return accountId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ID of the account that this identity information pertains to") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public InvestmentsAuthOwner names(List<String> names) { this.names = names; return this; } public InvestmentsAuthOwner addNamesItem(String namesItem) { if (this.names == null) { this.names = new ArrayList<>(); } this.names.add(namesItem); return this; } /** * A list of names associated with the account by the financial institution. In the case of a joint account, Plaid will make a best effort to report the names of all account holders. If an Item contains multiple accounts with different owner names, some institutions will report all names associated with the Item in each account&#39;s &#x60;names&#x60; array. * @return names **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of names associated with the account by the financial institution. In the case of a joint account, Plaid will make a best effort to report the names of all account holders. If an Item contains multiple accounts with different owner names, some institutions will report all names associated with the Item in each account's `names` array.") public List<String> getNames() { return names; } public void setNames(List<String> names) { this.names = names; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } InvestmentsAuthOwner investmentsAuthOwner = (InvestmentsAuthOwner) o; return Objects.equals(this.accountId, investmentsAuthOwner.accountId) && Objects.equals(this.names, investmentsAuthOwner.names); } @Override public int hashCode() { return Objects.hash(accountId, names); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InvestmentsAuthOwner {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" names: ").append(toIndentedString(names)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorBalanceGetRequest.java
src/main/java/com/plaid/client/model/ProcessorBalanceGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.ProcessorBalanceGetRequestOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * ProcessorBalanceGetRequest defines the request schema for &#x60;/processor/balance/get&#x60; */ @ApiModel(description = "ProcessorBalanceGetRequest defines the request schema for `/processor/balance/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorBalanceGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_PROCESSOR_TOKEN = "processor_token"; @SerializedName(SERIALIZED_NAME_PROCESSOR_TOKEN) private String processorToken; public static final String SERIALIZED_NAME_OPTIONS = "options"; @SerializedName(SERIALIZED_NAME_OPTIONS) private ProcessorBalanceGetRequestOptions options; public ProcessorBalanceGetRequest 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 ProcessorBalanceGetRequest 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 ProcessorBalanceGetRequest 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 ProcessorBalanceGetRequest options(ProcessorBalanceGetRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public ProcessorBalanceGetRequestOptions getOptions() { return options; } public void setOptions(ProcessorBalanceGetRequestOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProcessorBalanceGetRequest processorBalanceGetRequest = (ProcessorBalanceGetRequest) o; return Objects.equals(this.clientId, processorBalanceGetRequest.clientId) && Objects.equals(this.secret, processorBalanceGetRequest.secret) && Objects.equals(this.processorToken, processorBalanceGetRequest.processorToken) && Objects.equals(this.options, processorBalanceGetRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, secret, processorToken, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorBalanceGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" processorToken: ").append(toIndentedString(processorToken)).append("\n"); sb.append(" 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/CashFlowUpdatesNewLoanPaymentWebhook.java
src/main/java/com/plaid/client/model/CashFlowUpdatesNewLoanPaymentWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.MonitoringInsightsStatus; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * For each user&#39;s item enabled for Cash Flow Updates, this webhook will fire when an update detects a new loan payment. Upon receiving the webhook, call &#x60;/cra/monitoring_insights/get&#x60; to retrieve the updated insights. */ @ApiModel(description = "For each user's item enabled for Cash Flow Updates, this webhook will fire when an update detects a new loan payment. Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CashFlowUpdatesNewLoanPaymentWebhook { 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 MonitoringInsightsStatus status; 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 CashFlowUpdatesNewLoanPaymentWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;CASH_FLOW_UPDATES&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`CASH_FLOW_UPDATES`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public CashFlowUpdatesNewLoanPaymentWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;NEW_LOAN_PAYMENT_DETECTED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`NEW_LOAN_PAYMENT_DETECTED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public CashFlowUpdatesNewLoanPaymentWebhook status(MonitoringInsightsStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public MonitoringInsightsStatus getStatus() { return status; } public void setStatus(MonitoringInsightsStatus status) { this.status = status; } public CashFlowUpdatesNewLoanPaymentWebhook userId(String userId) { this.userId = userId; return this; } /** * The &#x60;user_id&#x60; that the report is associated with * @return userId **/ @ApiModelProperty(required = true, value = "The `user_id` that the report is associated with") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public CashFlowUpdatesNewLoanPaymentWebhook 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; } CashFlowUpdatesNewLoanPaymentWebhook cashFlowUpdatesNewLoanPaymentWebhook = (CashFlowUpdatesNewLoanPaymentWebhook) o; return Objects.equals(this.webhookType, cashFlowUpdatesNewLoanPaymentWebhook.webhookType) && Objects.equals(this.webhookCode, cashFlowUpdatesNewLoanPaymentWebhook.webhookCode) && Objects.equals(this.status, cashFlowUpdatesNewLoanPaymentWebhook.status) && Objects.equals(this.userId, cashFlowUpdatesNewLoanPaymentWebhook.userId) && Objects.equals(this.environment, cashFlowUpdatesNewLoanPaymentWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, status, userId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CashFlowUpdatesNewLoanPaymentWebhook {\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(" 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/PaystubAddress.java
src/main/java/com/plaid/client/model/PaystubAddress.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Address on the paystub */ @ApiModel(description = "Address on the paystub") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaystubAddress { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) private String city; public static final String SERIALIZED_NAME_COUNTRY = "country"; @SerializedName(SERIALIZED_NAME_COUNTRY) private String country; public static final String SERIALIZED_NAME_POSTAL_CODE = "postal_code"; @SerializedName(SERIALIZED_NAME_POSTAL_CODE) private String postalCode; public static final String SERIALIZED_NAME_REGION = "region"; @SerializedName(SERIALIZED_NAME_REGION) private String region; public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) private String street; public static final String SERIALIZED_NAME_LINE1 = "line1"; @SerializedName(SERIALIZED_NAME_LINE1) private String line1; public static final String SERIALIZED_NAME_LINE2 = "line2"; @SerializedName(SERIALIZED_NAME_LINE2) private String line2; public static final String SERIALIZED_NAME_STATE_CODE = "state_code"; @SerializedName(SERIALIZED_NAME_STATE_CODE) private String stateCode; public PaystubAddress 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 PaystubAddress 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 PaystubAddress postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * The postal code of the address. * @return postalCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The postal code of the address.") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public PaystubAddress region(String region) { this.region = region; return this; } /** * The region or state Example: &#x60;\&quot;NC\&quot;&#x60; * @return region **/ @javax.annotation.Nullable @ApiModelProperty(value = "The region or state Example: `\"NC\"`") public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public PaystubAddress street(String street) { this.street = street; return this; } /** * The full street address. * @return street **/ @javax.annotation.Nullable @ApiModelProperty(value = "The full street address.") public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } public PaystubAddress line1(String line1) { this.line1 = line1; return this; } /** * Street address line 1. * @return line1 **/ @javax.annotation.Nullable @ApiModelProperty(value = "Street address line 1.") public String getLine1() { return line1; } public void setLine1(String line1) { this.line1 = line1; } public PaystubAddress line2(String line2) { this.line2 = line2; return this; } /** * Street address line 2. * @return line2 **/ @javax.annotation.Nullable @ApiModelProperty(value = "Street address line 2.") public String getLine2() { return line2; } public void setLine2(String line2) { this.line2 = line2; } public PaystubAddress stateCode(String stateCode) { this.stateCode = stateCode; return this; } /** * The region or state Example: &#x60;\&quot;NC\&quot;&#x60; * @return stateCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The region or state Example: `\"NC\"`") public String getStateCode() { return stateCode; } public void setStateCode(String stateCode) { this.stateCode = stateCode; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaystubAddress paystubAddress = (PaystubAddress) o; return Objects.equals(this.city, paystubAddress.city) && Objects.equals(this.country, paystubAddress.country) && Objects.equals(this.postalCode, paystubAddress.postalCode) && Objects.equals(this.region, paystubAddress.region) && Objects.equals(this.street, paystubAddress.street) && Objects.equals(this.line1, paystubAddress.line1) && Objects.equals(this.line2, paystubAddress.line2) && Objects.equals(this.stateCode, paystubAddress.stateCode); } @Override public int hashCode() { return Objects.hash(city, country, postalCode, region, street, line1, line2, stateCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaystubAddress {\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(" line1: ").append(toIndentedString(line1)).append("\n"); sb.append(" line2: ").append(toIndentedString(line2)).append("\n"); sb.append(" stateCode: ").append(toIndentedString(stateCode)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BetaPartnerEndCustomerWithSecrets.java
src/main/java/com/plaid/client/model/BetaPartnerEndCustomerWithSecrets.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.BetaPartnerEndCustomer; import com.plaid.client.model.PartnerEndCustomerRequirementDue; import com.plaid.client.model.PartnerEndCustomerSecrets; import com.plaid.client.model.PartnerEndCustomerStatus; import com.plaid.client.model.PartnerEndCustomerWithSecretsAllOf; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * The details for the newly created end customer, including secrets for Sandbox and Limited Production. */ @ApiModel(description = "The details for the newly created end customer, including secrets for Sandbox and Limited Production.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BetaPartnerEndCustomerWithSecrets { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_COMPANY_NAME = "company_name"; @SerializedName(SERIALIZED_NAME_COMPANY_NAME) private String companyName; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private PartnerEndCustomerStatus status; public static final String SERIALIZED_NAME_PRODUCT_STATUSES = "product_statuses"; @SerializedName(SERIALIZED_NAME_PRODUCT_STATUSES) private Object productStatuses; public static final String SERIALIZED_NAME_REQUIREMENTS_DUE = "requirements_due"; @SerializedName(SERIALIZED_NAME_REQUIREMENTS_DUE) private List<PartnerEndCustomerRequirementDue> requirementsDue = null; public static final String SERIALIZED_NAME_SECRETS = "secrets"; @SerializedName(SERIALIZED_NAME_SECRETS) private PartnerEndCustomerSecrets secrets; public BetaPartnerEndCustomerWithSecrets clientId(String clientId) { this.clientId = clientId; return this; } /** * The &#x60;client_id&#x60; of the end customer. * @return clientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The `client_id` of the end customer.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public BetaPartnerEndCustomerWithSecrets companyName(String companyName) { this.companyName = companyName; return this; } /** * The company name associated with the end customer. * @return companyName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The company name associated with the end customer.") public String getCompanyName() { return companyName; } public void setCompanyName(String companyName) { this.companyName = companyName; } public BetaPartnerEndCustomerWithSecrets status(PartnerEndCustomerStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PartnerEndCustomerStatus getStatus() { return status; } public void setStatus(PartnerEndCustomerStatus status) { this.status = status; } public BetaPartnerEndCustomerWithSecrets productStatuses(Object productStatuses) { this.productStatuses = productStatuses; return this; } /** * Mapping of product names to their current status. * @return productStatuses **/ @javax.annotation.Nullable @ApiModelProperty(value = "Mapping of product names to their current status.") public Object getProductStatuses() { return productStatuses; } public void setProductStatuses(Object productStatuses) { this.productStatuses = productStatuses; } public BetaPartnerEndCustomerWithSecrets requirementsDue(List<PartnerEndCustomerRequirementDue> requirementsDue) { this.requirementsDue = requirementsDue; return this; } public BetaPartnerEndCustomerWithSecrets addRequirementsDueItem(PartnerEndCustomerRequirementDue requirementsDueItem) { if (this.requirementsDue == null) { this.requirementsDue = new ArrayList<>(); } this.requirementsDue.add(requirementsDueItem); return this; } /** * A list of fields that are still required to be submitted. * @return requirementsDue **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of fields that are still required to be submitted.") public List<PartnerEndCustomerRequirementDue> getRequirementsDue() { return requirementsDue; } public void setRequirementsDue(List<PartnerEndCustomerRequirementDue> requirementsDue) { this.requirementsDue = requirementsDue; } public BetaPartnerEndCustomerWithSecrets secrets(PartnerEndCustomerSecrets secrets) { this.secrets = secrets; return this; } /** * Get secrets * @return secrets **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PartnerEndCustomerSecrets getSecrets() { return secrets; } public void setSecrets(PartnerEndCustomerSecrets secrets) { this.secrets = secrets; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BetaPartnerEndCustomerWithSecrets betaPartnerEndCustomerWithSecrets = (BetaPartnerEndCustomerWithSecrets) o; return Objects.equals(this.clientId, betaPartnerEndCustomerWithSecrets.clientId) && Objects.equals(this.companyName, betaPartnerEndCustomerWithSecrets.companyName) && Objects.equals(this.status, betaPartnerEndCustomerWithSecrets.status) && Objects.equals(this.productStatuses, betaPartnerEndCustomerWithSecrets.productStatuses) && Objects.equals(this.requirementsDue, betaPartnerEndCustomerWithSecrets.requirementsDue) && Objects.equals(this.secrets, betaPartnerEndCustomerWithSecrets.secrets); } @Override public int hashCode() { return Objects.hash(clientId, companyName, status, productStatuses, requirementsDue, secrets); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BetaPartnerEndCustomerWithSecrets {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" companyName: ").append(toIndentedString(companyName)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" productStatuses: ").append(toIndentedString(productStatuses)).append("\n"); sb.append(" requirementsDue: ").append(toIndentedString(requirementsDue)).append("\n"); sb.append(" secrets: ").append(toIndentedString(secrets)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorInvestmentsHoldingsGetResponse.java
src/main/java/com/plaid/client/model/ProcessorInvestmentsHoldingsGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AccountBase; import com.plaid.client.model.Holding; import com.plaid.client.model.Security; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * ProcessorInvestmentsHoldingsGetResponse defines the response schema for &#x60;/processor/invesments/holdings/get&#x60; */ @ApiModel(description = "ProcessorInvestmentsHoldingsGetResponse defines the response schema for `/processor/invesments/holdings/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorInvestmentsHoldingsGetResponse { public static final String SERIALIZED_NAME_ACCOUNT = "account"; @SerializedName(SERIALIZED_NAME_ACCOUNT) private AccountBase account; public static final String SERIALIZED_NAME_HOLDINGS = "holdings"; @SerializedName(SERIALIZED_NAME_HOLDINGS) private List<Holding> holdings = new ArrayList<>(); public static final String SERIALIZED_NAME_SECURITIES = "securities"; @SerializedName(SERIALIZED_NAME_SECURITIES) private List<Security> securities = new ArrayList<>(); public static final String SERIALIZED_NAME_IS_INVESTMENTS_FALLBACK_ITEM = "is_investments_fallback_item"; @SerializedName(SERIALIZED_NAME_IS_INVESTMENTS_FALLBACK_ITEM) private Boolean isInvestmentsFallbackItem; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public ProcessorInvestmentsHoldingsGetResponse account(AccountBase account) { this.account = account; return this; } /** * Get account * @return account **/ @ApiModelProperty(required = true, value = "") public AccountBase getAccount() { return account; } public void setAccount(AccountBase account) { this.account = account; } public ProcessorInvestmentsHoldingsGetResponse holdings(List<Holding> holdings) { this.holdings = holdings; return this; } public ProcessorInvestmentsHoldingsGetResponse addHoldingsItem(Holding holdingsItem) { this.holdings.add(holdingsItem); return this; } /** * The holdings belonging to investment accounts associated with the Item. Details of the securities in the holdings are provided in the &#x60;securities&#x60; field. * @return holdings **/ @ApiModelProperty(required = true, value = "The holdings belonging to investment accounts associated with the Item. Details of the securities in the holdings are provided in the `securities` field. ") public List<Holding> getHoldings() { return holdings; } public void setHoldings(List<Holding> holdings) { this.holdings = holdings; } public ProcessorInvestmentsHoldingsGetResponse securities(List<Security> securities) { this.securities = securities; return this; } public ProcessorInvestmentsHoldingsGetResponse addSecuritiesItem(Security securitiesItem) { this.securities.add(securitiesItem); return this; } /** * Objects describing the securities held in the account. * @return securities **/ @ApiModelProperty(required = true, value = "Objects describing the securities held in the account.") public List<Security> getSecurities() { return securities; } public void setSecurities(List<Security> securities) { this.securities = securities; } public ProcessorInvestmentsHoldingsGetResponse isInvestmentsFallbackItem(Boolean isInvestmentsFallbackItem) { this.isInvestmentsFallbackItem = isInvestmentsFallbackItem; return this; } /** * When true, this field indicates that the Item&#39;s portfolio was manually created with the Investments Fallback flow. * @return isInvestmentsFallbackItem **/ @ApiModelProperty(required = true, value = "When true, this field indicates that the Item's portfolio was manually created with the Investments Fallback flow.") public Boolean getIsInvestmentsFallbackItem() { return isInvestmentsFallbackItem; } public void setIsInvestmentsFallbackItem(Boolean isInvestmentsFallbackItem) { this.isInvestmentsFallbackItem = isInvestmentsFallbackItem; } public ProcessorInvestmentsHoldingsGetResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProcessorInvestmentsHoldingsGetResponse processorInvestmentsHoldingsGetResponse = (ProcessorInvestmentsHoldingsGetResponse) o; return Objects.equals(this.account, processorInvestmentsHoldingsGetResponse.account) && Objects.equals(this.holdings, processorInvestmentsHoldingsGetResponse.holdings) && Objects.equals(this.securities, processorInvestmentsHoldingsGetResponse.securities) && Objects.equals(this.isInvestmentsFallbackItem, processorInvestmentsHoldingsGetResponse.isInvestmentsFallbackItem) && Objects.equals(this.requestId, processorInvestmentsHoldingsGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(account, holdings, securities, isInvestmentsFallbackItem, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorInvestmentsHoldingsGetResponse {\n"); sb.append(" account: ").append(toIndentedString(account)).append("\n"); sb.append(" holdings: ").append(toIndentedString(holdings)).append("\n"); sb.append(" securities: ").append(toIndentedString(securities)).append("\n"); sb.append(" isInvestmentsFallbackItem: ").append(toIndentedString(isInvestmentsFallbackItem)).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/TransferCapabilitiesGetRTP.java
src/main/java/com/plaid/client/model/TransferCapabilitiesGetRTP.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Contains the supported service types in RTP */ @ApiModel(description = "Contains the supported service types in RTP") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferCapabilitiesGetRTP { public static final String SERIALIZED_NAME_CREDIT = "credit"; @SerializedName(SERIALIZED_NAME_CREDIT) private Boolean credit = false; public TransferCapabilitiesGetRTP credit(Boolean credit) { this.credit = credit; return this; } /** * When &#x60;true&#x60;, the linked Item&#39;s institution supports RTP credit transfer. * @return credit **/ @javax.annotation.Nullable @ApiModelProperty(value = "When `true`, the linked Item's institution supports RTP credit transfer.") public Boolean getCredit() { return credit; } public void setCredit(Boolean credit) { this.credit = credit; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferCapabilitiesGetRTP transferCapabilitiesGetRTP = (TransferCapabilitiesGetRTP) o; return Objects.equals(this.credit, transferCapabilitiesGetRTP.credit); } @Override public int hashCode() { return Objects.hash(credit); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferCapabilitiesGetRTP {\n"); sb.append(" credit: ").append(toIndentedString(credit)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraBankIncomeEmployer.java
src/main/java/com/plaid/client/model/CraBankIncomeEmployer.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The object containing employer data. */ @ApiModel(description = "The object containing employer data.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraBankIncomeEmployer { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public CraBankIncomeEmployer name(String name) { this.name = name; return this; } /** * The name of the employer. * @return name **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The name of the 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; } CraBankIncomeEmployer craBankIncomeEmployer = (CraBankIncomeEmployer) o; return Objects.equals(this.name, craBankIncomeEmployer.name); } @Override public int hashCode() { return Objects.hash(name); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraBankIncomeEmployer {\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