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/RiskCheckDetails.java
src/main/java/com/plaid/client/model/RiskCheckDetails.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.IdentityVerificationStepStatus; import com.plaid.client.model.RiskCheckBehavior; import com.plaid.client.model.RiskCheckDevice; import com.plaid.client.model.RiskCheckEmail; import com.plaid.client.model.RiskCheckFacialDuplicate; import com.plaid.client.model.RiskCheckIdentityAbuseSignals; import com.plaid.client.model.RiskCheckNetwork; import com.plaid.client.model.RiskCheckPhone; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Additional information for the &#x60;risk_check&#x60; step. */ @ApiModel(description = "Additional information for the `risk_check` step.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class RiskCheckDetails { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private IdentityVerificationStepStatus status; public static final String SERIALIZED_NAME_BEHAVIOR = "behavior"; @SerializedName(SERIALIZED_NAME_BEHAVIOR) private RiskCheckBehavior behavior; public static final String SERIALIZED_NAME_EMAIL = "email"; @SerializedName(SERIALIZED_NAME_EMAIL) private RiskCheckEmail email; public static final String SERIALIZED_NAME_PHONE = "phone"; @SerializedName(SERIALIZED_NAME_PHONE) private RiskCheckPhone phone; public static final String SERIALIZED_NAME_DEVICES = "devices"; @SerializedName(SERIALIZED_NAME_DEVICES) private List<RiskCheckDevice> devices = new ArrayList<>(); public static final String SERIALIZED_NAME_IDENTITY_ABUSE_SIGNALS = "identity_abuse_signals"; @SerializedName(SERIALIZED_NAME_IDENTITY_ABUSE_SIGNALS) private RiskCheckIdentityAbuseSignals identityAbuseSignals; public static final String SERIALIZED_NAME_NETWORK = "network"; @SerializedName(SERIALIZED_NAME_NETWORK) private RiskCheckNetwork network; public static final String SERIALIZED_NAME_FACIAL_DUPLICATES = "facial_duplicates"; @SerializedName(SERIALIZED_NAME_FACIAL_DUPLICATES) private List<RiskCheckFacialDuplicate> facialDuplicates = new ArrayList<>(); public RiskCheckDetails status(IdentityVerificationStepStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public IdentityVerificationStepStatus getStatus() { return status; } public void setStatus(IdentityVerificationStepStatus status) { this.status = status; } public RiskCheckDetails behavior(RiskCheckBehavior behavior) { this.behavior = behavior; return this; } /** * Get behavior * @return behavior **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public RiskCheckBehavior getBehavior() { return behavior; } public void setBehavior(RiskCheckBehavior behavior) { this.behavior = behavior; } public RiskCheckDetails email(RiskCheckEmail email) { this.email = email; return this; } /** * Get email * @return email **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public RiskCheckEmail getEmail() { return email; } public void setEmail(RiskCheckEmail email) { this.email = email; } public RiskCheckDetails phone(RiskCheckPhone phone) { this.phone = phone; return this; } /** * Get phone * @return phone **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public RiskCheckPhone getPhone() { return phone; } public void setPhone(RiskCheckPhone phone) { this.phone = phone; } public RiskCheckDetails devices(List<RiskCheckDevice> devices) { this.devices = devices; return this; } public RiskCheckDetails addDevicesItem(RiskCheckDevice devicesItem) { this.devices.add(devicesItem); return this; } /** * Array of result summary objects specifying values for &#x60;device&#x60; attributes of risk check. * @return devices **/ @ApiModelProperty(required = true, value = "Array of result summary objects specifying values for `device` attributes of risk check.") public List<RiskCheckDevice> getDevices() { return devices; } public void setDevices(List<RiskCheckDevice> devices) { this.devices = devices; } public RiskCheckDetails identityAbuseSignals(RiskCheckIdentityAbuseSignals identityAbuseSignals) { this.identityAbuseSignals = identityAbuseSignals; return this; } /** * Get identityAbuseSignals * @return identityAbuseSignals **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public RiskCheckIdentityAbuseSignals getIdentityAbuseSignals() { return identityAbuseSignals; } public void setIdentityAbuseSignals(RiskCheckIdentityAbuseSignals identityAbuseSignals) { this.identityAbuseSignals = identityAbuseSignals; } public RiskCheckDetails network(RiskCheckNetwork network) { this.network = network; return this; } /** * Get network * @return network **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public RiskCheckNetwork getNetwork() { return network; } public void setNetwork(RiskCheckNetwork network) { this.network = network; } public RiskCheckDetails facialDuplicates(List<RiskCheckFacialDuplicate> facialDuplicates) { this.facialDuplicates = facialDuplicates; return this; } public RiskCheckDetails addFacialDuplicatesItem(RiskCheckFacialDuplicate facialDuplicatesItem) { this.facialDuplicates.add(facialDuplicatesItem); return this; } /** * The attributes related to the facial duplicates captured in risk check. * @return facialDuplicates **/ @ApiModelProperty(required = true, value = "The attributes related to the facial duplicates captured in risk check.") public List<RiskCheckFacialDuplicate> getFacialDuplicates() { return facialDuplicates; } public void setFacialDuplicates(List<RiskCheckFacialDuplicate> facialDuplicates) { this.facialDuplicates = facialDuplicates; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } RiskCheckDetails riskCheckDetails = (RiskCheckDetails) o; return Objects.equals(this.status, riskCheckDetails.status) && Objects.equals(this.behavior, riskCheckDetails.behavior) && Objects.equals(this.email, riskCheckDetails.email) && Objects.equals(this.phone, riskCheckDetails.phone) && Objects.equals(this.devices, riskCheckDetails.devices) && Objects.equals(this.identityAbuseSignals, riskCheckDetails.identityAbuseSignals) && Objects.equals(this.network, riskCheckDetails.network) && Objects.equals(this.facialDuplicates, riskCheckDetails.facialDuplicates); } @Override public int hashCode() { return Objects.hash(status, behavior, email, phone, devices, identityAbuseSignals, network, facialDuplicates); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class RiskCheckDetails {\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" behavior: ").append(toIndentedString(behavior)).append("\n"); sb.append(" email: ").append(toIndentedString(email)).append("\n"); sb.append(" phone: ").append(toIndentedString(phone)).append("\n"); sb.append(" devices: ").append(toIndentedString(devices)).append("\n"); sb.append(" identityAbuseSignals: ").append(toIndentedString(identityAbuseSignals)).append("\n"); sb.append(" network: ").append(toIndentedString(network)).append("\n"); sb.append(" facialDuplicates: ").append(toIndentedString(facialDuplicates)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/InvestmentsAuth401kContributionDetails.java
src/main/java/com/plaid/client/model/InvestmentsAuth401kContributionDetails.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.InvestmentTransaction; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Object containing information on contribution transactions for the 401k account. Note that the sum fields in this object represent the total of absolute contribution values. */ @ApiModel(description = "Object containing information on contribution transactions for the 401k account. Note that the sum fields in this object represent the total of absolute contribution values.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InvestmentsAuth401kContributionDetails { public static final String SERIALIZED_NAME_LAST_CONTRIBUTION_TRANSACTIONS = "last_contribution_transactions"; @SerializedName(SERIALIZED_NAME_LAST_CONTRIBUTION_TRANSACTIONS) private List<InvestmentTransaction> lastContributionTransactions = new ArrayList<>(); public static final String SERIALIZED_NAME_CONTRIBUTION_COUNT1M = "contribution_count_1m"; @SerializedName(SERIALIZED_NAME_CONTRIBUTION_COUNT1M) private Integer contributionCount1m; public static final String SERIALIZED_NAME_CONTRIBUTION_AMOUNT1M = "contribution_amount_1m"; @SerializedName(SERIALIZED_NAME_CONTRIBUTION_AMOUNT1M) private Float contributionAmount1m; public static final String SERIALIZED_NAME_CONTRIBUTION_COUNT6M = "contribution_count_6m"; @SerializedName(SERIALIZED_NAME_CONTRIBUTION_COUNT6M) private Integer contributionCount6m; public static final String SERIALIZED_NAME_CONTRIBUTION_AMOUNT6M = "contribution_amount_6m"; @SerializedName(SERIALIZED_NAME_CONTRIBUTION_AMOUNT6M) private Float contributionAmount6m; public static final String SERIALIZED_NAME_CONTRIBUTION_COUNT12M = "contribution_count_12m"; @SerializedName(SERIALIZED_NAME_CONTRIBUTION_COUNT12M) private Integer contributionCount12m; public static final String SERIALIZED_NAME_CONTRIBUTION_AMOUNT12M = "contribution_amount_12m"; @SerializedName(SERIALIZED_NAME_CONTRIBUTION_AMOUNT12M) private Float contributionAmount12m; public InvestmentsAuth401kContributionDetails lastContributionTransactions(List<InvestmentTransaction> lastContributionTransactions) { this.lastContributionTransactions = lastContributionTransactions; return this; } public InvestmentsAuth401kContributionDetails addLastContributionTransactionsItem(InvestmentTransaction lastContributionTransactionsItem) { this.lastContributionTransactions.add(lastContributionTransactionsItem); return this; } /** * A list of the most recent contribution transactions for the 401k account. Includes all contributions made on the same day. * @return lastContributionTransactions **/ @ApiModelProperty(required = true, value = "A list of the most recent contribution transactions for the 401k account. Includes all contributions made on the same day.") public List<InvestmentTransaction> getLastContributionTransactions() { return lastContributionTransactions; } public void setLastContributionTransactions(List<InvestmentTransaction> lastContributionTransactions) { this.lastContributionTransactions = lastContributionTransactions; } public InvestmentsAuth401kContributionDetails contributionCount1m(Integer contributionCount1m) { this.contributionCount1m = contributionCount1m; return this; } /** * Number of contribution transactions on this account, for the past month. * @return contributionCount1m **/ @ApiModelProperty(required = true, value = "Number of contribution transactions on this account, for the past month.") public Integer getContributionCount1m() { return contributionCount1m; } public void setContributionCount1m(Integer contributionCount1m) { this.contributionCount1m = contributionCount1m; } public InvestmentsAuth401kContributionDetails contributionAmount1m(Float contributionAmount1m) { this.contributionAmount1m = contributionAmount1m; return this; } /** * Sum of the contribution transactions on this account, for the past month. * @return contributionAmount1m **/ @ApiModelProperty(required = true, value = "Sum of the contribution transactions on this account, for the past month.") public Float getContributionAmount1m() { return contributionAmount1m; } public void setContributionAmount1m(Float contributionAmount1m) { this.contributionAmount1m = contributionAmount1m; } public InvestmentsAuth401kContributionDetails contributionCount6m(Integer contributionCount6m) { this.contributionCount6m = contributionCount6m; return this; } /** * Number of contribution transactions on this account, for the past 6 months. * @return contributionCount6m **/ @ApiModelProperty(required = true, value = "Number of contribution transactions on this account, for the past 6 months.") public Integer getContributionCount6m() { return contributionCount6m; } public void setContributionCount6m(Integer contributionCount6m) { this.contributionCount6m = contributionCount6m; } public InvestmentsAuth401kContributionDetails contributionAmount6m(Float contributionAmount6m) { this.contributionAmount6m = contributionAmount6m; return this; } /** * Sum of the contribution transactions on this account, for the past 6 months. * @return contributionAmount6m **/ @ApiModelProperty(required = true, value = "Sum of the contribution transactions on this account, for the past 6 months.") public Float getContributionAmount6m() { return contributionAmount6m; } public void setContributionAmount6m(Float contributionAmount6m) { this.contributionAmount6m = contributionAmount6m; } public InvestmentsAuth401kContributionDetails contributionCount12m(Integer contributionCount12m) { this.contributionCount12m = contributionCount12m; return this; } /** * Number of contribution transactions on this account, for the past 12 months. * @return contributionCount12m **/ @ApiModelProperty(required = true, value = "Number of contribution transactions on this account, for the past 12 months.") public Integer getContributionCount12m() { return contributionCount12m; } public void setContributionCount12m(Integer contributionCount12m) { this.contributionCount12m = contributionCount12m; } public InvestmentsAuth401kContributionDetails contributionAmount12m(Float contributionAmount12m) { this.contributionAmount12m = contributionAmount12m; return this; } /** * Sum of the contribution transactions on this account, for the past 12 months. * @return contributionAmount12m **/ @ApiModelProperty(required = true, value = "Sum of the contribution transactions on this account, for the past 12 months.") public Float getContributionAmount12m() { return contributionAmount12m; } public void setContributionAmount12m(Float contributionAmount12m) { this.contributionAmount12m = contributionAmount12m; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } InvestmentsAuth401kContributionDetails investmentsAuth401kContributionDetails = (InvestmentsAuth401kContributionDetails) o; return Objects.equals(this.lastContributionTransactions, investmentsAuth401kContributionDetails.lastContributionTransactions) && Objects.equals(this.contributionCount1m, investmentsAuth401kContributionDetails.contributionCount1m) && Objects.equals(this.contributionAmount1m, investmentsAuth401kContributionDetails.contributionAmount1m) && Objects.equals(this.contributionCount6m, investmentsAuth401kContributionDetails.contributionCount6m) && Objects.equals(this.contributionAmount6m, investmentsAuth401kContributionDetails.contributionAmount6m) && Objects.equals(this.contributionCount12m, investmentsAuth401kContributionDetails.contributionCount12m) && Objects.equals(this.contributionAmount12m, investmentsAuth401kContributionDetails.contributionAmount12m); } @Override public int hashCode() { return Objects.hash(lastContributionTransactions, contributionCount1m, contributionAmount1m, contributionCount6m, contributionAmount6m, contributionCount12m, contributionAmount12m); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InvestmentsAuth401kContributionDetails {\n"); sb.append(" lastContributionTransactions: ").append(toIndentedString(lastContributionTransactions)).append("\n"); sb.append(" contributionCount1m: ").append(toIndentedString(contributionCount1m)).append("\n"); sb.append(" contributionAmount1m: ").append(toIndentedString(contributionAmount1m)).append("\n"); sb.append(" contributionCount6m: ").append(toIndentedString(contributionCount6m)).append("\n"); sb.append(" contributionAmount6m: ").append(toIndentedString(contributionAmount6m)).append("\n"); sb.append(" contributionCount12m: ").append(toIndentedString(contributionCount12m)).append("\n"); sb.append(" contributionAmount12m: ").append(toIndentedString(contributionAmount12m)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WatchlistScreeningDocumentType.java
src/main/java/com/plaid/client/model/WatchlistScreeningDocumentType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The kind of official document represented by this object. &#x60;birth_certificate&#x60; - A certificate of birth &#x60;drivers_license&#x60; - A license to operate a motor vehicle &#x60;immigration_number&#x60; - Immigration or residence documents &#x60;military_id&#x60; - Identification issued by a military group &#x60;other&#x60; - Any document not covered by other categories &#x60;passport&#x60; - An official passport issue by a government &#x60;personal_identification&#x60; - Any generic personal identification that is not covered by other categories &#x60;ration_card&#x60; - Identification that entitles the holder to rations &#x60;ssn&#x60; - United States Social Security Number &#x60;student_id&#x60; - Identification issued by an educational institution &#x60;tax_id&#x60; - Identification issued for the purpose of collecting taxes &#x60;travel_document&#x60; - Visas, entry permits, refugee documents, etc. &#x60;voter_id&#x60; - Identification issued for the purpose of voting */ @JsonAdapter(WatchlistScreeningDocumentType.Adapter.class) public enum WatchlistScreeningDocumentType { BIRTH_CERTIFICATE("birth_certificate"), DRIVERS_LICENSE("drivers_license"), IMMIGRATION_NUMBER("immigration_number"), MILITARY_ID("military_id"), OTHER("other"), PASSPORT("passport"), PERSONAL_IDENTIFICATION("personal_identification"), RATION_CARD("ration_card"), SSN("ssn"), STUDENT_ID("student_id"), TAX_ID("tax_id"), TRAVEL_DOCUMENT("travel_document"), VOTER_ID("voter_id"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; WatchlistScreeningDocumentType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static WatchlistScreeningDocumentType fromValue(String value) { for (WatchlistScreeningDocumentType b : WatchlistScreeningDocumentType.values()) { if (b.value.equals(value)) { return b; } } return WatchlistScreeningDocumentType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<WatchlistScreeningDocumentType> { @Override public void write(final JsonWriter jsonWriter, final WatchlistScreeningDocumentType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public WatchlistScreeningDocumentType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return WatchlistScreeningDocumentType.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/WalletGetResponse.java
src/main/java/com/plaid/client/model/WalletGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.PaymentInitiationRecipientGetResponseAllOf; import com.plaid.client.model.Wallet; import com.plaid.client.model.WalletBalance; import com.plaid.client.model.WalletNumbers; import com.plaid.client.model.WalletStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * WalletGetResponse defines the response schema for &#x60;/wallet/get&#x60; */ @ApiModel(description = "WalletGetResponse defines the response schema for `/wallet/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WalletGetResponse { public static final String SERIALIZED_NAME_WALLET_ID = "wallet_id"; @SerializedName(SERIALIZED_NAME_WALLET_ID) private String walletId; public static final String SERIALIZED_NAME_BALANCE = "balance"; @SerializedName(SERIALIZED_NAME_BALANCE) private WalletBalance balance; public static final String SERIALIZED_NAME_NUMBERS = "numbers"; @SerializedName(SERIALIZED_NAME_NUMBERS) private WalletNumbers numbers; public static final String SERIALIZED_NAME_RECIPIENT_ID = "recipient_id"; @SerializedName(SERIALIZED_NAME_RECIPIENT_ID) private String recipientId; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private WalletStatus status; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public WalletGetResponse walletId(String walletId) { this.walletId = walletId; return this; } /** * A unique ID identifying the e-wallet * @return walletId **/ @ApiModelProperty(required = true, value = "A unique ID identifying the e-wallet") public String getWalletId() { return walletId; } public void setWalletId(String walletId) { this.walletId = walletId; } public WalletGetResponse balance(WalletBalance balance) { this.balance = balance; return this; } /** * Get balance * @return balance **/ @ApiModelProperty(required = true, value = "") public WalletBalance getBalance() { return balance; } public void setBalance(WalletBalance balance) { this.balance = balance; } public WalletGetResponse numbers(WalletNumbers numbers) { this.numbers = numbers; return this; } /** * Get numbers * @return numbers **/ @ApiModelProperty(required = true, value = "") public WalletNumbers getNumbers() { return numbers; } public void setNumbers(WalletNumbers numbers) { this.numbers = numbers; } public WalletGetResponse recipientId(String recipientId) { this.recipientId = recipientId; return this; } /** * The ID of the recipient that corresponds to the e-wallet account numbers * @return recipientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ID of the recipient that corresponds to the e-wallet account numbers") public String getRecipientId() { return recipientId; } public void setRecipientId(String recipientId) { this.recipientId = recipientId; } public WalletGetResponse status(WalletStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public WalletStatus getStatus() { return status; } public void setStatus(WalletStatus status) { this.status = status; } public WalletGetResponse 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; } WalletGetResponse walletGetResponse = (WalletGetResponse) o; return Objects.equals(this.walletId, walletGetResponse.walletId) && Objects.equals(this.balance, walletGetResponse.balance) && Objects.equals(this.numbers, walletGetResponse.numbers) && Objects.equals(this.recipientId, walletGetResponse.recipientId) && Objects.equals(this.status, walletGetResponse.status) && Objects.equals(this.requestId, walletGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(walletId, balance, numbers, recipientId, status, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WalletGetResponse {\n"); sb.append(" walletId: ").append(toIndentedString(walletId)).append("\n"); sb.append(" balance: ").append(toIndentedString(balance)).append("\n"); sb.append(" numbers: ").append(toIndentedString(numbers)).append("\n"); sb.append(" recipientId: ").append(toIndentedString(recipientId)).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/BeaconAuditTrailSource.java
src/main/java/com/plaid/client/model/BeaconAuditTrailSource.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 type indicating what caused a resource to be changed or updated. &#x60;dashboard&#x60; - The resource was created or updated by a member of your team via the Plaid dashboard. &#x60;api&#x60; - The resource was created or updated via the Plaid API. &#x60;system&#x60; - The resource was created or updated automatically by a part of the Plaid Beacon system. For example, if another business using Plaid Beacon created a fraud report that matched one of your users, your matching user&#39;s status would automatically be updated and the audit trail source would be &#x60;system&#x60;. &#x60;bulk_import&#x60; - The resource was created or updated as part of a bulk import process. For example, if your company provided a CSV of user data as part of your initial onboarding, the audit trail source would be &#x60;bulk_import&#x60;. */ @JsonAdapter(BeaconAuditTrailSource.Adapter.class) public enum BeaconAuditTrailSource { DASHBOARD("dashboard"), API("api"), SYSTEM("system"), BULK_IMPORT("bulk_import"), // 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; BeaconAuditTrailSource(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static BeaconAuditTrailSource fromValue(String value) { for (BeaconAuditTrailSource b : BeaconAuditTrailSource.values()) { if (b.value.equals(value)) { return b; } } return BeaconAuditTrailSource.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<BeaconAuditTrailSource> { @Override public void write(final JsonWriter jsonWriter, final BeaconAuditTrailSource enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public BeaconAuditTrailSource read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return BeaconAuditTrailSource.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/WalletTransactionListResponse.java
src/main/java/com/plaid/client/model/WalletTransactionListResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.WalletTransaction; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * WalletTransactionListResponse defines the response schema for &#x60;/wallet/transaction/list&#x60; */ @ApiModel(description = "WalletTransactionListResponse defines the response schema for `/wallet/transaction/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WalletTransactionListResponse { public static final String SERIALIZED_NAME_TRANSACTIONS = "transactions"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS) private List<WalletTransaction> transactions = new ArrayList<>(); public static final String SERIALIZED_NAME_NEXT_CURSOR = "next_cursor"; @SerializedName(SERIALIZED_NAME_NEXT_CURSOR) private String nextCursor; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public WalletTransactionListResponse transactions(List<WalletTransaction> transactions) { this.transactions = transactions; return this; } public WalletTransactionListResponse addTransactionsItem(WalletTransaction transactionsItem) { this.transactions.add(transactionsItem); return this; } /** * An array of transactions of an e-wallet, associated with the given &#x60;wallet_id&#x60; * @return transactions **/ @ApiModelProperty(required = true, value = "An array of transactions of an e-wallet, associated with the given `wallet_id`") public List<WalletTransaction> getTransactions() { return transactions; } public void setTransactions(List<WalletTransaction> transactions) { this.transactions = transactions; } public WalletTransactionListResponse nextCursor(String nextCursor) { this.nextCursor = nextCursor; return this; } /** * The value that, when used as the optional &#x60;cursor&#x60; parameter to &#x60;/wallet/transaction/list&#x60;, will return the corresponding transaction as its first entry. * @return nextCursor **/ @javax.annotation.Nullable @ApiModelProperty(value = "The value that, when used as the optional `cursor` parameter to `/wallet/transaction/list`, will return the corresponding transaction as its first entry.") public String getNextCursor() { return nextCursor; } public void setNextCursor(String nextCursor) { this.nextCursor = nextCursor; } public WalletTransactionListResponse 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; } WalletTransactionListResponse walletTransactionListResponse = (WalletTransactionListResponse) o; return Objects.equals(this.transactions, walletTransactionListResponse.transactions) && Objects.equals(this.nextCursor, walletTransactionListResponse.nextCursor) && Objects.equals(this.requestId, walletTransactionListResponse.requestId); } @Override public int hashCode() { return Objects.hash(transactions, nextCursor, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WalletTransactionListResponse {\n"); sb.append(" transactions: ").append(toIndentedString(transactions)).append("\n"); sb.append(" nextCursor: ").append(toIndentedString(nextCursor)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/InitialUpdateWebhook.java
src/main/java/com/plaid/client/model/InitialUpdateWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.math.BigDecimal; /** * Fired when an Item&#39;s initial transaction pull is completed. Once this webhook has been fired, transaction data for the most recent 30 days can be fetched for the Item. This webhook will also be fired if account selections for the Item are updated, with &#x60;new_transactions&#x60; set to the number of net new transactions pulled after the account selection update. This webhook is intended for use with &#x60;/transactions/get&#x60;; if you are using the newer &#x60;/transactions/sync&#x60; endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the &#x60;SYNC_UPDATES_AVAILABLE&#x60; webhook instead. */ @ApiModel(description = "Fired when an Item's initial transaction pull is completed. Once this webhook has been fired, transaction data for the most recent 30 days can be fetched for the Item. This webhook will also be fired if account selections for the Item are updated, with `new_transactions` set to the number of net new transactions pulled after the account selection update. This webhook is intended for use with `/transactions/get`; if you are using the newer `/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InitialUpdateWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private String error; public static final String SERIALIZED_NAME_NEW_TRANSACTIONS = "new_transactions"; @SerializedName(SERIALIZED_NAME_NEW_TRANSACTIONS) private Double newTransactions; public static final String SERIALIZED_NAME_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 InitialUpdateWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;TRANSACTIONS&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`TRANSACTIONS`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public InitialUpdateWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;INITIAL_UPDATE&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`INITIAL_UPDATE`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public InitialUpdateWebhook error(String error) { this.error = error; return this; } /** * The error code associated with the webhook. * @return error **/ @javax.annotation.Nullable @ApiModelProperty(value = "The error code associated with the webhook.") public String getError() { return error; } public void setError(String error) { this.error = error; } public InitialUpdateWebhook newTransactions(Double newTransactions) { this.newTransactions = newTransactions; return this; } /** * The number of new transactions available. * @return newTransactions **/ @ApiModelProperty(required = true, value = "The number of new transactions available.") public Double getNewTransactions() { return newTransactions; } public void setNewTransactions(Double newTransactions) { this.newTransactions = newTransactions; } public InitialUpdateWebhook 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 InitialUpdateWebhook 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; } InitialUpdateWebhook initialUpdateWebhook = (InitialUpdateWebhook) o; return Objects.equals(this.webhookType, initialUpdateWebhook.webhookType) && Objects.equals(this.webhookCode, initialUpdateWebhook.webhookCode) && Objects.equals(this.error, initialUpdateWebhook.error) && Objects.equals(this.newTransactions, initialUpdateWebhook.newTransactions) && Objects.equals(this.itemId, initialUpdateWebhook.itemId) && Objects.equals(this.environment, initialUpdateWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, error, newTransactions, itemId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InitialUpdateWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" error: ").append(toIndentedString(error)).append("\n"); sb.append(" newTransactions: ").append(toIndentedString(newTransactions)).append("\n"); sb.append(" 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/ProtectUserInsightsGetResponse.java
src/main/java/com/plaid/client/model/ProtectUserInsightsGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.LatestScoredEvent; import com.plaid.client.model.ProtectReport; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Response object for /protect/user/insights/get */ @ApiModel(description = "Response object for /protect/user/insights/get") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProtectUserInsightsGetResponse { public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_LATEST_SCORED_EVENT = "latest_scored_event"; @SerializedName(SERIALIZED_NAME_LATEST_SCORED_EVENT) private LatestScoredEvent latestScoredEvent; public static final String SERIALIZED_NAME_REPORTS = "reports"; @SerializedName(SERIALIZED_NAME_REPORTS) private List<ProtectReport> reports = null; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public ProtectUserInsightsGetResponse userId(String userId) { this.userId = userId; return this; } /** * The Plaid User ID. If a &#x60;client_user_id&#x60; was provided in the request instead of a &#x60;user_id&#x60;, a new &#x60;user_id&#x60; will be generated if one doesn&#39;t already exist for that &#x60;client_user_id&#x60;. * @return userId **/ @ApiModelProperty(required = true, value = "The Plaid User ID. If a `client_user_id` was provided in the request instead of a `user_id`, a new `user_id` will be generated if one doesn't already exist for that `client_user_id`.") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public ProtectUserInsightsGetResponse latestScoredEvent(LatestScoredEvent latestScoredEvent) { this.latestScoredEvent = latestScoredEvent; return this; } /** * Get latestScoredEvent * @return latestScoredEvent **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public LatestScoredEvent getLatestScoredEvent() { return latestScoredEvent; } public void setLatestScoredEvent(LatestScoredEvent latestScoredEvent) { this.latestScoredEvent = latestScoredEvent; } public ProtectUserInsightsGetResponse reports(List<ProtectReport> reports) { this.reports = reports; return this; } public ProtectUserInsightsGetResponse addReportsItem(ProtectReport reportsItem) { if (this.reports == null) { this.reports = new ArrayList<>(); } this.reports.add(reportsItem); return this; } /** * List of Protect reports associated with this user, limited to the most recent 100 reports in reverse chronological order (newest first). * @return reports **/ @javax.annotation.Nullable @ApiModelProperty(value = "List of Protect reports associated with this user, limited to the most recent 100 reports in reverse chronological order (newest first).") public List<ProtectReport> getReports() { return reports; } public void setReports(List<ProtectReport> reports) { this.reports = reports; } public ProtectUserInsightsGetResponse 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; } ProtectUserInsightsGetResponse protectUserInsightsGetResponse = (ProtectUserInsightsGetResponse) o; return Objects.equals(this.userId, protectUserInsightsGetResponse.userId) && Objects.equals(this.latestScoredEvent, protectUserInsightsGetResponse.latestScoredEvent) && Objects.equals(this.reports, protectUserInsightsGetResponse.reports) && Objects.equals(this.requestId, protectUserInsightsGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(userId, latestScoredEvent, reports, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProtectUserInsightsGetResponse {\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" latestScoredEvent: ").append(toIndentedString(latestScoredEvent)).append("\n"); sb.append(" reports: ").append(toIndentedString(reports)).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/RecipientBACS.java
src/main/java/com/plaid/client/model/RecipientBACS.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object containing a BACS account number and sort code. If an IBAN is not provided or if you need to accept domestic GBP-denominated payments, BACS data is required. */ @ApiModel(description = "An object containing a BACS account number and sort code. If an IBAN is not provided or if you need to accept domestic GBP-denominated payments, BACS data is required.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class RecipientBACS { 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 RecipientBACS account(String account) { this.account = account; return this; } /** * The account number of the account. Maximum of 10 characters. * @return account **/ @javax.annotation.Nullable @ApiModelProperty(value = "The account number of the account. Maximum of 10 characters.") public String getAccount() { return account; } public void setAccount(String account) { this.account = account; } public RecipientBACS sortCode(String sortCode) { this.sortCode = sortCode; return this; } /** * The 6-character sort code of the account. * @return sortCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The 6-character sort code of 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; } RecipientBACS recipientBACS = (RecipientBACS) o; return Objects.equals(this.account, recipientBACS.account) && Objects.equals(this.sortCode, recipientBACS.sortCode); } @Override public int hashCode() { return Objects.hash(account, sortCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class RecipientBACS {\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/CashflowReportInsightsGetRequest.java
src/main/java/com/plaid/client/model/CashflowReportInsightsGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * CashflowReportInsightsGetRequest defines the request schema for &#x60;/cashflow_report/insights/get&#x60; */ @ApiModel(description = "CashflowReportInsightsGetRequest defines the request schema for `/cashflow_report/insights/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CashflowReportInsightsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) private String accessToken; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public CashflowReportInsightsGetRequest 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 CashflowReportInsightsGetRequest accessToken(String accessToken) { this.accessToken = accessToken; return this; } /** * The access token associated with the Item data is being requested for. * @return accessToken **/ @ApiModelProperty(required = true, value = "The access token associated with the Item data is being requested for.") public String getAccessToken() { return accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; } public CashflowReportInsightsGetRequest 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; } CashflowReportInsightsGetRequest cashflowReportInsightsGetRequest = (CashflowReportInsightsGetRequest) o; return Objects.equals(this.clientId, cashflowReportInsightsGetRequest.clientId) && Objects.equals(this.accessToken, cashflowReportInsightsGetRequest.accessToken) && Objects.equals(this.secret, cashflowReportInsightsGetRequest.secret); } @Override public int hashCode() { return Objects.hash(clientId, accessToken, secret); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CashflowReportInsightsGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetHolder.java
src/main/java/com/plaid/client/model/AssetHolder.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AssetHolderName; 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 AssetHolder { public static final String SERIALIZED_NAME_N_A_M_E = "NAME"; @SerializedName(SERIALIZED_NAME_N_A_M_E) private AssetHolderName NAME; public AssetHolder NAME(AssetHolderName NAME) { this.NAME = NAME; return this; } /** * Get NAME * @return NAME **/ @ApiModelProperty(required = true, value = "") public AssetHolderName getNAME() { return NAME; } public void setNAME(AssetHolderName NAME) { this.NAME = NAME; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AssetHolder assetHolder = (AssetHolder) o; return Objects.equals(this.NAME, assetHolder.NAME); } @Override public int hashCode() { return Objects.hash(NAME); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetHolder {\n"); sb.append(" NAME: ").append(toIndentedString(NAME)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IndividualName.java
src/main/java/com/plaid/client/model/IndividualName.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Parent container for name that allows for choice group between parsed and unparsed containers.Parent container for name that allows for choice group between parsed and unparsed containers. */ @ApiModel(description = "Parent container for name that allows for choice group between parsed and unparsed containers.Parent container for name that allows for choice group between parsed and unparsed containers.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IndividualName { public static final String SERIALIZED_NAME_FIRST_NAME = "FirstName"; @SerializedName(SERIALIZED_NAME_FIRST_NAME) private String firstName; public static final String SERIALIZED_NAME_LAST_NAME = "LastName"; @SerializedName(SERIALIZED_NAME_LAST_NAME) private String lastName; public IndividualName firstName(String firstName) { this.firstName = firstName; return this; } /** * The first name of the individual represented by the parent object. * @return firstName **/ @ApiModelProperty(required = true, value = "The first name of the individual represented by the parent object.") public String getFirstName() { return firstName; } public void setFirstName(String firstName) { this.firstName = firstName; } public IndividualName lastName(String lastName) { this.lastName = lastName; return this; } /** * The last name of the individual represented by the parent object. * @return lastName **/ @ApiModelProperty(required = true, value = "The last name of the individual represented by the parent object.") public String getLastName() { return lastName; } public void setLastName(String lastName) { this.lastName = lastName; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IndividualName individualName = (IndividualName) o; return Objects.equals(this.firstName, individualName.firstName) && Objects.equals(this.lastName, individualName.lastName); } @Override public int hashCode() { return Objects.hash(firstName, lastName); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IndividualName {\n"); sb.append(" firstName: ").append(toIndentedString(firstName)).append("\n"); sb.append(" lastName: ").append(toIndentedString(lastName)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SandboxTransferSweepSimulateResponse.java
src/main/java/com/plaid/client/model/SandboxTransferSweepSimulateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.SimulatedTransferSweep; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the response schema for &#x60;/sandbox/transfer/sweep/simulate&#x60; */ @ApiModel(description = "Defines the response schema for `/sandbox/transfer/sweep/simulate`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SandboxTransferSweepSimulateResponse { public static final String SERIALIZED_NAME_SWEEP = "sweep"; @SerializedName(SERIALIZED_NAME_SWEEP) private SimulatedTransferSweep sweep; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public SandboxTransferSweepSimulateResponse sweep(SimulatedTransferSweep sweep) { this.sweep = sweep; return this; } /** * Get sweep * @return sweep **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public SimulatedTransferSweep getSweep() { return sweep; } public void setSweep(SimulatedTransferSweep sweep) { this.sweep = sweep; } public SandboxTransferSweepSimulateResponse 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; } SandboxTransferSweepSimulateResponse sandboxTransferSweepSimulateResponse = (SandboxTransferSweepSimulateResponse) o; return Objects.equals(this.sweep, sandboxTransferSweepSimulateResponse.sweep) && Objects.equals(this.requestId, sandboxTransferSweepSimulateResponse.requestId); } @Override public int hashCode() { return Objects.hash(sweep, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SandboxTransferSweepSimulateResponse {\n"); sb.append(" sweep: ").append(toIndentedString(sweep)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferDevice.java
src/main/java/com/plaid/client/model/TransferDevice.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Information about the device being used to initiate the authorization. */ @ApiModel(description = "Information about the device being used to initiate the authorization.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferDevice { public static final String SERIALIZED_NAME_IP_ADDRESS = "ip_address"; @SerializedName(SERIALIZED_NAME_IP_ADDRESS) private String ipAddress; public static final String SERIALIZED_NAME_USER_AGENT = "user_agent"; @SerializedName(SERIALIZED_NAME_USER_AGENT) private String userAgent; public TransferDevice ipAddress(String ipAddress) { this.ipAddress = ipAddress; return this; } /** * The IP address of the device being used to initiate the authorization. * @return ipAddress **/ @ApiModelProperty(required = true, value = "The IP address of the device being used to initiate the authorization.") public String getIpAddress() { return ipAddress; } public void setIpAddress(String ipAddress) { this.ipAddress = ipAddress; } public TransferDevice userAgent(String userAgent) { this.userAgent = userAgent; return this; } /** * The user agent of the device being used to initiate the authorization. * @return userAgent **/ @ApiModelProperty(required = true, value = "The user agent of the device being used to initiate the authorization.") public String getUserAgent() { return userAgent; } public void setUserAgent(String userAgent) { this.userAgent = userAgent; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferDevice transferDevice = (TransferDevice) o; return Objects.equals(this.ipAddress, transferDevice.ipAddress) && Objects.equals(this.userAgent, transferDevice.userAgent); } @Override public int hashCode() { return Objects.hash(ipAddress, userAgent); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferDevice {\n"); sb.append(" ipAddress: ").append(toIndentedString(ipAddress)).append("\n"); sb.append(" userAgent: ").append(toIndentedString(userAgent)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ItemImportRequestUserAuth.java
src/main/java/com/plaid/client/model/ItemImportRequestUserAuth.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Object of user ID and auth token pair, permitting Plaid to aggregate a user’s accounts */ @ApiModel(description = "Object of user ID and auth token pair, permitting Plaid to aggregate a user’s accounts") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ItemImportRequestUserAuth { public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_AUTH_TOKEN = "auth_token"; @SerializedName(SERIALIZED_NAME_AUTH_TOKEN) private String authToken; public ItemImportRequestUserAuth userId(String userId) { this.userId = userId; return this; } /** * Opaque user identifier * @return userId **/ @ApiModelProperty(required = true, value = "Opaque user identifier") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public ItemImportRequestUserAuth authToken(String authToken) { this.authToken = authToken; return this; } /** * Authorization token Plaid will use to aggregate this user’s accounts * @return authToken **/ @ApiModelProperty(required = true, value = "Authorization token Plaid will use to aggregate this user’s accounts") public String getAuthToken() { return authToken; } public void setAuthToken(String authToken) { this.authToken = authToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ItemImportRequestUserAuth itemImportRequestUserAuth = (ItemImportRequestUserAuth) o; return Objects.equals(this.userId, itemImportRequestUserAuth.userId) && Objects.equals(this.authToken, itemImportRequestUserAuth.authToken); } @Override public int hashCode() { return Objects.hash(userId, authToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ItemImportRequestUserAuth {\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" authToken: ").append(toIndentedString(authToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferPlatformRequirement.java
src/main/java/com/plaid/client/model/TransferPlatformRequirement.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 piece of information that is required for originator onboarding. */ @ApiModel(description = "A piece of information that is required for originator onboarding.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferPlatformRequirement { public static final String SERIALIZED_NAME_REQUIREMENT_TYPE = "requirement_type"; @SerializedName(SERIALIZED_NAME_REQUIREMENT_TYPE) private String requirementType; public static final String SERIALIZED_NAME_PERSON_ID = "person_id"; @SerializedName(SERIALIZED_NAME_PERSON_ID) private String personId; public TransferPlatformRequirement requirementType(String requirementType) { this.requirementType = requirementType; return this; } /** * The type of requirement. * @return requirementType **/ @javax.annotation.Nullable @ApiModelProperty(value = "The type of requirement.") public String getRequirementType() { return requirementType; } public void setRequirementType(String requirementType) { this.requirementType = requirementType; } public TransferPlatformRequirement personId(String personId) { this.personId = personId; return this; } /** * UUID of the person associated with the requirement. Only present for individual-scoped requirements. * @return personId **/ @javax.annotation.Nullable @ApiModelProperty(value = "UUID of the person associated with the requirement. Only present for individual-scoped requirements.") public String getPersonId() { return personId; } public void setPersonId(String personId) { this.personId = personId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferPlatformRequirement transferPlatformRequirement = (TransferPlatformRequirement) o; return Objects.equals(this.requirementType, transferPlatformRequirement.requirementType) && Objects.equals(this.personId, transferPlatformRequirement.personId); } @Override public int hashCode() { return Objects.hash(requirementType, personId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferPlatformRequirement {\n"); sb.append(" requirementType: ").append(toIndentedString(requirementType)).append("\n"); sb.append(" personId: ").append(toIndentedString(personId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IdentityGetResponse.java
src/main/java/com/plaid/client/model/IdentityGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AccountIdentity; import com.plaid.client.model.Item; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * IdentityGetResponse defines the response schema for &#x60;/identity/get&#x60; */ @ApiModel(description = "IdentityGetResponse defines the response schema for `/identity/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityGetResponse { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) private List<AccountIdentity> accounts = new ArrayList<>(); public static final String SERIALIZED_NAME_ITEM = "item"; @SerializedName(SERIALIZED_NAME_ITEM) private Item item; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public IdentityGetResponse accounts(List<AccountIdentity> accounts) { this.accounts = accounts; return this; } public IdentityGetResponse addAccountsItem(AccountIdentity accountsItem) { this.accounts.add(accountsItem); return this; } /** * The accounts for which Identity data has been requested * @return accounts **/ @ApiModelProperty(required = true, value = "The accounts for which Identity data has been requested") public List<AccountIdentity> getAccounts() { return accounts; } public void setAccounts(List<AccountIdentity> accounts) { this.accounts = accounts; } public IdentityGetResponse item(Item item) { this.item = item; return this; } /** * Get item * @return item **/ @ApiModelProperty(required = true, value = "") public Item getItem() { return item; } public void setItem(Item item) { this.item = item; } public IdentityGetResponse 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; } IdentityGetResponse identityGetResponse = (IdentityGetResponse) o; return Objects.equals(this.accounts, identityGetResponse.accounts) && Objects.equals(this.item, identityGetResponse.item) && Objects.equals(this.requestId, identityGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(accounts, item, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityGetResponse {\n"); sb.append(" accounts: ").append(toIndentedString(accounts)).append("\n"); sb.append(" item: ").append(toIndentedString(item)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SandboxBankIncomeWebhookFireRequestWebhookCode.java
src/main/java/com/plaid/client/model/SandboxBankIncomeWebhookFireRequestWebhookCode.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The webhook codes this endpoint can be used to test */ @JsonAdapter(SandboxBankIncomeWebhookFireRequestWebhookCode.Adapter.class) public enum SandboxBankIncomeWebhookFireRequestWebhookCode { UPDATE("BANK_INCOME_REFRESH_UPDATE"), COMPLETE("BANK_INCOME_REFRESH_COMPLETE"), // 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; SandboxBankIncomeWebhookFireRequestWebhookCode(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static SandboxBankIncomeWebhookFireRequestWebhookCode fromValue(String value) { for (SandboxBankIncomeWebhookFireRequestWebhookCode b : SandboxBankIncomeWebhookFireRequestWebhookCode.values()) { if (b.value.equals(value)) { return b; } } return SandboxBankIncomeWebhookFireRequestWebhookCode.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<SandboxBankIncomeWebhookFireRequestWebhookCode> { @Override public void write(final JsonWriter jsonWriter, final SandboxBankIncomeWebhookFireRequestWebhookCode enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public SandboxBankIncomeWebhookFireRequestWebhookCode read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return SandboxBankIncomeWebhookFireRequestWebhookCode.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/WatchlistScreeningEntityProgramGetResponse.java
src/main/java/com/plaid/client/model/WatchlistScreeningEntityProgramGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.EntityWatchlistCode; import com.plaid.client.model.ProgramNameSensitivity; import com.plaid.client.model.WatchlistScreeningAuditTrail; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.LinkedHashSet; import java.util.List; import java.util.Set; /** * A program that configures the active lists, search parameters, and other behavior for initial and ongoing screening of entities. */ @ApiModel(description = "A program that configures the active lists, search parameters, and other behavior for initial and ongoing screening of entities.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WatchlistScreeningEntityProgramGetResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) private String id; public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) private java.sql.Timestamp createdAt; public static final String SERIALIZED_NAME_IS_RESCANNING_ENABLED = "is_rescanning_enabled"; @SerializedName(SERIALIZED_NAME_IS_RESCANNING_ENABLED) private Boolean isRescanningEnabled; public static final String SERIALIZED_NAME_LISTS_ENABLED = "lists_enabled"; @SerializedName(SERIALIZED_NAME_LISTS_ENABLED) private Set<EntityWatchlistCode> listsEnabled = new LinkedHashSet<>(); public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_NAME_SENSITIVITY = "name_sensitivity"; @SerializedName(SERIALIZED_NAME_NAME_SENSITIVITY) private ProgramNameSensitivity nameSensitivity; public static final String SERIALIZED_NAME_AUDIT_TRAIL = "audit_trail"; @SerializedName(SERIALIZED_NAME_AUDIT_TRAIL) private WatchlistScreeningAuditTrail auditTrail; public static final String SERIALIZED_NAME_IS_ARCHIVED = "is_archived"; @SerializedName(SERIALIZED_NAME_IS_ARCHIVED) private Boolean isArchived; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public WatchlistScreeningEntityProgramGetResponse id(String id) { this.id = id; return this; } /** * ID of the associated entity program. * @return id **/ @ApiModelProperty(example = "entprg_2eRPsDnL66rZ7H", required = true, value = "ID of the associated entity program.") public String getId() { return id; } public void setId(String id) { this.id = id; } public WatchlistScreeningEntityProgramGetResponse 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 WatchlistScreeningEntityProgramGetResponse isRescanningEnabled(Boolean isRescanningEnabled) { this.isRescanningEnabled = isRescanningEnabled; return this; } /** * Indicator specifying whether the program is enabled and will perform daily rescans. * @return isRescanningEnabled **/ @ApiModelProperty(example = "true", required = true, value = "Indicator specifying whether the program is enabled and will perform daily rescans.") public Boolean getIsRescanningEnabled() { return isRescanningEnabled; } public void setIsRescanningEnabled(Boolean isRescanningEnabled) { this.isRescanningEnabled = isRescanningEnabled; } public WatchlistScreeningEntityProgramGetResponse listsEnabled(Set<EntityWatchlistCode> listsEnabled) { this.listsEnabled = listsEnabled; return this; } public WatchlistScreeningEntityProgramGetResponse addListsEnabledItem(EntityWatchlistCode listsEnabledItem) { this.listsEnabled.add(listsEnabledItem); return this; } /** * Watchlists enabled for the associated program * @return listsEnabled **/ @ApiModelProperty(example = "[\"EU_CON\"]", required = true, value = "Watchlists enabled for the associated program") public Set<EntityWatchlistCode> getListsEnabled() { return listsEnabled; } public void setListsEnabled(Set<EntityWatchlistCode> listsEnabled) { this.listsEnabled = listsEnabled; } public WatchlistScreeningEntityProgramGetResponse name(String name) { this.name = name; return this; } /** * A name for the entity program to define its purpose. For example, \&quot;High Risk Organizations\&quot; or \&quot;Applicants\&quot;. * @return name **/ @ApiModelProperty(example = "Sample Program", required = true, value = "A name for the entity program to define its purpose. For example, \"High Risk Organizations\" or \"Applicants\".") public String getName() { return name; } public void setName(String name) { this.name = name; } public WatchlistScreeningEntityProgramGetResponse nameSensitivity(ProgramNameSensitivity nameSensitivity) { this.nameSensitivity = nameSensitivity; return this; } /** * Get nameSensitivity * @return nameSensitivity **/ @ApiModelProperty(required = true, value = "") public ProgramNameSensitivity getNameSensitivity() { return nameSensitivity; } public void setNameSensitivity(ProgramNameSensitivity nameSensitivity) { this.nameSensitivity = nameSensitivity; } public WatchlistScreeningEntityProgramGetResponse auditTrail(WatchlistScreeningAuditTrail auditTrail) { this.auditTrail = auditTrail; return this; } /** * Get auditTrail * @return auditTrail **/ @ApiModelProperty(required = true, value = "") public WatchlistScreeningAuditTrail getAuditTrail() { return auditTrail; } public void setAuditTrail(WatchlistScreeningAuditTrail auditTrail) { this.auditTrail = auditTrail; } public WatchlistScreeningEntityProgramGetResponse isArchived(Boolean isArchived) { this.isArchived = isArchived; return this; } /** * Archived programs are read-only and cannot screen new customers nor participate in ongoing monitoring. * @return isArchived **/ @ApiModelProperty(example = "false", required = true, value = "Archived programs are read-only and cannot screen new customers nor participate in ongoing monitoring.") public Boolean getIsArchived() { return isArchived; } public void setIsArchived(Boolean isArchived) { this.isArchived = isArchived; } public WatchlistScreeningEntityProgramGetResponse 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; } WatchlistScreeningEntityProgramGetResponse watchlistScreeningEntityProgramGetResponse = (WatchlistScreeningEntityProgramGetResponse) o; return Objects.equals(this.id, watchlistScreeningEntityProgramGetResponse.id) && Objects.equals(this.createdAt, watchlistScreeningEntityProgramGetResponse.createdAt) && Objects.equals(this.isRescanningEnabled, watchlistScreeningEntityProgramGetResponse.isRescanningEnabled) && Objects.equals(this.listsEnabled, watchlistScreeningEntityProgramGetResponse.listsEnabled) && Objects.equals(this.name, watchlistScreeningEntityProgramGetResponse.name) && Objects.equals(this.nameSensitivity, watchlistScreeningEntityProgramGetResponse.nameSensitivity) && Objects.equals(this.auditTrail, watchlistScreeningEntityProgramGetResponse.auditTrail) && Objects.equals(this.isArchived, watchlistScreeningEntityProgramGetResponse.isArchived) && Objects.equals(this.requestId, watchlistScreeningEntityProgramGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(id, createdAt, isRescanningEnabled, listsEnabled, name, nameSensitivity, auditTrail, isArchived, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WatchlistScreeningEntityProgramGetResponse {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n"); sb.append(" isRescanningEnabled: ").append(toIndentedString(isRescanningEnabled)).append("\n"); sb.append(" listsEnabled: ").append(toIndentedString(listsEnabled)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" nameSensitivity: ").append(toIndentedString(nameSensitivity)).append("\n"); sb.append(" auditTrail: ").append(toIndentedString(auditTrail)).append("\n"); sb.append(" isArchived: ").append(toIndentedString(isArchived)).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/OwnershipType.java
src/main/java/com/plaid/client/model/OwnershipType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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; /** * How an asset is owned. &#x60;association&#x60;: Ownership by a corporation, partnership, or unincorporated association, including for-profit and not-for-profit organizations. &#x60;individual&#x60;: Ownership by an individual. &#x60;joint&#x60;: Joint ownership by multiple parties. &#x60;trust&#x60;: Ownership by a revocable or irrevocable trust. */ @JsonAdapter(OwnershipType.Adapter.class) public enum OwnershipType { NULL("null"), INDIVIDUAL("individual"), JOINT("joint"), ASSOCIATION("association"), TRUST("trust"), // 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; OwnershipType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static OwnershipType fromValue(String value) { for (OwnershipType b : OwnershipType.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<OwnershipType> { @Override public void write(final JsonWriter jsonWriter, final OwnershipType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public OwnershipType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return OwnershipType.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/DocumentStatus.java
src/main/java/com/plaid/client/model/DocumentStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 outcome status for this specific document submission. Distinct from the overall &#x60;documentary_verification.status&#x60; that summarizes the verification outcome from one or more documents. */ @JsonAdapter(DocumentStatus.Adapter.class) public enum DocumentStatus { SUCCESS("success"), FAILED("failed"), MANUALLY_APPROVED("manually_approved"), // 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; DocumentStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static DocumentStatus fromValue(String value) { for (DocumentStatus b : DocumentStatus.values()) { if (b.value.equals(value)) { return b; } } return DocumentStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<DocumentStatus> { @Override public void write(final JsonWriter jsonWriter, final DocumentStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public DocumentStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return DocumentStatus.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/PersonalFinanceCategoryVersion.java
src/main/java/com/plaid/client/model/PersonalFinanceCategoryVersion.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 which version of the personal finance category taxonomy is being used. [View PFCv2 and PFCv1 taxonomies](https://plaid.com/documents/pfc-taxonomy-all.csv). If you enabled Transactions or Enrich before December 2025 you will receive the &#x60;v1&#x60; taxonomy by default and may request &#x60;v2&#x60; by explicitly setting this field to &#x60;v2&#x60; in the request. If you enabled Transactions or Enrich on or after December 2025, you may only receive the &#x60;v2&#x60; taxonomy. */ @JsonAdapter(PersonalFinanceCategoryVersion.Adapter.class) public enum PersonalFinanceCategoryVersion { V1("v1"), V2("v2"), // 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; PersonalFinanceCategoryVersion(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PersonalFinanceCategoryVersion fromValue(String value) { for (PersonalFinanceCategoryVersion b : PersonalFinanceCategoryVersion.values()) { if (b.value.equals(value)) { return b; } } return PersonalFinanceCategoryVersion.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<PersonalFinanceCategoryVersion> { @Override public void write(final JsonWriter jsonWriter, final PersonalFinanceCategoryVersion enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PersonalFinanceCategoryVersion read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PersonalFinanceCategoryVersion.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/BusinessEmailAddress.java
src/main/java/com/plaid/client/model/BusinessEmailAddress.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Email address associated with a business */ @ApiModel(description = "Email address associated with a business") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BusinessEmailAddress { public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) private String emailAddress; public BusinessEmailAddress emailAddress(String emailAddress) { this.emailAddress = emailAddress; return this; } /** * Email address of the business * @return emailAddress **/ @javax.annotation.Nullable @ApiModelProperty(example = "business@example.com", required = true, value = "Email address of the business") public String getEmailAddress() { return emailAddress; } public void setEmailAddress(String emailAddress) { this.emailAddress = emailAddress; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BusinessEmailAddress businessEmailAddress = (BusinessEmailAddress) o; return Objects.equals(this.emailAddress, businessEmailAddress.emailAddress); } @Override public int hashCode() { return Objects.hash(emailAddress); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BusinessEmailAddress {\n"); sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IncomeVerificationPrecheckPayrollInstitution.java
src/main/java/com/plaid/client/model/IncomeVerificationPrecheckPayrollInstitution.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Information about the end user&#39;s payroll institution */ @ApiModel(description = "Information about the end user's payroll institution") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IncomeVerificationPrecheckPayrollInstitution { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public IncomeVerificationPrecheckPayrollInstitution name(String name) { this.name = name; return this; } /** * The name of payroll institution * @return name **/ @javax.annotation.Nullable @ApiModelProperty(value = "The name of payroll institution") 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; } IncomeVerificationPrecheckPayrollInstitution incomeVerificationPrecheckPayrollInstitution = (IncomeVerificationPrecheckPayrollInstitution) o; return Objects.equals(this.name, incomeVerificationPrecheckPayrollInstitution.name); } @Override public int hashCode() { return Objects.hash(name); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IncomeVerificationPrecheckPayrollInstitution {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferAuthorization.java
src/main/java/com/plaid/client/model/TransferAuthorization.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.TransferAuthorizationDecision; import com.plaid.client.model.TransferAuthorizationDecisionRationale; import com.plaid.client.model.TransferAuthorizationGuaranteeDecision; import com.plaid.client.model.TransferAuthorizationGuaranteeDecisionRationale; import com.plaid.client.model.TransferAuthorizationPaymentRisk; import com.plaid.client.model.TransferAuthorizationProposedTransfer; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * Contains the authorization decision for a proposed transfer. */ @ApiModel(description = "Contains the authorization decision for a proposed transfer.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferAuthorization { 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_DECISION = "decision"; @SerializedName(SERIALIZED_NAME_DECISION) private TransferAuthorizationDecision decision; public static final String SERIALIZED_NAME_DECISION_RATIONALE = "decision_rationale"; @SerializedName(SERIALIZED_NAME_DECISION_RATIONALE) private TransferAuthorizationDecisionRationale decisionRationale; 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 static final String SERIALIZED_NAME_PAYMENT_RISK = "payment_risk"; @SerializedName(SERIALIZED_NAME_PAYMENT_RISK) private TransferAuthorizationPaymentRisk paymentRisk; public static final String SERIALIZED_NAME_PROPOSED_TRANSFER = "proposed_transfer"; @SerializedName(SERIALIZED_NAME_PROPOSED_TRANSFER) private TransferAuthorizationProposedTransfer proposedTransfer; public TransferAuthorization id(String id) { this.id = id; return this; } /** * Plaid’s unique identifier for a transfer authorization. * @return id **/ @ApiModelProperty(required = true, value = "Plaid’s unique identifier for a transfer authorization.") public String getId() { return id; } public void setId(String id) { this.id = id; } public TransferAuthorization created(OffsetDateTime created) { this.created = created; return this; } /** * The datetime representing when the authorization was created, in the format &#x60;2006-01-02T15:04:05Z&#x60;. * @return created **/ @ApiModelProperty(required = true, value = "The datetime representing when the authorization was created, in the format `2006-01-02T15:04:05Z`.") public OffsetDateTime getCreated() { return created; } public void setCreated(OffsetDateTime created) { this.created = created; } public TransferAuthorization decision(TransferAuthorizationDecision decision) { this.decision = decision; return this; } /** * Get decision * @return decision **/ @ApiModelProperty(required = true, value = "") public TransferAuthorizationDecision getDecision() { return decision; } public void setDecision(TransferAuthorizationDecision decision) { this.decision = decision; } public TransferAuthorization decisionRationale(TransferAuthorizationDecisionRationale decisionRationale) { this.decisionRationale = decisionRationale; return this; } /** * Get decisionRationale * @return decisionRationale **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public TransferAuthorizationDecisionRationale getDecisionRationale() { return decisionRationale; } public void setDecisionRationale(TransferAuthorizationDecisionRationale decisionRationale) { this.decisionRationale = decisionRationale; } public TransferAuthorization 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 TransferAuthorization 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; } public TransferAuthorization paymentRisk(TransferAuthorizationPaymentRisk paymentRisk) { this.paymentRisk = paymentRisk; return this; } /** * Get paymentRisk * @return paymentRisk **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public TransferAuthorizationPaymentRisk getPaymentRisk() { return paymentRisk; } public void setPaymentRisk(TransferAuthorizationPaymentRisk paymentRisk) { this.paymentRisk = paymentRisk; } public TransferAuthorization proposedTransfer(TransferAuthorizationProposedTransfer proposedTransfer) { this.proposedTransfer = proposedTransfer; return this; } /** * Get proposedTransfer * @return proposedTransfer **/ @ApiModelProperty(required = true, value = "") public TransferAuthorizationProposedTransfer getProposedTransfer() { return proposedTransfer; } public void setProposedTransfer(TransferAuthorizationProposedTransfer proposedTransfer) { this.proposedTransfer = proposedTransfer; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferAuthorization transferAuthorization = (TransferAuthorization) o; return Objects.equals(this.id, transferAuthorization.id) && Objects.equals(this.created, transferAuthorization.created) && Objects.equals(this.decision, transferAuthorization.decision) && Objects.equals(this.decisionRationale, transferAuthorization.decisionRationale) && Objects.equals(this.guaranteeDecision, transferAuthorization.guaranteeDecision) && Objects.equals(this.guaranteeDecisionRationale, transferAuthorization.guaranteeDecisionRationale) && Objects.equals(this.paymentRisk, transferAuthorization.paymentRisk) && Objects.equals(this.proposedTransfer, transferAuthorization.proposedTransfer); } @Override public int hashCode() { return Objects.hash(id, created, decision, decisionRationale, guaranteeDecision, guaranteeDecisionRationale, paymentRisk, proposedTransfer); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferAuthorization {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" created: ").append(toIndentedString(created)).append("\n"); sb.append(" decision: ").append(toIndentedString(decision)).append("\n"); sb.append(" decisionRationale: ").append(toIndentedString(decisionRationale)).append("\n"); sb.append(" guaranteeDecision: ").append(toIndentedString(guaranteeDecision)).append("\n"); sb.append(" guaranteeDecisionRationale: ").append(toIndentedString(guaranteeDecisionRationale)).append("\n"); sb.append(" paymentRisk: ").append(toIndentedString(paymentRisk)).append("\n"); sb.append(" proposedTransfer: ").append(toIndentedString(proposedTransfer)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ConsentEventsGetResponse.java
src/main/java/com/plaid/client/model/ConsentEventsGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.ConsentEvent; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Describes a historical log of item consent events. */ @ApiModel(description = "Describes a historical log of item consent events.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ConsentEventsGetResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public static final String SERIALIZED_NAME_CONSENT_EVENTS = "consent_events"; @SerializedName(SERIALIZED_NAME_CONSENT_EVENTS) private List<ConsentEvent> consentEvents = new ArrayList<>(); public ConsentEventsGetResponse requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. * @return requestId **/ @ApiModelProperty(required = true, value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ConsentEventsGetResponse consentEvents(List<ConsentEvent> consentEvents) { this.consentEvents = consentEvents; return this; } public ConsentEventsGetResponse addConsentEventsItem(ConsentEvent consentEventsItem) { this.consentEvents.add(consentEventsItem); return this; } /** * A list of consent events. * @return consentEvents **/ @ApiModelProperty(required = true, value = "A list of consent events.") public List<ConsentEvent> getConsentEvents() { return consentEvents; } public void setConsentEvents(List<ConsentEvent> consentEvents) { this.consentEvents = consentEvents; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ConsentEventsGetResponse consentEventsGetResponse = (ConsentEventsGetResponse) o; return Objects.equals(this.requestId, consentEventsGetResponse.requestId) && Objects.equals(this.consentEvents, consentEventsGetResponse.consentEvents); } @Override public int hashCode() { return Objects.hash(requestId, consentEvents); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ConsentEventsGetResponse {\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append(" consentEvents: ").append(toIndentedString(consentEvents)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/StatementsListResponse.java
src/main/java/com/plaid/client/model/StatementsListResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.StatementsAccount; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * StatementsListResponse defines the response schema for &#x60;/statements/list&#x60; */ @ApiModel(description = "StatementsListResponse defines the response schema for `/statements/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class StatementsListResponse { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) private List<StatementsAccount> accounts = new ArrayList<>(); public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_ID) private String institutionId; public static final String SERIALIZED_NAME_INSTITUTION_NAME = "institution_name"; @SerializedName(SERIALIZED_NAME_INSTITUTION_NAME) private String institutionName; public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public StatementsListResponse accounts(List<StatementsAccount> accounts) { this.accounts = accounts; return this; } public StatementsListResponse addAccountsItem(StatementsAccount accountsItem) { this.accounts.add(accountsItem); return this; } /** * Get accounts * @return accounts **/ @ApiModelProperty(required = true, value = "") public List<StatementsAccount> getAccounts() { return accounts; } public void setAccounts(List<StatementsAccount> accounts) { this.accounts = accounts; } public StatementsListResponse institutionId(String institutionId) { this.institutionId = institutionId; return this; } /** * The Plaid Institution ID associated with the Item. * @return institutionId **/ @ApiModelProperty(required = true, value = "The Plaid Institution ID associated with the Item.") public String getInstitutionId() { return institutionId; } public void setInstitutionId(String institutionId) { this.institutionId = institutionId; } public StatementsListResponse institutionName(String institutionName) { this.institutionName = institutionName; return this; } /** * The name of the institution associated with the Item. * @return institutionName **/ @ApiModelProperty(required = true, value = "The name of the institution associated with the Item.") public String getInstitutionName() { return institutionName; } public void setInstitutionName(String institutionName) { this.institutionName = institutionName; } public StatementsListResponse itemId(String itemId) { this.itemId = itemId; return this; } /** * The Plaid Item ID. The &#x60;item_id&#x60; is always unique; linking the same account at the same institution twice will result in two Items with different &#x60;item_id&#x60; values. Like all Plaid identifiers, the &#x60;item_id&#x60; is case-sensitive. * @return itemId **/ @ApiModelProperty(required = true, value = "The Plaid Item ID. The `item_id` is always unique; linking the same account at the same institution twice will result in two Items with different `item_id` values. Like all Plaid identifiers, the `item_id` is case-sensitive.") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public StatementsListResponse 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; } StatementsListResponse statementsListResponse = (StatementsListResponse) o; return Objects.equals(this.accounts, statementsListResponse.accounts) && Objects.equals(this.institutionId, statementsListResponse.institutionId) && Objects.equals(this.institutionName, statementsListResponse.institutionName) && Objects.equals(this.itemId, statementsListResponse.itemId) && Objects.equals(this.requestId, statementsListResponse.requestId); } @Override public int hashCode() { return Objects.hash(accounts, institutionId, institutionName, itemId, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class StatementsListResponse {\n"); sb.append(" accounts: ").append(toIndentedString(accounts)).append("\n"); sb.append(" institutionId: ").append(toIndentedString(institutionId)).append("\n"); sb.append(" institutionName: ").append(toIndentedString(institutionName)).append("\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" 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/ItemLoginRepairedWebhook.java
src/main/java/com/plaid/client/model/ItemLoginRepairedWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.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 Item has exited the &#x60;ITEM_LOGIN_REQUIRED&#x60; state without the user having gone through the update mode flow in your app (this can happen if the user completed the update mode in a different app). If you have messaging that tells the user to complete the update mode flow, you should silence this messaging upon receiving the &#x60;LOGIN_REPAIRED&#x60; webhook. */ @ApiModel(description = "Fired when an Item has exited the `ITEM_LOGIN_REQUIRED` state without the user having gone through the update mode flow in your app (this can happen if the user completed the update mode in a different app). If you have messaging that tells the user to complete the update mode flow, you should silence this messaging upon receiving the `LOGIN_REPAIRED` webhook.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ItemLoginRepairedWebhook { 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 ItemLoginRepairedWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;ITEM&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`ITEM`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public ItemLoginRepairedWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;LOGIN_REPAIRED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`LOGIN_REPAIRED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public ItemLoginRepairedWebhook 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 ItemLoginRepairedWebhook 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; } ItemLoginRepairedWebhook itemLoginRepairedWebhook = (ItemLoginRepairedWebhook) o; return Objects.equals(this.webhookType, itemLoginRepairedWebhook.webhookType) && Objects.equals(this.webhookCode, itemLoginRepairedWebhook.webhookCode) && Objects.equals(this.itemId, itemLoginRepairedWebhook.itemId) && Objects.equals(this.environment, itemLoginRepairedWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, itemId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ItemLoginRepairedWebhook {\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/SignalEvaluateCoreAttributes.java
src/main/java/com/plaid/client/model/SignalEvaluateCoreAttributes.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * The core attributes object contains additional data that can be used to assess the ACH return risk. If using a Balance-only ruleset, only &#x60;available_balance&#x60; and &#x60;current_balance&#x60; will be returned as core attributes. If using a Signal Transaction Scores ruleset, over 80 core attributes will be returned. Examples of attributes include: &#x60;available_balance&#x60; and &#x60;current_balance&#x60;: The balance in the ACH transaction funding account &#x60;days_since_first_plaid_connection&#x60;: The number of days since the first time the Item was connected to an application via Plaid &#x60;plaid_connections_count_7d&#x60;: The number of times the Item has been connected to applications via Plaid over the past 7 days &#x60;plaid_connections_count_30d&#x60;: The number of times the Item has been connected to applications via Plaid over the past 30 days &#x60;total_plaid_connections_count&#x60;: The number of times the Item has been connected to applications via Plaid &#x60;is_savings_or_money_market_account&#x60;: Indicates whether the ACH transaction funding account is a savings/money market account For the full list and detailed documentation of core attributes available, or to request that core attributes not be returned, contact Sales or your Plaid account manager. */ @ApiModel(description = "The core attributes object contains additional data that can be used to assess the ACH return risk. If using a Balance-only ruleset, only `available_balance` and `current_balance` will be returned as core attributes. If using a Signal Transaction Scores ruleset, over 80 core attributes will be returned. Examples of attributes include: `available_balance` and `current_balance`: The balance in the ACH transaction funding account `days_since_first_plaid_connection`: The number of days since the first time the Item was connected to an application via Plaid `plaid_connections_count_7d`: The number of times the Item has been connected to applications via Plaid over the past 7 days `plaid_connections_count_30d`: The number of times the Item has been connected to applications via Plaid over the past 30 days `total_plaid_connections_count`: The number of times the Item has been connected to applications via Plaid `is_savings_or_money_market_account`: Indicates whether the ACH transaction funding account is a savings/money market account For the full list and detailed documentation of core attributes available, or to request that core attributes not be returned, contact Sales or your Plaid account manager.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SignalEvaluateCoreAttributes { public static final String SERIALIZED_NAME_UNAUTHORIZED_TRANSACTIONS_COUNT7D = "unauthorized_transactions_count_7d"; @SerializedName(SERIALIZED_NAME_UNAUTHORIZED_TRANSACTIONS_COUNT7D) private Integer unauthorizedTransactionsCount7d; public static final String SERIALIZED_NAME_UNAUTHORIZED_TRANSACTIONS_COUNT30D = "unauthorized_transactions_count_30d"; @SerializedName(SERIALIZED_NAME_UNAUTHORIZED_TRANSACTIONS_COUNT30D) private Integer unauthorizedTransactionsCount30d; public static final String SERIALIZED_NAME_UNAUTHORIZED_TRANSACTIONS_COUNT60D = "unauthorized_transactions_count_60d"; @SerializedName(SERIALIZED_NAME_UNAUTHORIZED_TRANSACTIONS_COUNT60D) private Integer unauthorizedTransactionsCount60d; public static final String SERIALIZED_NAME_UNAUTHORIZED_TRANSACTIONS_COUNT90D = "unauthorized_transactions_count_90d"; @SerializedName(SERIALIZED_NAME_UNAUTHORIZED_TRANSACTIONS_COUNT90D) private Integer unauthorizedTransactionsCount90d; public static final String SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT7D = "nsf_overdraft_transactions_count_7d"; @SerializedName(SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT7D) private Integer nsfOverdraftTransactionsCount7d; public static final String SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT30D = "nsf_overdraft_transactions_count_30d"; @SerializedName(SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT30D) private Integer nsfOverdraftTransactionsCount30d; public static final String SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT60D = "nsf_overdraft_transactions_count_60d"; @SerializedName(SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT60D) private Integer nsfOverdraftTransactionsCount60d; public static final String SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT90D = "nsf_overdraft_transactions_count_90d"; @SerializedName(SERIALIZED_NAME_NSF_OVERDRAFT_TRANSACTIONS_COUNT90D) private Integer nsfOverdraftTransactionsCount90d; public static final String SERIALIZED_NAME_DAYS_SINCE_FIRST_PLAID_CONNECTION = "days_since_first_plaid_connection"; @SerializedName(SERIALIZED_NAME_DAYS_SINCE_FIRST_PLAID_CONNECTION) private Integer daysSinceFirstPlaidConnection; public static final String SERIALIZED_NAME_PLAID_CONNECTIONS_COUNT7D = "plaid_connections_count_7d"; @SerializedName(SERIALIZED_NAME_PLAID_CONNECTIONS_COUNT7D) private Integer plaidConnectionsCount7d; public static final String SERIALIZED_NAME_PLAID_CONNECTIONS_COUNT30D = "plaid_connections_count_30d"; @SerializedName(SERIALIZED_NAME_PLAID_CONNECTIONS_COUNT30D) private Integer plaidConnectionsCount30d; public static final String SERIALIZED_NAME_TOTAL_PLAID_CONNECTIONS_COUNT = "total_plaid_connections_count"; @SerializedName(SERIALIZED_NAME_TOTAL_PLAID_CONNECTIONS_COUNT) private Integer totalPlaidConnectionsCount; public static final String SERIALIZED_NAME_IS_SAVINGS_OR_MONEY_MARKET_ACCOUNT = "is_savings_or_money_market_account"; @SerializedName(SERIALIZED_NAME_IS_SAVINGS_OR_MONEY_MARKET_ACCOUNT) private Boolean isSavingsOrMoneyMarketAccount; public static final String SERIALIZED_NAME_TOTAL_CREDIT_TRANSACTIONS_AMOUNT10D = "total_credit_transactions_amount_10d"; @SerializedName(SERIALIZED_NAME_TOTAL_CREDIT_TRANSACTIONS_AMOUNT10D) private Double totalCreditTransactionsAmount10d; public static final String SERIALIZED_NAME_TOTAL_DEBIT_TRANSACTIONS_AMOUNT10D = "total_debit_transactions_amount_10d"; @SerializedName(SERIALIZED_NAME_TOTAL_DEBIT_TRANSACTIONS_AMOUNT10D) private Double totalDebitTransactionsAmount10d; public static final String SERIALIZED_NAME_P50_CREDIT_TRANSACTIONS_AMOUNT28D = "p50_credit_transactions_amount_28d"; @SerializedName(SERIALIZED_NAME_P50_CREDIT_TRANSACTIONS_AMOUNT28D) private Double p50CreditTransactionsAmount28d; public static final String SERIALIZED_NAME_P50_DEBIT_TRANSACTIONS_AMOUNT28D = "p50_debit_transactions_amount_28d"; @SerializedName(SERIALIZED_NAME_P50_DEBIT_TRANSACTIONS_AMOUNT28D) private Double p50DebitTransactionsAmount28d; public static final String SERIALIZED_NAME_P95_CREDIT_TRANSACTIONS_AMOUNT28D = "p95_credit_transactions_amount_28d"; @SerializedName(SERIALIZED_NAME_P95_CREDIT_TRANSACTIONS_AMOUNT28D) private Double p95CreditTransactionsAmount28d; public static final String SERIALIZED_NAME_P95_DEBIT_TRANSACTIONS_AMOUNT28D = "p95_debit_transactions_amount_28d"; @SerializedName(SERIALIZED_NAME_P95_DEBIT_TRANSACTIONS_AMOUNT28D) private Double p95DebitTransactionsAmount28d; public static final String SERIALIZED_NAME_DAYS_WITH_NEGATIVE_BALANCE_COUNT90D = "days_with_negative_balance_count_90d"; @SerializedName(SERIALIZED_NAME_DAYS_WITH_NEGATIVE_BALANCE_COUNT90D) private Integer daysWithNegativeBalanceCount90d; public static final String SERIALIZED_NAME_P90_EOD_BALANCE30D = "p90_eod_balance_30d"; @SerializedName(SERIALIZED_NAME_P90_EOD_BALANCE30D) private Double p90EodBalance30d; public static final String SERIALIZED_NAME_P90_EOD_BALANCE60D = "p90_eod_balance_60d"; @SerializedName(SERIALIZED_NAME_P90_EOD_BALANCE60D) private Double p90EodBalance60d; public static final String SERIALIZED_NAME_P90_EOD_BALANCE90D = "p90_eod_balance_90d"; @SerializedName(SERIALIZED_NAME_P90_EOD_BALANCE90D) private Double p90EodBalance90d; public static final String SERIALIZED_NAME_P10_EOD_BALANCE30D = "p10_eod_balance_30d"; @SerializedName(SERIALIZED_NAME_P10_EOD_BALANCE30D) private Double p10EodBalance30d; public static final String SERIALIZED_NAME_P10_EOD_BALANCE60D = "p10_eod_balance_60d"; @SerializedName(SERIALIZED_NAME_P10_EOD_BALANCE60D) private Double p10EodBalance60d; public static final String SERIALIZED_NAME_P10_EOD_BALANCE90D = "p10_eod_balance_90d"; @SerializedName(SERIALIZED_NAME_P10_EOD_BALANCE90D) private Double p10EodBalance90d; public static final String SERIALIZED_NAME_AVAILABLE_BALANCE = "available_balance"; @SerializedName(SERIALIZED_NAME_AVAILABLE_BALANCE) private Double availableBalance; public static final String SERIALIZED_NAME_CURRENT_BALANCE = "current_balance"; @SerializedName(SERIALIZED_NAME_CURRENT_BALANCE) private Double currentBalance; public static final String SERIALIZED_NAME_BALANCE_LAST_UPDATED = "balance_last_updated"; @SerializedName(SERIALIZED_NAME_BALANCE_LAST_UPDATED) private OffsetDateTime balanceLastUpdated; public static final String SERIALIZED_NAME_PHONE_CHANGE_COUNT28D = "phone_change_count_28d"; @SerializedName(SERIALIZED_NAME_PHONE_CHANGE_COUNT28D) private Integer phoneChangeCount28d; public static final String SERIALIZED_NAME_PHONE_CHANGE_COUNT90D = "phone_change_count_90d"; @SerializedName(SERIALIZED_NAME_PHONE_CHANGE_COUNT90D) private Integer phoneChangeCount90d; public static final String SERIALIZED_NAME_EMAIL_CHANGE_COUNT28D = "email_change_count_28d"; @SerializedName(SERIALIZED_NAME_EMAIL_CHANGE_COUNT28D) private Integer emailChangeCount28d; public static final String SERIALIZED_NAME_EMAIL_CHANGE_COUNT90D = "email_change_count_90d"; @SerializedName(SERIALIZED_NAME_EMAIL_CHANGE_COUNT90D) private Integer emailChangeCount90d; public static final String SERIALIZED_NAME_ADDRESS_CHANGE_COUNT28D = "address_change_count_28d"; @SerializedName(SERIALIZED_NAME_ADDRESS_CHANGE_COUNT28D) private Integer addressChangeCount28d; public static final String SERIALIZED_NAME_ADDRESS_CHANGE_COUNT90D = "address_change_count_90d"; @SerializedName(SERIALIZED_NAME_ADDRESS_CHANGE_COUNT90D) private Integer addressChangeCount90d; public static final String SERIALIZED_NAME_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT3D = "plaid_non_oauth_authentication_attempts_count_3d"; @SerializedName(SERIALIZED_NAME_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT3D) private Integer plaidNonOauthAuthenticationAttemptsCount3d; public static final String SERIALIZED_NAME_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT7D = "plaid_non_oauth_authentication_attempts_count_7d"; @SerializedName(SERIALIZED_NAME_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT7D) private Integer plaidNonOauthAuthenticationAttemptsCount7d; public static final String SERIALIZED_NAME_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT30D = "plaid_non_oauth_authentication_attempts_count_30d"; @SerializedName(SERIALIZED_NAME_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT30D) private Integer plaidNonOauthAuthenticationAttemptsCount30d; public static final String SERIALIZED_NAME_FAILED_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT3D = "failed_plaid_non_oauth_authentication_attempts_count_3d"; @SerializedName(SERIALIZED_NAME_FAILED_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT3D) private Integer failedPlaidNonOauthAuthenticationAttemptsCount3d; public static final String SERIALIZED_NAME_FAILED_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT7D = "failed_plaid_non_oauth_authentication_attempts_count_7d"; @SerializedName(SERIALIZED_NAME_FAILED_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT7D) private Integer failedPlaidNonOauthAuthenticationAttemptsCount7d; public static final String SERIALIZED_NAME_FAILED_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT30D = "failed_plaid_non_oauth_authentication_attempts_count_30d"; @SerializedName(SERIALIZED_NAME_FAILED_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT30D) private Integer failedPlaidNonOauthAuthenticationAttemptsCount30d; public static final String SERIALIZED_NAME_DEBIT_TRANSACTIONS_COUNT10D = "debit_transactions_count_10d"; @SerializedName(SERIALIZED_NAME_DEBIT_TRANSACTIONS_COUNT10D) private Integer debitTransactionsCount10d; public static final String SERIALIZED_NAME_CREDIT_TRANSACTIONS_COUNT10D = "credit_transactions_count_10d"; @SerializedName(SERIALIZED_NAME_CREDIT_TRANSACTIONS_COUNT10D) private Integer creditTransactionsCount10d; public static final String SERIALIZED_NAME_DEBIT_TRANSACTIONS_COUNT30D = "debit_transactions_count_30d"; @SerializedName(SERIALIZED_NAME_DEBIT_TRANSACTIONS_COUNT30D) private Integer debitTransactionsCount30d; public static final String SERIALIZED_NAME_CREDIT_TRANSACTIONS_COUNT30D = "credit_transactions_count_30d"; @SerializedName(SERIALIZED_NAME_CREDIT_TRANSACTIONS_COUNT30D) private Integer creditTransactionsCount30d; public static final String SERIALIZED_NAME_DEBIT_TRANSACTIONS_COUNT60D = "debit_transactions_count_60d"; @SerializedName(SERIALIZED_NAME_DEBIT_TRANSACTIONS_COUNT60D) private Integer debitTransactionsCount60d; public static final String SERIALIZED_NAME_CREDIT_TRANSACTIONS_COUNT60D = "credit_transactions_count_60d"; @SerializedName(SERIALIZED_NAME_CREDIT_TRANSACTIONS_COUNT60D) private Integer creditTransactionsCount60d; public static final String SERIALIZED_NAME_DEBIT_TRANSACTIONS_COUNT90D = "debit_transactions_count_90d"; @SerializedName(SERIALIZED_NAME_DEBIT_TRANSACTIONS_COUNT90D) private Integer debitTransactionsCount90d; public static final String SERIALIZED_NAME_CREDIT_TRANSACTIONS_COUNT90D = "credit_transactions_count_90d"; @SerializedName(SERIALIZED_NAME_CREDIT_TRANSACTIONS_COUNT90D) private Integer creditTransactionsCount90d; public static final String SERIALIZED_NAME_TOTAL_DEBIT_TRANSACTIONS_AMOUNT30D = "total_debit_transactions_amount_30d"; @SerializedName(SERIALIZED_NAME_TOTAL_DEBIT_TRANSACTIONS_AMOUNT30D) private Double totalDebitTransactionsAmount30d; public static final String SERIALIZED_NAME_TOTAL_CREDIT_TRANSACTIONS_AMOUNT30D = "total_credit_transactions_amount_30d"; @SerializedName(SERIALIZED_NAME_TOTAL_CREDIT_TRANSACTIONS_AMOUNT30D) private Double totalCreditTransactionsAmount30d; public static final String SERIALIZED_NAME_TOTAL_DEBIT_TRANSACTIONS_AMOUNT60D = "total_debit_transactions_amount_60d"; @SerializedName(SERIALIZED_NAME_TOTAL_DEBIT_TRANSACTIONS_AMOUNT60D) private Double totalDebitTransactionsAmount60d; public static final String SERIALIZED_NAME_TOTAL_CREDIT_TRANSACTIONS_AMOUNT60D = "total_credit_transactions_amount_60d"; @SerializedName(SERIALIZED_NAME_TOTAL_CREDIT_TRANSACTIONS_AMOUNT60D) private Double totalCreditTransactionsAmount60d; public static final String SERIALIZED_NAME_TOTAL_DEBIT_TRANSACTIONS_AMOUNT90D = "total_debit_transactions_amount_90d"; @SerializedName(SERIALIZED_NAME_TOTAL_DEBIT_TRANSACTIONS_AMOUNT90D) private Double totalDebitTransactionsAmount90d; public static final String SERIALIZED_NAME_TOTAL_CREDIT_TRANSACTIONS_AMOUNT90D = "total_credit_transactions_amount_90d"; @SerializedName(SERIALIZED_NAME_TOTAL_CREDIT_TRANSACTIONS_AMOUNT90D) private Double totalCreditTransactionsAmount90d; public static final String SERIALIZED_NAME_P50_EOD_BALANCE30D = "p50_eod_balance_30d"; @SerializedName(SERIALIZED_NAME_P50_EOD_BALANCE30D) private Double p50EodBalance30d; public static final String SERIALIZED_NAME_P50_EOD_BALANCE60D = "p50_eod_balance_60d"; @SerializedName(SERIALIZED_NAME_P50_EOD_BALANCE60D) private Double p50EodBalance60d; public static final String SERIALIZED_NAME_P50_EOD_BALANCE90D = "p50_eod_balance_90d"; @SerializedName(SERIALIZED_NAME_P50_EOD_BALANCE90D) private Double p50EodBalance90d; public static final String SERIALIZED_NAME_P50_EOD_BALANCE31D_TO60D = "p50_eod_balance_31d_to_60d"; @SerializedName(SERIALIZED_NAME_P50_EOD_BALANCE31D_TO60D) private Double p50EodBalance31dTo60d; public static final String SERIALIZED_NAME_P50_EOD_BALANCE61D_TO90D = "p50_eod_balance_61d_to_90d"; @SerializedName(SERIALIZED_NAME_P50_EOD_BALANCE61D_TO90D) private Double p50EodBalance61dTo90d; public static final String SERIALIZED_NAME_P90_EOD_BALANCE31D_TO60D = "p90_eod_balance_31d_to_60d"; @SerializedName(SERIALIZED_NAME_P90_EOD_BALANCE31D_TO60D) private Double p90EodBalance31dTo60d; public static final String SERIALIZED_NAME_P90_EOD_BALANCE61D_TO90D = "p90_eod_balance_61d_to_90d"; @SerializedName(SERIALIZED_NAME_P90_EOD_BALANCE61D_TO90D) private Double p90EodBalance61dTo90d; public static final String SERIALIZED_NAME_P10_EOD_BALANCE31D_TO60D = "p10_eod_balance_31d_to_60d"; @SerializedName(SERIALIZED_NAME_P10_EOD_BALANCE31D_TO60D) private Double p10EodBalance31dTo60d; public static final String SERIALIZED_NAME_P10_EOD_BALANCE61D_TO90D = "p10_eod_balance_61d_to_90d"; @SerializedName(SERIALIZED_NAME_P10_EOD_BALANCE61D_TO90D) private Double p10EodBalance61dTo90d; public static final String SERIALIZED_NAME_TRANSACTIONS_LAST_UPDATED = "transactions_last_updated"; @SerializedName(SERIALIZED_NAME_TRANSACTIONS_LAST_UPDATED) private OffsetDateTime transactionsLastUpdated; public static final String SERIALIZED_NAME_IS_ACCOUNT_CLOSED = "is_account_closed"; @SerializedName(SERIALIZED_NAME_IS_ACCOUNT_CLOSED) private Boolean isAccountClosed; public static final String SERIALIZED_NAME_IS_ACCOUNT_FROZEN_OR_RESTRICTED = "is_account_frozen_or_restricted"; @SerializedName(SERIALIZED_NAME_IS_ACCOUNT_FROZEN_OR_RESTRICTED) private Boolean isAccountFrozenOrRestricted; public static final String SERIALIZED_NAME_DISTINCT_IP_ADDRESSES_COUNT3D = "distinct_ip_addresses_count_3d"; @SerializedName(SERIALIZED_NAME_DISTINCT_IP_ADDRESSES_COUNT3D) private Integer distinctIpAddressesCount3d; public static final String SERIALIZED_NAME_DISTINCT_IP_ADDRESSES_COUNT7D = "distinct_ip_addresses_count_7d"; @SerializedName(SERIALIZED_NAME_DISTINCT_IP_ADDRESSES_COUNT7D) private Integer distinctIpAddressesCount7d; public static final String SERIALIZED_NAME_DISTINCT_IP_ADDRESSES_COUNT30D = "distinct_ip_addresses_count_30d"; @SerializedName(SERIALIZED_NAME_DISTINCT_IP_ADDRESSES_COUNT30D) private Integer distinctIpAddressesCount30d; public static final String SERIALIZED_NAME_DISTINCT_IP_ADDRESSES_COUNT90D = "distinct_ip_addresses_count_90d"; @SerializedName(SERIALIZED_NAME_DISTINCT_IP_ADDRESSES_COUNT90D) private Integer distinctIpAddressesCount90d; public static final String SERIALIZED_NAME_DISTINCT_USER_AGENTS_COUNT3D = "distinct_user_agents_count_3d"; @SerializedName(SERIALIZED_NAME_DISTINCT_USER_AGENTS_COUNT3D) private Integer distinctUserAgentsCount3d; public static final String SERIALIZED_NAME_DISTINCT_USER_AGENTS_COUNT7D = "distinct_user_agents_count_7d"; @SerializedName(SERIALIZED_NAME_DISTINCT_USER_AGENTS_COUNT7D) private Integer distinctUserAgentsCount7d; public static final String SERIALIZED_NAME_DISTINCT_USER_AGENTS_COUNT30D = "distinct_user_agents_count_30d"; @SerializedName(SERIALIZED_NAME_DISTINCT_USER_AGENTS_COUNT30D) private Integer distinctUserAgentsCount30d; public static final String SERIALIZED_NAME_DISTINCT_USER_AGENTS_COUNT90D = "distinct_user_agents_count_90d"; @SerializedName(SERIALIZED_NAME_DISTINCT_USER_AGENTS_COUNT90D) private Integer distinctUserAgentsCount90d; public static final String SERIALIZED_NAME_DISTINCT_SSL_TLS_CONNECTION_SESSIONS_COUNT3D = "distinct_ssl_tls_connection_sessions_count_3d"; @SerializedName(SERIALIZED_NAME_DISTINCT_SSL_TLS_CONNECTION_SESSIONS_COUNT3D) private Integer distinctSslTlsConnectionSessionsCount3d; public static final String SERIALIZED_NAME_DISTINCT_SSL_TLS_CONNECTION_SESSIONS_COUNT7D = "distinct_ssl_tls_connection_sessions_count_7d"; @SerializedName(SERIALIZED_NAME_DISTINCT_SSL_TLS_CONNECTION_SESSIONS_COUNT7D) private Integer distinctSslTlsConnectionSessionsCount7d; public static final String SERIALIZED_NAME_DISTINCT_SSL_TLS_CONNECTION_SESSIONS_COUNT30D = "distinct_ssl_tls_connection_sessions_count_30d"; @SerializedName(SERIALIZED_NAME_DISTINCT_SSL_TLS_CONNECTION_SESSIONS_COUNT30D) private Integer distinctSslTlsConnectionSessionsCount30d; public static final String SERIALIZED_NAME_DISTINCT_SSL_TLS_CONNECTION_SESSIONS_COUNT90D = "distinct_ssl_tls_connection_sessions_count_90d"; @SerializedName(SERIALIZED_NAME_DISTINCT_SSL_TLS_CONNECTION_SESSIONS_COUNT90D) private Integer distinctSslTlsConnectionSessionsCount90d; public static final String SERIALIZED_NAME_DAYS_SINCE_ACCOUNT_OPENING = "days_since_account_opening"; @SerializedName(SERIALIZED_NAME_DAYS_SINCE_ACCOUNT_OPENING) private Integer daysSinceAccountOpening; public static final String SERIALIZED_NAME_BALANCE_TO_TRANSACTION_AMOUNT_RATIO = "balance_to_transaction_amount_ratio"; @SerializedName(SERIALIZED_NAME_BALANCE_TO_TRANSACTION_AMOUNT_RATIO) private Double balanceToTransactionAmountRatio; public SignalEvaluateCoreAttributes unauthorizedTransactionsCount7d(Integer unauthorizedTransactionsCount7d) { this.unauthorizedTransactionsCount7d = unauthorizedTransactionsCount7d; return this; } /** * We parse and analyze historical transaction metadata to identify the number of possible past returns due to unauthorized transactions over the past 7 days from the account that will be debited. * @return unauthorizedTransactionsCount7d **/ @javax.annotation.Nullable @ApiModelProperty(value = "We parse and analyze historical transaction metadata to identify the number of possible past returns due to unauthorized transactions over the past 7 days from the account that will be debited.") public Integer getUnauthorizedTransactionsCount7d() { return unauthorizedTransactionsCount7d; } public void setUnauthorizedTransactionsCount7d(Integer unauthorizedTransactionsCount7d) { this.unauthorizedTransactionsCount7d = unauthorizedTransactionsCount7d; } public SignalEvaluateCoreAttributes unauthorizedTransactionsCount30d(Integer unauthorizedTransactionsCount30d) { this.unauthorizedTransactionsCount30d = unauthorizedTransactionsCount30d; return this; } /** * We parse and analyze historical transaction metadata to identify the number of possible past returns due to unauthorized transactions over the past 30 days from the account that will be debited. * @return unauthorizedTransactionsCount30d **/ @javax.annotation.Nullable @ApiModelProperty(value = "We parse and analyze historical transaction metadata to identify the number of possible past returns due to unauthorized transactions over the past 30 days from the account that will be debited.") public Integer getUnauthorizedTransactionsCount30d() { return unauthorizedTransactionsCount30d; } public void setUnauthorizedTransactionsCount30d(Integer unauthorizedTransactionsCount30d) { this.unauthorizedTransactionsCount30d = unauthorizedTransactionsCount30d; } public SignalEvaluateCoreAttributes unauthorizedTransactionsCount60d(Integer unauthorizedTransactionsCount60d) { this.unauthorizedTransactionsCount60d = unauthorizedTransactionsCount60d; return this; } /** * We parse and analyze historical transaction metadata to identify the number of possible past returns due to unauthorized transactions over the past 60 days from the account that will be debited. * @return unauthorizedTransactionsCount60d **/ @javax.annotation.Nullable @ApiModelProperty(value = "We parse and analyze historical transaction metadata to identify the number of possible past returns due to unauthorized transactions over the past 60 days from the account that will be debited.") public Integer getUnauthorizedTransactionsCount60d() { return unauthorizedTransactionsCount60d; } public void setUnauthorizedTransactionsCount60d(Integer unauthorizedTransactionsCount60d) { this.unauthorizedTransactionsCount60d = unauthorizedTransactionsCount60d; } public SignalEvaluateCoreAttributes unauthorizedTransactionsCount90d(Integer unauthorizedTransactionsCount90d) { this.unauthorizedTransactionsCount90d = unauthorizedTransactionsCount90d; return this; } /** * We parse and analyze historical transaction metadata to identify the number of possible past returns due to unauthorized transactions over the past 90 days from the account that will be debited. * @return unauthorizedTransactionsCount90d **/ @javax.annotation.Nullable @ApiModelProperty(value = "We parse and analyze historical transaction metadata to identify the number of possible past returns due to unauthorized transactions over the past 90 days from the account that will be debited.") public Integer getUnauthorizedTransactionsCount90d() { return unauthorizedTransactionsCount90d; } public void setUnauthorizedTransactionsCount90d(Integer unauthorizedTransactionsCount90d) { this.unauthorizedTransactionsCount90d = unauthorizedTransactionsCount90d; } public SignalEvaluateCoreAttributes nsfOverdraftTransactionsCount7d(Integer nsfOverdraftTransactionsCount7d) { this.nsfOverdraftTransactionsCount7d = nsfOverdraftTransactionsCount7d; return this; } /** * We parse and analyze historical transaction metadata to identify the number of possible past returns due to non-sufficient funds/overdrafts over the past 7 days from the account that will be debited. * @return nsfOverdraftTransactionsCount7d **/ @javax.annotation.Nullable @ApiModelProperty(value = "We parse and analyze historical transaction metadata to identify the number of possible past returns due to non-sufficient funds/overdrafts over the past 7 days from the account that will be debited.") public Integer getNsfOverdraftTransactionsCount7d() { return nsfOverdraftTransactionsCount7d; } public void setNsfOverdraftTransactionsCount7d(Integer nsfOverdraftTransactionsCount7d) { this.nsfOverdraftTransactionsCount7d = nsfOverdraftTransactionsCount7d; } public SignalEvaluateCoreAttributes nsfOverdraftTransactionsCount30d(Integer nsfOverdraftTransactionsCount30d) { this.nsfOverdraftTransactionsCount30d = nsfOverdraftTransactionsCount30d; return this; } /** * We parse and analyze historical transaction metadata to identify the number of possible past returns due to non-sufficient funds/overdrafts over the past 30 days from the account that will be debited. * @return nsfOverdraftTransactionsCount30d **/ @javax.annotation.Nullable @ApiModelProperty(value = "We parse and analyze historical transaction metadata to identify the number of possible past returns due to non-sufficient funds/overdrafts over the past 30 days from the account that will be debited.") public Integer getNsfOverdraftTransactionsCount30d() { return nsfOverdraftTransactionsCount30d; } public void setNsfOverdraftTransactionsCount30d(Integer nsfOverdraftTransactionsCount30d) { this.nsfOverdraftTransactionsCount30d = nsfOverdraftTransactionsCount30d; } public SignalEvaluateCoreAttributes nsfOverdraftTransactionsCount60d(Integer nsfOverdraftTransactionsCount60d) { this.nsfOverdraftTransactionsCount60d = nsfOverdraftTransactionsCount60d; return this; } /** * We parse and analyze historical transaction metadata to identify the number of possible past returns due to non-sufficient funds/overdrafts over the past 60 days from the account that will be debited. * @return nsfOverdraftTransactionsCount60d **/ @javax.annotation.Nullable @ApiModelProperty(value = "We parse and analyze historical transaction metadata to identify the number of possible past returns due to non-sufficient funds/overdrafts over the past 60 days from the account that will be debited.") public Integer getNsfOverdraftTransactionsCount60d() { return nsfOverdraftTransactionsCount60d; } public void setNsfOverdraftTransactionsCount60d(Integer nsfOverdraftTransactionsCount60d) { this.nsfOverdraftTransactionsCount60d = nsfOverdraftTransactionsCount60d; } public SignalEvaluateCoreAttributes nsfOverdraftTransactionsCount90d(Integer nsfOverdraftTransactionsCount90d) { this.nsfOverdraftTransactionsCount90d = nsfOverdraftTransactionsCount90d; return this; } /** * We parse and analyze historical transaction metadata to identify the number of possible past returns due to non-sufficient funds/overdrafts over the past 90 days from the account that will be debited. * @return nsfOverdraftTransactionsCount90d **/ @javax.annotation.Nullable @ApiModelProperty(value = "We parse and analyze historical transaction metadata to identify the number of possible past returns due to non-sufficient funds/overdrafts over the past 90 days from the account that will be debited.") public Integer getNsfOverdraftTransactionsCount90d() { return nsfOverdraftTransactionsCount90d; } public void setNsfOverdraftTransactionsCount90d(Integer nsfOverdraftTransactionsCount90d) { this.nsfOverdraftTransactionsCount90d = nsfOverdraftTransactionsCount90d; } public SignalEvaluateCoreAttributes daysSinceFirstPlaidConnection(Integer daysSinceFirstPlaidConnection) { this.daysSinceFirstPlaidConnection = daysSinceFirstPlaidConnection; return this; } /** * The number of days since the first time the Item was connected to an application via Plaid * @return daysSinceFirstPlaidConnection **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of days since the first time the Item was connected to an application via Plaid") public Integer getDaysSinceFirstPlaidConnection() { return daysSinceFirstPlaidConnection; } public void setDaysSinceFirstPlaidConnection(Integer daysSinceFirstPlaidConnection) { this.daysSinceFirstPlaidConnection = daysSinceFirstPlaidConnection; } public SignalEvaluateCoreAttributes plaidConnectionsCount7d(Integer plaidConnectionsCount7d) { this.plaidConnectionsCount7d = plaidConnectionsCount7d; return this; } /** * The number of times the Item has been connected to applications via Plaid over the past 7 days * @return plaidConnectionsCount7d **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of times the Item has been connected to applications via Plaid over the past 7 days") public Integer getPlaidConnectionsCount7d() { return plaidConnectionsCount7d; } public void setPlaidConnectionsCount7d(Integer plaidConnectionsCount7d) { this.plaidConnectionsCount7d = plaidConnectionsCount7d; } public SignalEvaluateCoreAttributes plaidConnectionsCount30d(Integer plaidConnectionsCount30d) { this.plaidConnectionsCount30d = plaidConnectionsCount30d; return this; } /** * The number of times the Item has been connected to applications via Plaid over the past 30 days * @return plaidConnectionsCount30d **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of times the Item has been connected to applications via Plaid over the past 30 days") public Integer getPlaidConnectionsCount30d() { return plaidConnectionsCount30d; } public void setPlaidConnectionsCount30d(Integer plaidConnectionsCount30d) { this.plaidConnectionsCount30d = plaidConnectionsCount30d; } public SignalEvaluateCoreAttributes totalPlaidConnectionsCount(Integer totalPlaidConnectionsCount) { this.totalPlaidConnectionsCount = totalPlaidConnectionsCount; return this; } /** * The total number of times the Item has been connected to applications via Plaid * @return totalPlaidConnectionsCount **/ @javax.annotation.Nullable
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
true
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AccountSelectionCardinality.java
src/main/java/com/plaid/client/model/AccountSelectionCardinality.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 application requires that accounts be limited to a specific cardinality. &#x60;MULTI_SELECT&#x60;: indicates that the user should be allowed to pick multiple accounts. &#x60;SINGLE_SELECT&#x60;: indicates that the user should be allowed to pick only a single account. &#x60;ALL&#x60;: indicates that the user must share all of their accounts and should not be given the opportunity to de-select */ @JsonAdapter(AccountSelectionCardinality.Adapter.class) public enum AccountSelectionCardinality { SINGLE_SELECT("SINGLE_SELECT"), MULTI_SELECT("MULTI_SELECT"), ALL("ALL"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; AccountSelectionCardinality(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static AccountSelectionCardinality fromValue(String value) { for (AccountSelectionCardinality b : AccountSelectionCardinality.values()) { if (b.value.equals(value)) { return b; } } return AccountSelectionCardinality.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<AccountSelectionCardinality> { @Override public void write(final JsonWriter jsonWriter, final AccountSelectionCardinality enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public AccountSelectionCardinality read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return AccountSelectionCardinality.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/NumbersACATS.java
src/main/java/com/plaid/client/model/NumbersACATS.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Identifying information for transferring holdings to an investments account via ACATS. */ @ApiModel(description = "Identifying information for transferring holdings to an investments account via ACATS.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class NumbersACATS { 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_DTC_NUMBERS = "dtc_numbers"; @SerializedName(SERIALIZED_NAME_DTC_NUMBERS) private List<String> dtcNumbers = new ArrayList<>(); public NumbersACATS 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 NumbersACATS account(String account) { this.account = account; return this; } /** * The full account number for the account * @return account **/ @ApiModelProperty(required = true, value = "The full account number for the account") public String getAccount() { return account; } public void setAccount(String account) { this.account = account; } public NumbersACATS dtcNumbers(List<String> dtcNumbers) { this.dtcNumbers = dtcNumbers; return this; } public NumbersACATS addDtcNumbersItem(String dtcNumbersItem) { this.dtcNumbers.add(dtcNumbersItem); return this; } /** * Identifiers for the clearinghouses that are associated with the account in order of relevance. If this array is empty, call &#x60;/institutions/get_by_id&#x60; with the &#x60;item.institution_id&#x60; to get the DTC number. * @return dtcNumbers **/ @ApiModelProperty(required = true, value = "Identifiers for the clearinghouses that are associated with the account in order of relevance. If this array is empty, call `/institutions/get_by_id` with the `item.institution_id` to get the DTC number.") public List<String> getDtcNumbers() { return dtcNumbers; } public void setDtcNumbers(List<String> dtcNumbers) { this.dtcNumbers = dtcNumbers; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } NumbersACATS numbersACATS = (NumbersACATS) o; return Objects.equals(this.accountId, numbersACATS.accountId) && Objects.equals(this.account, numbersACATS.account) && Objects.equals(this.dtcNumbers, numbersACATS.dtcNumbers); } @Override public int hashCode() { return Objects.hash(accountId, account, dtcNumbers); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class NumbersACATS {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" account: ").append(toIndentedString(account)).append("\n"); sb.append(" dtcNumbers: ").append(toIndentedString(dtcNumbers)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetReportAuditCopyCreateRequest.java
src/main/java/com/plaid/client/model/AssetReportAuditCopyCreateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * AssetReportAuditCopyCreateRequest defines the request schema for &#x60;/asset_report/audit_copy/get&#x60; */ @ApiModel(description = "AssetReportAuditCopyCreateRequest defines the request schema for `/asset_report/audit_copy/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AssetReportAuditCopyCreateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_ASSET_REPORT_TOKEN = "asset_report_token"; @SerializedName(SERIALIZED_NAME_ASSET_REPORT_TOKEN) private String assetReportToken; public static final String SERIALIZED_NAME_AUDITOR_ID = "auditor_id"; @SerializedName(SERIALIZED_NAME_AUDITOR_ID) private String auditorId; public AssetReportAuditCopyCreateRequest 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 AssetReportAuditCopyCreateRequest 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 AssetReportAuditCopyCreateRequest 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; } public AssetReportAuditCopyCreateRequest auditorId(String auditorId) { this.auditorId = auditorId; return this; } /** * The &#x60;auditor_id&#x60; of the third party with whom you would like to share the Asset Report. * @return auditorId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The `auditor_id` of the third party with whom you would like to share the Asset Report.") public String getAuditorId() { return auditorId; } public void setAuditorId(String auditorId) { this.auditorId = auditorId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AssetReportAuditCopyCreateRequest assetReportAuditCopyCreateRequest = (AssetReportAuditCopyCreateRequest) o; return Objects.equals(this.clientId, assetReportAuditCopyCreateRequest.clientId) && Objects.equals(this.secret, assetReportAuditCopyCreateRequest.secret) && Objects.equals(this.assetReportToken, assetReportAuditCopyCreateRequest.assetReportToken) && Objects.equals(this.auditorId, assetReportAuditCopyCreateRequest.auditorId); } @Override public int hashCode() { return Objects.hash(clientId, secret, assetReportToken, auditorId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetReportAuditCopyCreateRequest {\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(" auditorId: ").append(toIndentedString(auditorId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/MonitoringIncomeInsights.java
src/main/java/com/plaid/client/model/MonitoringIncomeInsights.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.ForecastedMonthlyIncome; import com.plaid.client.model.HistoricalAnnualIncome; import com.plaid.client.model.IncomeSourcesCounts; import com.plaid.client.model.MonitoringIncomeSource; import com.plaid.client.model.TotalMonthlyIncomeInsights; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * An object representing the income subcategory of the report */ @ApiModel(description = "An object representing the income subcategory of the report") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class MonitoringIncomeInsights { public static final String SERIALIZED_NAME_TOTAL_MONTHLY_INCOME = "total_monthly_income"; @SerializedName(SERIALIZED_NAME_TOTAL_MONTHLY_INCOME) private TotalMonthlyIncomeInsights totalMonthlyIncome; public static final String SERIALIZED_NAME_INCOME_SOURCES_COUNTS = "income_sources_counts"; @SerializedName(SERIALIZED_NAME_INCOME_SOURCES_COUNTS) private IncomeSourcesCounts incomeSourcesCounts; public static final String SERIALIZED_NAME_FORECASTED_MONTHLY_INCOME = "forecasted_monthly_income"; @SerializedName(SERIALIZED_NAME_FORECASTED_MONTHLY_INCOME) private ForecastedMonthlyIncome forecastedMonthlyIncome; public static final String SERIALIZED_NAME_HISTORICAL_ANNUAL_INCOME = "historical_annual_income"; @SerializedName(SERIALIZED_NAME_HISTORICAL_ANNUAL_INCOME) private HistoricalAnnualIncome historicalAnnualIncome; public static final String SERIALIZED_NAME_INCOME_SOURCES = "income_sources"; @SerializedName(SERIALIZED_NAME_INCOME_SOURCES) private List<MonitoringIncomeSource> incomeSources = new ArrayList<>(); public MonitoringIncomeInsights totalMonthlyIncome(TotalMonthlyIncomeInsights totalMonthlyIncome) { this.totalMonthlyIncome = totalMonthlyIncome; return this; } /** * Get totalMonthlyIncome * @return totalMonthlyIncome **/ @ApiModelProperty(required = true, value = "") public TotalMonthlyIncomeInsights getTotalMonthlyIncome() { return totalMonthlyIncome; } public void setTotalMonthlyIncome(TotalMonthlyIncomeInsights totalMonthlyIncome) { this.totalMonthlyIncome = totalMonthlyIncome; } public MonitoringIncomeInsights incomeSourcesCounts(IncomeSourcesCounts incomeSourcesCounts) { this.incomeSourcesCounts = incomeSourcesCounts; return this; } /** * Get incomeSourcesCounts * @return incomeSourcesCounts **/ @ApiModelProperty(required = true, value = "") public IncomeSourcesCounts getIncomeSourcesCounts() { return incomeSourcesCounts; } public void setIncomeSourcesCounts(IncomeSourcesCounts incomeSourcesCounts) { this.incomeSourcesCounts = incomeSourcesCounts; } public MonitoringIncomeInsights forecastedMonthlyIncome(ForecastedMonthlyIncome forecastedMonthlyIncome) { this.forecastedMonthlyIncome = forecastedMonthlyIncome; return this; } /** * Get forecastedMonthlyIncome * @return forecastedMonthlyIncome **/ @ApiModelProperty(required = true, value = "") public ForecastedMonthlyIncome getForecastedMonthlyIncome() { return forecastedMonthlyIncome; } public void setForecastedMonthlyIncome(ForecastedMonthlyIncome forecastedMonthlyIncome) { this.forecastedMonthlyIncome = forecastedMonthlyIncome; } public MonitoringIncomeInsights historicalAnnualIncome(HistoricalAnnualIncome historicalAnnualIncome) { this.historicalAnnualIncome = historicalAnnualIncome; return this; } /** * Get historicalAnnualIncome * @return historicalAnnualIncome **/ @ApiModelProperty(required = true, value = "") public HistoricalAnnualIncome getHistoricalAnnualIncome() { return historicalAnnualIncome; } public void setHistoricalAnnualIncome(HistoricalAnnualIncome historicalAnnualIncome) { this.historicalAnnualIncome = historicalAnnualIncome; } public MonitoringIncomeInsights incomeSources(List<MonitoringIncomeSource> incomeSources) { this.incomeSources = incomeSources; return this; } public MonitoringIncomeInsights addIncomeSourcesItem(MonitoringIncomeSource incomeSourcesItem) { this.incomeSources.add(incomeSourcesItem); return this; } /** * The income sources for this Item. Each entry in the array is a single income source * @return incomeSources **/ @ApiModelProperty(required = true, value = "The income sources for this Item. Each entry in the array is a single income source") public List<MonitoringIncomeSource> getIncomeSources() { return incomeSources; } public void setIncomeSources(List<MonitoringIncomeSource> incomeSources) { this.incomeSources = incomeSources; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } MonitoringIncomeInsights monitoringIncomeInsights = (MonitoringIncomeInsights) o; return Objects.equals(this.totalMonthlyIncome, monitoringIncomeInsights.totalMonthlyIncome) && Objects.equals(this.incomeSourcesCounts, monitoringIncomeInsights.incomeSourcesCounts) && Objects.equals(this.forecastedMonthlyIncome, monitoringIncomeInsights.forecastedMonthlyIncome) && Objects.equals(this.historicalAnnualIncome, monitoringIncomeInsights.historicalAnnualIncome) && Objects.equals(this.incomeSources, monitoringIncomeInsights.incomeSources); } @Override public int hashCode() { return Objects.hash(totalMonthlyIncome, incomeSourcesCounts, forecastedMonthlyIncome, historicalAnnualIncome, incomeSources); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class MonitoringIncomeInsights {\n"); sb.append(" totalMonthlyIncome: ").append(toIndentedString(totalMonthlyIncome)).append("\n"); sb.append(" incomeSourcesCounts: ").append(toIndentedString(incomeSourcesCounts)).append("\n"); sb.append(" forecastedMonthlyIncome: ").append(toIndentedString(forecastedMonthlyIncome)).append("\n"); sb.append(" historicalAnnualIncome: ").append(toIndentedString(historicalAnnualIncome)).append("\n"); sb.append(" incomeSources: ").append(toIndentedString(incomeSources)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/EntityScreeningHitEmailsItems.java
src/main/java/com/plaid/client/model/EntityScreeningHitEmailsItems.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.EntityScreeningHitEmails; import com.plaid.client.model.MatchSummary; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Analyzed emails for the associated hit */ @ApiModel(description = "Analyzed emails for the associated hit") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class EntityScreeningHitEmailsItems { 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 EntityScreeningHitEmails data; public EntityScreeningHitEmailsItems 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 EntityScreeningHitEmailsItems data(EntityScreeningHitEmails data) { this.data = data; return this; } /** * Get data * @return data **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public EntityScreeningHitEmails getData() { return data; } public void setData(EntityScreeningHitEmails data) { this.data = data; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } EntityScreeningHitEmailsItems entityScreeningHitEmailsItems = (EntityScreeningHitEmailsItems) o; return Objects.equals(this.analysis, entityScreeningHitEmailsItems.analysis) && Objects.equals(this.data, entityScreeningHitEmailsItems.data); } @Override public int hashCode() { return Objects.hash(analysis, data); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class EntityScreeningHitEmailsItems {\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/WatchlistScreeningEntityUpdateRequestResettableField.java
src/main/java/com/plaid/client/model/WatchlistScreeningEntityUpdateRequestResettableField.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The name of a field that can be reset back to null */ @JsonAdapter(WatchlistScreeningEntityUpdateRequestResettableField.Adapter.class) public enum WatchlistScreeningEntityUpdateRequestResettableField { ASSIGNEE("assignee"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; WatchlistScreeningEntityUpdateRequestResettableField(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static WatchlistScreeningEntityUpdateRequestResettableField fromValue(String value) { for (WatchlistScreeningEntityUpdateRequestResettableField b : WatchlistScreeningEntityUpdateRequestResettableField.values()) { if (b.value.equals(value)) { return b; } } return WatchlistScreeningEntityUpdateRequestResettableField.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<WatchlistScreeningEntityUpdateRequestResettableField> { @Override public void write(final JsonWriter jsonWriter, final WatchlistScreeningEntityUpdateRequestResettableField enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public WatchlistScreeningEntityUpdateRequestResettableField read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return WatchlistScreeningEntityUpdateRequestResettableField.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/Transaction.java
src/main/java/com/plaid/client/model/Transaction.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.BusinessFinanceCategory; import com.plaid.client.model.ClientCustomization; import com.plaid.client.model.Location; import com.plaid.client.model.PaymentMeta; import com.plaid.client.model.PersonalFinanceCategory; import com.plaid.client.model.TransactionAllOf; import com.plaid.client.model.TransactionBase; import com.plaid.client.model.TransactionCode; import com.plaid.client.model.TransactionCounterparty; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.List; /** * A representation of a transaction */ @ApiModel(description = "A representation of a transaction") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Transaction { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private Double amount; public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code"; @SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE) private String isoCurrencyCode; public static final String SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE = "unofficial_currency_code"; @SerializedName(SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE) private String unofficialCurrencyCode; public static final String SERIALIZED_NAME_CATEGORY = "category"; @SerializedName(SERIALIZED_NAME_CATEGORY) private List<String> category = null; public static final String SERIALIZED_NAME_CATEGORY_ID = "category_id"; @SerializedName(SERIALIZED_NAME_CATEGORY_ID) private String categoryId; public static final String SERIALIZED_NAME_CHECK_NUMBER = "check_number"; @SerializedName(SERIALIZED_NAME_CHECK_NUMBER) private String checkNumber; public static final String SERIALIZED_NAME_DATE = "date"; @SerializedName(SERIALIZED_NAME_DATE) private LocalDate date; public static final String SERIALIZED_NAME_LOCATION = "location"; @SerializedName(SERIALIZED_NAME_LOCATION) private Location location; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_MERCHANT_NAME = "merchant_name"; @SerializedName(SERIALIZED_NAME_MERCHANT_NAME) private String merchantName; public static final String SERIALIZED_NAME_ORIGINAL_DESCRIPTION = "original_description"; @SerializedName(SERIALIZED_NAME_ORIGINAL_DESCRIPTION) private String originalDescription; public static final String SERIALIZED_NAME_PAYMENT_META = "payment_meta"; @SerializedName(SERIALIZED_NAME_PAYMENT_META) private PaymentMeta paymentMeta; public static final String SERIALIZED_NAME_PENDING = "pending"; @SerializedName(SERIALIZED_NAME_PENDING) private Boolean pending; public static final String SERIALIZED_NAME_PENDING_TRANSACTION_ID = "pending_transaction_id"; @SerializedName(SERIALIZED_NAME_PENDING_TRANSACTION_ID) private String pendingTransactionId; public static final String SERIALIZED_NAME_ACCOUNT_OWNER = "account_owner"; @SerializedName(SERIALIZED_NAME_ACCOUNT_OWNER) private String accountOwner; public static final String SERIALIZED_NAME_TRANSACTION_ID = "transaction_id"; @SerializedName(SERIALIZED_NAME_TRANSACTION_ID) private String transactionId; /** * Please use the &#x60;payment_channel&#x60; field, &#x60;transaction_type&#x60; will be deprecated in the future. &#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 three types. */ @JsonAdapter(TransactionTypeEnum.Adapter.class) public enum TransactionTypeEnum { DIGITAL("digital"), PLACE("place"), SPECIAL("special"), UNRESOLVED("unresolved"); private String value; TransactionTypeEnum(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransactionTypeEnum fromValue(String value) { for (TransactionTypeEnum b : TransactionTypeEnum.values()) { if (b.value.equals(value)) { return b; } } throw new IllegalArgumentException("Unexpected value '" + value + "'"); } public static class Adapter extends TypeAdapter<TransactionTypeEnum> { @Override public void write(final JsonWriter jsonWriter, final TransactionTypeEnum enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransactionTypeEnum read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransactionTypeEnum.fromValue(value); } } } public static final String SERIALIZED_NAME_TRANSACTION_TYPE = "transaction_type"; @SerializedName(SERIALIZED_NAME_TRANSACTION_TYPE) private TransactionTypeEnum transactionType; public static final String SERIALIZED_NAME_LOGO_URL = "logo_url"; @SerializedName(SERIALIZED_NAME_LOGO_URL) private String logoUrl; public static final String SERIALIZED_NAME_WEBSITE = "website"; @SerializedName(SERIALIZED_NAME_WEBSITE) private String website; public static final String SERIALIZED_NAME_AUTHORIZED_DATE = "authorized_date"; @SerializedName(SERIALIZED_NAME_AUTHORIZED_DATE) private LocalDate authorizedDate; public static final String SERIALIZED_NAME_AUTHORIZED_DATETIME = "authorized_datetime"; @SerializedName(SERIALIZED_NAME_AUTHORIZED_DATETIME) private OffsetDateTime authorizedDatetime; public static final String SERIALIZED_NAME_DATETIME = "datetime"; @SerializedName(SERIALIZED_NAME_DATETIME) private OffsetDateTime datetime; /** * The channel used to make a payment. &#x60;online:&#x60; transactions that took place online. &#x60;in store:&#x60; transactions that were made at a physical location. &#x60;other:&#x60; transactions that relate to banks, e.g. fees or deposits. This field replaces the &#x60;transaction_type&#x60; field. */ @JsonAdapter(PaymentChannelEnum.Adapter.class) public enum PaymentChannelEnum { ONLINE("online"), IN_STORE("in store"), OTHER("other"); private String value; PaymentChannelEnum(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PaymentChannelEnum fromValue(String value) { for (PaymentChannelEnum b : PaymentChannelEnum.values()) { if (b.value.equals(value)) { return b; } } throw new IllegalArgumentException("Unexpected value '" + value + "'"); } public static class Adapter extends TypeAdapter<PaymentChannelEnum> { @Override public void write(final JsonWriter jsonWriter, final PaymentChannelEnum enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PaymentChannelEnum read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PaymentChannelEnum.fromValue(value); } } } public static final String SERIALIZED_NAME_PAYMENT_CHANNEL = "payment_channel"; @SerializedName(SERIALIZED_NAME_PAYMENT_CHANNEL) private PaymentChannelEnum paymentChannel; public static final String SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY = "personal_finance_category"; @SerializedName(SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY) private PersonalFinanceCategory personalFinanceCategory; public static final String SERIALIZED_NAME_BUSINESS_FINANCE_CATEGORY = "business_finance_category"; @SerializedName(SERIALIZED_NAME_BUSINESS_FINANCE_CATEGORY) private BusinessFinanceCategory businessFinanceCategory; public static final String SERIALIZED_NAME_TRANSACTION_CODE = "transaction_code"; @SerializedName(SERIALIZED_NAME_TRANSACTION_CODE) private TransactionCode transactionCode; public static final String SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY_ICON_URL = "personal_finance_category_icon_url"; @SerializedName(SERIALIZED_NAME_PERSONAL_FINANCE_CATEGORY_ICON_URL) private String personalFinanceCategoryIconUrl; public static final String SERIALIZED_NAME_COUNTERPARTIES = "counterparties"; @SerializedName(SERIALIZED_NAME_COUNTERPARTIES) private List<TransactionCounterparty> counterparties = null; public static final String SERIALIZED_NAME_MERCHANT_ENTITY_ID = "merchant_entity_id"; @SerializedName(SERIALIZED_NAME_MERCHANT_ENTITY_ID) private String merchantEntityId; public static final String SERIALIZED_NAME_CLIENT_CUSTOMIZATION = "client_customization"; @SerializedName(SERIALIZED_NAME_CLIENT_CUSTOMIZATION) private ClientCustomization clientCustomization; public Transaction accountId(String accountId) { this.accountId = accountId; return this; } /** * The ID of the account in which this transaction occurred. * @return accountId **/ @ApiModelProperty(required = true, value = "The ID of the account in which this transaction occurred.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public Transaction amount(Double amount) { this.amount = amount; return this; } /** * The settled value of the transaction, denominated in the transactions&#39;s currency, as stated in &#x60;iso_currency_code&#x60; or &#x60;unofficial_currency_code&#x60;. For all products except Income: Positive values when money moves out of the account; negative values when money moves in. For example, debit card purchases are positive; credit card payments, direct deposits, and refunds are negative. For Income endpoints, values are positive when representing income. * @return amount **/ @ApiModelProperty(required = true, value = "The settled value of the transaction, denominated in the transactions's currency, as stated in `iso_currency_code` or `unofficial_currency_code`. For all products except Income: Positive values when money moves out of the account; negative values when money moves in. For example, debit card purchases are positive; credit card payments, direct deposits, and refunds are negative. For Income endpoints, values are positive when representing income.") public Double getAmount() { return amount; } public void setAmount(Double amount) { this.amount = amount; } public Transaction isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO-4217 currency code of the transaction. Always &#x60;null&#x60; if &#x60;unofficial_currency_code&#x60; is non-null. * @return isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ISO-4217 currency code of the transaction. Always `null` if `unofficial_currency_code` is non-null.") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public Transaction unofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; return this; } /** * The unofficial currency code associated with the transaction. Always &#x60;null&#x60; if &#x60;iso_currency_code&#x60; is non-&#x60;null&#x60;. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported &#x60;iso_currency_code&#x60;s. * @return unofficialCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The unofficial currency code associated with the transaction. Always `null` if `iso_currency_code` is non-`null`. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported `iso_currency_code`s.") public String getUnofficialCurrencyCode() { return unofficialCurrencyCode; } public void setUnofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; } public Transaction category(List<String> category) { this.category = category; return this; } public Transaction addCategoryItem(String categoryItem) { if (this.category == null) { this.category = new ArrayList<>(); } this.category.add(categoryItem); return this; } /** * A hierarchical array of the categories to which this transaction belongs. For a full list of categories, see [&#x60;/categories/get&#x60;](https://plaid.com/docs/api/products/transactions/#categoriesget). All Transactions implementations are recommended to use the new &#x60;personal_finance_category&#x60; instead of &#x60;category&#x60;, as it provides greater accuracy and more meaningful categorization. If the &#x60;transactions&#x60; object was returned by an Assets endpoint such as &#x60;/asset_report/get/&#x60; or &#x60;/asset_report/pdf/get&#x60;, this field will only appear in an Asset Report with Insights. * @return category **/ @javax.annotation.Nullable @ApiModelProperty(value = "A hierarchical array of the categories to which this transaction belongs. For a full list of categories, see [`/categories/get`](https://plaid.com/docs/api/products/transactions/#categoriesget). All Transactions implementations are recommended to use the new `personal_finance_category` instead of `category`, as it provides greater accuracy and more meaningful categorization. If the `transactions` object was returned by an Assets endpoint such as `/asset_report/get/` or `/asset_report/pdf/get`, this field will only appear in an Asset Report with Insights.") public List<String> getCategory() { return category; } public void setCategory(List<String> category) { this.category = category; } public Transaction categoryId(String categoryId) { this.categoryId = categoryId; return this; } /** * The ID of the category to which this transaction belongs. For a full list of categories, see [&#x60;/categories/get&#x60;](https://plaid.com/docs/api/products/transactions/#categoriesget). All Transactions implementations are recommended to use the new &#x60;personal_finance_category&#x60; instead of &#x60;category&#x60;, as it provides greater accuracy and more meaningful categorization. If the &#x60;transactions&#x60; object was returned by an Assets endpoint such as &#x60;/asset_report/get/&#x60; or &#x60;/asset_report/pdf/get&#x60;, this field will only appear in an Asset Report with Insights. * @return categoryId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The ID of the category to which this transaction belongs. For a full list of categories, see [`/categories/get`](https://plaid.com/docs/api/products/transactions/#categoriesget). All Transactions implementations are recommended to use the new `personal_finance_category` instead of `category`, as it provides greater accuracy and more meaningful categorization. If the `transactions` object was returned by an Assets endpoint such as `/asset_report/get/` or `/asset_report/pdf/get`, this field will only appear in an Asset Report with Insights.") public String getCategoryId() { return categoryId; } public void setCategoryId(String categoryId) { this.categoryId = categoryId; } public Transaction checkNumber(String checkNumber) { this.checkNumber = checkNumber; return this; } /** * The check number of the transaction. This field is only populated for check transactions. * @return checkNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "The check number of the transaction. This field is only populated for check transactions.") public String getCheckNumber() { return checkNumber; } public void setCheckNumber(String checkNumber) { this.checkNumber = checkNumber; } public Transaction date(LocalDate date) { this.date = date; return this; } /** * For pending transactions, the date that the transaction occurred; for posted transactions, the date that the transaction posted. Both dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format ( &#x60;YYYY-MM-DD&#x60; ). To receive information about the date that a posted transaction was initiated, see the &#x60;authorized_date&#x60; field. * @return date **/ @ApiModelProperty(required = true, value = "For pending transactions, the date that the transaction occurred; for posted transactions, the date that the transaction posted. Both dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format ( `YYYY-MM-DD` ). To receive information about the date that a posted transaction was initiated, see the `authorized_date` field.") public LocalDate getDate() { return date; } public void setDate(LocalDate date) { this.date = date; } public Transaction location(Location location) { this.location = location; return this; } /** * Get location * @return location **/ @ApiModelProperty(required = true, value = "") public Location getLocation() { return location; } public void setLocation(Location location) { this.location = location; } public Transaction name(String name) { this.name = name; return this; } /** * The merchant name or transaction description. Note: While Plaid does not currently plan to remove this field, it is a legacy field that is not actively maintained. Use &#x60;merchant_name&#x60; instead for the merchant name. If the &#x60;transactions&#x60; object was returned by a Transactions endpoint such as &#x60;/transactions/sync&#x60; or &#x60;/transactions/get&#x60;, this field will always appear. If the &#x60;transactions&#x60; object was returned by an Assets endpoint such as &#x60;/asset_report/get/&#x60; or &#x60;/asset_report/pdf/get&#x60;, this field will only appear in an Asset Report with Insights. * @return name **/ @ApiModelProperty(required = true, value = "The merchant name or transaction description. Note: While Plaid does not currently plan to remove this field, it is a legacy field that is not actively maintained. Use `merchant_name` instead for the merchant name. If the `transactions` object was returned by a Transactions endpoint such as `/transactions/sync` or `/transactions/get`, this field will always appear. If the `transactions` object was returned by an Assets endpoint such as `/asset_report/get/` or `/asset_report/pdf/get`, this field will only appear in an Asset Report with Insights.") public String getName() { return name; } public void setName(String name) { this.name = name; } public Transaction merchantName(String merchantName) { this.merchantName = merchantName; return this; } /** * The merchant name, as enriched by Plaid from the &#x60;name&#x60; field. This is typically a more human-readable version of the merchant counterparty in the transaction. For some bank transactions (such as checks or account transfers) where there is no meaningful merchant name, this value will be &#x60;null&#x60;. * @return merchantName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The merchant name, as enriched by Plaid from the `name` field. This is typically a more human-readable version of the merchant counterparty in the transaction. For some bank transactions (such as checks or account transfers) where there is no meaningful merchant name, this value will be `null`.") public String getMerchantName() { return merchantName; } public void setMerchantName(String merchantName) { this.merchantName = merchantName; } public Transaction originalDescription(String originalDescription) { this.originalDescription = originalDescription; return this; } /** * The string returned by the financial institution to describe the transaction. For transactions returned by &#x60;/transactions/sync&#x60; or &#x60;/transactions/get&#x60;, this field will only be included if the client has set &#x60;options.include_original_description&#x60; to &#x60;true&#x60;. * @return originalDescription **/ @javax.annotation.Nullable @ApiModelProperty(value = "The string returned by the financial institution to describe the transaction. For transactions returned by `/transactions/sync` or `/transactions/get`, this field will only be included if the client has set `options.include_original_description` to `true`.") public String getOriginalDescription() { return originalDescription; } public void setOriginalDescription(String originalDescription) { this.originalDescription = originalDescription; } public Transaction paymentMeta(PaymentMeta paymentMeta) { this.paymentMeta = paymentMeta; return this; } /** * Get paymentMeta * @return paymentMeta **/ @ApiModelProperty(required = true, value = "") public PaymentMeta getPaymentMeta() { return paymentMeta; } public void setPaymentMeta(PaymentMeta paymentMeta) { this.paymentMeta = paymentMeta; } public Transaction pending(Boolean pending) { this.pending = pending; return this; } /** * When &#x60;true&#x60;, identifies the transaction as pending or unsettled. Pending transaction details (name, type, amount, category ID) may change before they are settled. Not all institutions provide pending transactions. * @return pending **/ @ApiModelProperty(required = true, value = "When `true`, identifies the transaction as pending or unsettled. Pending transaction details (name, type, amount, category ID) may change before they are settled. Not all institutions provide pending transactions.") public Boolean getPending() { return pending; } public void setPending(Boolean pending) { this.pending = pending; } public Transaction pendingTransactionId(String pendingTransactionId) { this.pendingTransactionId = pendingTransactionId; return this; } /** * The ID of a posted transaction&#39;s associated pending transaction, where applicable. Not all institutions provide pending transactions. * @return pendingTransactionId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ID of a posted transaction's associated pending transaction, where applicable. Not all institutions provide pending transactions.") public String getPendingTransactionId() { return pendingTransactionId; } public void setPendingTransactionId(String pendingTransactionId) { this.pendingTransactionId = pendingTransactionId; } public Transaction accountOwner(String accountOwner) { this.accountOwner = accountOwner; return this; } /** * This field is not typically populated and only relevant when dealing with sub-accounts. A sub-account most commonly exists in cases where a single account is linked to multiple cards, each with its own card number and card holder name; each card will be considered a sub-account. If the account does have sub-accounts, this field will typically be some combination of the sub-account owner&#39;s name and/or the sub-account mask. The format of this field is not standardized and will vary based on institution. * @return accountOwner **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "This field is not typically populated and only relevant when dealing with sub-accounts. A sub-account most commonly exists in cases where a single account is linked to multiple cards, each with its own card number and card holder name; each card will be considered a sub-account. If the account does have sub-accounts, this field will typically be some combination of the sub-account owner's name and/or the sub-account mask. The format of this field is not standardized and will vary based on institution.") public String getAccountOwner() { return accountOwner; } public void setAccountOwner(String accountOwner) { this.accountOwner = accountOwner; } public Transaction transactionId(String transactionId) { this.transactionId = transactionId; return this; } /** * The unique ID of the transaction. Like all Plaid identifiers, the &#x60;transaction_id&#x60; is case sensitive. * @return transactionId **/ @ApiModelProperty(required = true, value = "The unique ID of the transaction. Like all Plaid identifiers, the `transaction_id` is case sensitive.") public String getTransactionId() { return transactionId; } public void setTransactionId(String transactionId) { this.transactionId = transactionId; } public Transaction transactionType(TransactionTypeEnum transactionType) { this.transactionType = transactionType; return this; } /** * Please use the &#x60;payment_channel&#x60; field, &#x60;transaction_type&#x60; will be deprecated in the future. &#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 three types. * @return transactionType **/ @javax.annotation.Nullable @ApiModelProperty(value = "Please use the `payment_channel` field, `transaction_type` will be deprecated in the future. `digital:` transactions that took place online. `place:` transactions that were made at a physical location. `special:` transactions that relate to banks, e.g. fees or deposits. `unresolved:` transactions that do not fit into the other three types. ") public TransactionTypeEnum getTransactionType() { return transactionType; } public void setTransactionType(TransactionTypeEnum transactionType) { this.transactionType = transactionType; } public Transaction logoUrl(String logoUrl) { this.logoUrl = logoUrl; return this; } /** * The URL of a logo associated with this transaction, if available. The logo will always be 100×100 pixel PNG file. * @return logoUrl **/ @javax.annotation.Nullable @ApiModelProperty(value = "The URL of a logo associated with this transaction, if available. The logo will always be 100×100 pixel PNG file.") public String getLogoUrl() { return logoUrl; } public void setLogoUrl(String logoUrl) { this.logoUrl = logoUrl; } public Transaction website(String website) { this.website = website; return this; } /** * The website associated with this transaction, if available. * @return website **/ @javax.annotation.Nullable @ApiModelProperty(value = "The website associated with this transaction, if available.") public String getWebsite() { return website; } public void setWebsite(String website) { this.website = website; } public Transaction authorizedDate(LocalDate authorizedDate) { this.authorizedDate = authorizedDate; return this; } /** * The date that the transaction was authorized. For posted transactions, the &#x60;date&#x60; field will indicate the posted date, but &#x60;authorized_date&#x60; will indicate the day the transaction was authorized by the financial institution. If presenting transactions to the user in a UI, the &#x60;authorized_date&#x60;, when available, is generally preferable to use over the &#x60;date&#x60; field for posted transactions, as it will generally represent the date the user actually made the transaction. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format ( &#x60;YYYY-MM-DD&#x60; ). * @return authorizedDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The date that the transaction was authorized. For posted transactions, the `date` field will indicate the posted date, but `authorized_date` will indicate the day the transaction was authorized by the financial institution. If presenting transactions to the user in a UI, the `authorized_date`, when available, is generally preferable to use over the `date` field for posted transactions, as it will generally represent the date the user actually made the transaction. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format ( `YYYY-MM-DD` ).") public LocalDate getAuthorizedDate() { return authorizedDate; } public void setAuthorizedDate(LocalDate authorizedDate) { this.authorizedDate = authorizedDate; } public Transaction authorizedDatetime(OffsetDateTime authorizedDatetime) { this.authorizedDatetime = authorizedDatetime; return this; } /** * Date and time when a transaction was authorized in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format ( &#x60;YYYY-MM-DDTHH:mm:ssZ&#x60; ). For posted transactions, the &#x60;datetime&#x60; field will indicate the posted date, but &#x60;authorized_datetime&#x60; will indicate the day the transaction was authorized by the financial institution. If presenting transactions to the user in a UI, the &#x60;authorized_datetime&#x60;, when available, is generally preferable to use over the &#x60;datetime&#x60; field for posted transactions, as it will generally represent the date the user actually made the transaction. This field is returned for select financial institutions and comes as provided by the institution. It may contain default time values (such as 00:00:00). This field is only populated in API version 2019-05-29 and later. * @return authorizedDatetime **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Date and time when a transaction was authorized in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format ( `YYYY-MM-DDTHH:mm:ssZ` ). For posted transactions, the `datetime` field will indicate the posted date, but `authorized_datetime` will indicate the day the transaction was authorized by the financial institution. If presenting transactions to the user in a UI, the `authorized_datetime`, when available, is generally preferable to use over the `datetime` field for posted transactions, as it will generally represent the date the user actually made the transaction. This field is returned for select financial institutions and comes as provided by the institution. It may contain default time values (such as 00:00:00). This field is only populated in API version 2019-05-29 and later.") public OffsetDateTime getAuthorizedDatetime() { return authorizedDatetime; } public void setAuthorizedDatetime(OffsetDateTime authorizedDatetime) { this.authorizedDatetime = authorizedDatetime; } public Transaction datetime(OffsetDateTime datetime) { this.datetime = datetime; return this; } /**
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
true
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaystubOverride.java
src/main/java/com/plaid/client/model/PaystubOverride.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.IncomeBreakdown; import com.plaid.client.model.PaystubOverrideDeductions; import com.plaid.client.model.PaystubOverrideEarnings; import com.plaid.client.model.PaystubOverrideEmployee; import com.plaid.client.model.PaystubOverrideEmployer; import com.plaid.client.model.PaystubOverrideNetPay; import com.plaid.client.model.PaystubOverridePayPeriodDetails; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * An object representing data from a paystub. */ @ApiModel(description = "An object representing data from a paystub.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaystubOverride { public static final String SERIALIZED_NAME_EMPLOYER = "employer"; @SerializedName(SERIALIZED_NAME_EMPLOYER) private PaystubOverrideEmployer employer; public static final String SERIALIZED_NAME_EMPLOYEE = "employee"; @SerializedName(SERIALIZED_NAME_EMPLOYEE) private PaystubOverrideEmployee employee; public static final String SERIALIZED_NAME_INCOME_BREAKDOWN = "income_breakdown"; @SerializedName(SERIALIZED_NAME_INCOME_BREAKDOWN) private List<IncomeBreakdown> incomeBreakdown = null; public static final String SERIALIZED_NAME_NET_PAY = "net_pay"; @SerializedName(SERIALIZED_NAME_NET_PAY) private PaystubOverrideNetPay netPay; public static final String SERIALIZED_NAME_DEDUCTIONS = "deductions"; @SerializedName(SERIALIZED_NAME_DEDUCTIONS) private PaystubOverrideDeductions deductions; public static final String SERIALIZED_NAME_EARNINGS = "earnings"; @SerializedName(SERIALIZED_NAME_EARNINGS) private PaystubOverrideEarnings earnings; public static final String SERIALIZED_NAME_PAY_PERIOD_DETAILS = "pay_period_details"; @SerializedName(SERIALIZED_NAME_PAY_PERIOD_DETAILS) private PaystubOverridePayPeriodDetails payPeriodDetails; public PaystubOverride employer(PaystubOverrideEmployer employer) { this.employer = employer; return this; } /** * Get employer * @return employer **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaystubOverrideEmployer getEmployer() { return employer; } public void setEmployer(PaystubOverrideEmployer employer) { this.employer = employer; } public PaystubOverride employee(PaystubOverrideEmployee employee) { this.employee = employee; return this; } /** * Get employee * @return employee **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaystubOverrideEmployee getEmployee() { return employee; } public void setEmployee(PaystubOverrideEmployee employee) { this.employee = employee; } public PaystubOverride incomeBreakdown(List<IncomeBreakdown> incomeBreakdown) { this.incomeBreakdown = incomeBreakdown; return this; } public PaystubOverride addIncomeBreakdownItem(IncomeBreakdown incomeBreakdownItem) { if (this.incomeBreakdown == null) { this.incomeBreakdown = new ArrayList<>(); } this.incomeBreakdown.add(incomeBreakdownItem); return this; } /** * Get incomeBreakdown * @return incomeBreakdown **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public List<IncomeBreakdown> getIncomeBreakdown() { return incomeBreakdown; } public void setIncomeBreakdown(List<IncomeBreakdown> incomeBreakdown) { this.incomeBreakdown = incomeBreakdown; } public PaystubOverride netPay(PaystubOverrideNetPay netPay) { this.netPay = netPay; return this; } /** * Get netPay * @return netPay **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaystubOverrideNetPay getNetPay() { return netPay; } public void setNetPay(PaystubOverrideNetPay netPay) { this.netPay = netPay; } public PaystubOverride deductions(PaystubOverrideDeductions deductions) { this.deductions = deductions; return this; } /** * Get deductions * @return deductions **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaystubOverrideDeductions getDeductions() { return deductions; } public void setDeductions(PaystubOverrideDeductions deductions) { this.deductions = deductions; } public PaystubOverride earnings(PaystubOverrideEarnings earnings) { this.earnings = earnings; return this; } /** * Get earnings * @return earnings **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaystubOverrideEarnings getEarnings() { return earnings; } public void setEarnings(PaystubOverrideEarnings earnings) { this.earnings = earnings; } public PaystubOverride payPeriodDetails(PaystubOverridePayPeriodDetails payPeriodDetails) { this.payPeriodDetails = payPeriodDetails; return this; } /** * Get payPeriodDetails * @return payPeriodDetails **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaystubOverridePayPeriodDetails getPayPeriodDetails() { return payPeriodDetails; } public void setPayPeriodDetails(PaystubOverridePayPeriodDetails payPeriodDetails) { this.payPeriodDetails = payPeriodDetails; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaystubOverride paystubOverride = (PaystubOverride) o; return Objects.equals(this.employer, paystubOverride.employer) && Objects.equals(this.employee, paystubOverride.employee) && Objects.equals(this.incomeBreakdown, paystubOverride.incomeBreakdown) && Objects.equals(this.netPay, paystubOverride.netPay) && Objects.equals(this.deductions, paystubOverride.deductions) && Objects.equals(this.earnings, paystubOverride.earnings) && Objects.equals(this.payPeriodDetails, paystubOverride.payPeriodDetails); } @Override public int hashCode() { return Objects.hash(employer, employee, incomeBreakdown, netPay, deductions, earnings, payPeriodDetails); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaystubOverride {\n"); sb.append(" employer: ").append(toIndentedString(employer)).append("\n"); sb.append(" employee: ").append(toIndentedString(employee)).append("\n"); sb.append(" incomeBreakdown: ").append(toIndentedString(incomeBreakdown)).append("\n"); sb.append(" netPay: ").append(toIndentedString(netPay)).append("\n"); sb.append(" deductions: ").append(toIndentedString(deductions)).append("\n"); sb.append(" earnings: ").append(toIndentedString(earnings)).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/IdentityDocumentMetadata.java
src/main/java/com/plaid/client/model/IdentityDocumentMetadata.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * In closed beta. Object representing metadata pertaining to the document. */ @ApiModel(description = "In closed beta. Object representing metadata pertaining to the document.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityDocumentMetadata { public static final String SERIALIZED_NAME_IS_ACCOUNT_NUMBER_MATCH = "is_account_number_match"; @SerializedName(SERIALIZED_NAME_IS_ACCOUNT_NUMBER_MATCH) private Boolean isAccountNumberMatch; public static final String SERIALIZED_NAME_LAST_UPDATED = "last_updated"; @SerializedName(SERIALIZED_NAME_LAST_UPDATED) private OffsetDateTime lastUpdated; public static final String SERIALIZED_NAME_UPLOADED_AT = "uploaded_at"; @SerializedName(SERIALIZED_NAME_UPLOADED_AT) private OffsetDateTime uploadedAt; public IdentityDocumentMetadata isAccountNumberMatch(Boolean isAccountNumberMatch) { this.isAccountNumberMatch = isAccountNumberMatch; return this; } /** * Boolean field indicating if the uploaded document&#39;s account number matches the account number we have on file * @return isAccountNumberMatch **/ @javax.annotation.Nullable @ApiModelProperty(value = "Boolean field indicating if the uploaded document's account number matches the account number we have on file") public Boolean getIsAccountNumberMatch() { return isAccountNumberMatch; } public void setIsAccountNumberMatch(Boolean isAccountNumberMatch) { this.isAccountNumberMatch = isAccountNumberMatch; } public IdentityDocumentMetadata lastUpdated(OffsetDateTime lastUpdated) { this.lastUpdated = lastUpdated; return this; } /** * Get lastUpdated * @return lastUpdated **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public OffsetDateTime getLastUpdated() { return lastUpdated; } public void setLastUpdated(OffsetDateTime lastUpdated) { this.lastUpdated = lastUpdated; } public IdentityDocumentMetadata uploadedAt(OffsetDateTime uploadedAt) { this.uploadedAt = uploadedAt; return this; } /** * Get uploadedAt * @return uploadedAt **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public OffsetDateTime getUploadedAt() { return uploadedAt; } public void setUploadedAt(OffsetDateTime uploadedAt) { this.uploadedAt = uploadedAt; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IdentityDocumentMetadata identityDocumentMetadata = (IdentityDocumentMetadata) o; return Objects.equals(this.isAccountNumberMatch, identityDocumentMetadata.isAccountNumberMatch) && Objects.equals(this.lastUpdated, identityDocumentMetadata.lastUpdated) && Objects.equals(this.uploadedAt, identityDocumentMetadata.uploadedAt); } @Override public int hashCode() { return Objects.hash(isAccountNumberMatch, lastUpdated, uploadedAt); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityDocumentMetadata {\n"); sb.append(" isAccountNumberMatch: ").append(toIndentedString(isAccountNumberMatch)).append("\n"); sb.append(" lastUpdated: ").append(toIndentedString(lastUpdated)).append("\n"); sb.append(" uploadedAt: ").append(toIndentedString(uploadedAt)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetReportFreddie.java
src/main/java/com/plaid/client/model/AssetReportFreddie.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.Loans; import com.plaid.client.model.Parties; import com.plaid.client.model.Services; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object representing an Asset Report with Freddie Mac schema. */ @ApiModel(description = "An object representing an Asset Report with Freddie Mac schema.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AssetReportFreddie { public static final String SERIALIZED_NAME_L_O_A_N_S = "LOANS"; @SerializedName(SERIALIZED_NAME_L_O_A_N_S) private Loans LOANS; public static final String SERIALIZED_NAME_P_A_R_T_I_E_S = "PARTIES"; @SerializedName(SERIALIZED_NAME_P_A_R_T_I_E_S) private Parties PARTIES; public static final String SERIALIZED_NAME_S_E_R_V_I_C_E_S = "SERVICES"; @SerializedName(SERIALIZED_NAME_S_E_R_V_I_C_E_S) private Services SERVICES; public AssetReportFreddie LOANS(Loans LOANS) { this.LOANS = LOANS; return this; } /** * Get LOANS * @return LOANS **/ @ApiModelProperty(required = true, value = "") public Loans getLOANS() { return LOANS; } public void setLOANS(Loans LOANS) { this.LOANS = LOANS; } public AssetReportFreddie PARTIES(Parties PARTIES) { this.PARTIES = PARTIES; return this; } /** * Get PARTIES * @return PARTIES **/ @ApiModelProperty(required = true, value = "") public Parties getPARTIES() { return PARTIES; } public void setPARTIES(Parties PARTIES) { this.PARTIES = PARTIES; } public AssetReportFreddie SERVICES(Services SERVICES) { this.SERVICES = SERVICES; return this; } /** * Get SERVICES * @return SERVICES **/ @ApiModelProperty(required = true, value = "") public Services getSERVICES() { return SERVICES; } public void setSERVICES(Services SERVICES) { this.SERVICES = SERVICES; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AssetReportFreddie assetReportFreddie = (AssetReportFreddie) o; return Objects.equals(this.LOANS, assetReportFreddie.LOANS) && Objects.equals(this.PARTIES, assetReportFreddie.PARTIES) && Objects.equals(this.SERVICES, assetReportFreddie.SERVICES); } @Override public int hashCode() { return Objects.hash(LOANS, PARTIES, SERVICES); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetReportFreddie {\n"); sb.append(" LOANS: ").append(toIndentedString(LOANS)).append("\n"); sb.append(" PARTIES: ").append(toIndentedString(PARTIES)).append("\n"); sb.append(" SERVICES: ").append(toIndentedString(SERVICES)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorTokenWebhookUpdate.java
src/main/java/com/plaid/client/model/ProcessorTokenWebhookUpdate.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.PlaidError; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when a processor updates the webhook URL for a processor token via &#x60;/processor/token/webhook/update&#x60;. */ @ApiModel(description = "This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when a processor updates the webhook URL for a processor token via `/processor/token/webhook/update`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorTokenWebhookUpdate { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private PlaidError error; public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_NEW_WEBHOOK_URL = "new_webhook_url"; @SerializedName(SERIALIZED_NAME_NEW_WEBHOOK_URL) private String newWebhookUrl; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public ProcessorTokenWebhookUpdate webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;PROCESSOR_TOKEN&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`PROCESSOR_TOKEN`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public ProcessorTokenWebhookUpdate webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;WEBHOOK_UPDATE_ACKNOWLEDGED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`WEBHOOK_UPDATE_ACKNOWLEDGED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public ProcessorTokenWebhookUpdate error(PlaidError error) { this.error = error; return this; } /** * Get error * @return error **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PlaidError getError() { return error; } public void setError(PlaidError error) { this.error = error; } public ProcessorTokenWebhookUpdate accountId(String accountId) { this.accountId = accountId; return this; } /** * The ID of the account. * @return accountId **/ @ApiModelProperty(required = true, value = "The ID of the account.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public ProcessorTokenWebhookUpdate newWebhookUrl(String newWebhookUrl) { this.newWebhookUrl = newWebhookUrl; return this; } /** * The new webhook URL. * @return newWebhookUrl **/ @ApiModelProperty(required = true, value = "The new webhook URL.") public String getNewWebhookUrl() { return newWebhookUrl; } public void setNewWebhookUrl(String newWebhookUrl) { this.newWebhookUrl = newWebhookUrl; } public ProcessorTokenWebhookUpdate 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; } ProcessorTokenWebhookUpdate processorTokenWebhookUpdate = (ProcessorTokenWebhookUpdate) o; return Objects.equals(this.webhookType, processorTokenWebhookUpdate.webhookType) && Objects.equals(this.webhookCode, processorTokenWebhookUpdate.webhookCode) && Objects.equals(this.error, processorTokenWebhookUpdate.error) && Objects.equals(this.accountId, processorTokenWebhookUpdate.accountId) && Objects.equals(this.newWebhookUrl, processorTokenWebhookUpdate.newWebhookUrl) && Objects.equals(this.environment, processorTokenWebhookUpdate.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, error, accountId, newWebhookUrl, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorTokenWebhookUpdate {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" error: ").append(toIndentedString(error)).append("\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" newWebhookUrl: ").append(toIndentedString(newWebhookUrl)).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/TransferLedgerEventListRequest.java
src/main/java/com/plaid/client/model/TransferLedgerEventListRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.LedgerEventSourceType; 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/ledger/event/list&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/ledger/event/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferLedgerEventListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; 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_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_LEDGER_ID = "ledger_id"; @SerializedName(SERIALIZED_NAME_LEDGER_ID) private String ledgerId; public static final String SERIALIZED_NAME_LEDGER_EVENT_ID = "ledger_event_id"; @SerializedName(SERIALIZED_NAME_LEDGER_EVENT_ID) private String ledgerEventId; public static final String SERIALIZED_NAME_SOURCE_TYPE = "source_type"; @SerializedName(SERIALIZED_NAME_SOURCE_TYPE) private LedgerEventSourceType sourceType; public static final String SERIALIZED_NAME_SOURCE_ID = "source_id"; @SerializedName(SERIALIZED_NAME_SOURCE_ID) private String sourceId; 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 TransferLedgerEventListRequest 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 TransferLedgerEventListRequest originatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; return this; } /** * Filter transfer events to only those with the specified originator client. (This field is specifically for resellers. Caller&#39;s client ID will be used if this field is not specified.) * @return originatorClientId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Filter transfer events to only those with the specified originator client. (This field is specifically for resellers. Caller's client ID will be used if this field is not specified.)") public String getOriginatorClientId() { return originatorClientId; } public void setOriginatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; } public TransferLedgerEventListRequest 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 TransferLedgerEventListRequest startDate(OffsetDateTime startDate) { this.startDate = startDate; return this; } /** * The start created datetime of transfers to list. This should be in RFC 3339 format (i.e. 2019-12-06T22:35:49Z) * @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 TransferLedgerEventListRequest endDate(OffsetDateTime endDate) { this.endDate = endDate; return this; } /** * The end created datetime of transfers to list. This should be in RFC 3339 format (i.e. 2019-12-06T22:35:49Z) * @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 TransferLedgerEventListRequest ledgerId(String ledgerId) { this.ledgerId = ledgerId; return this; } /** * Plaid&#39;s unique identifier for a Plaid Ledger Balance. * @return ledgerId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Plaid's unique identifier for a Plaid Ledger Balance.") public String getLedgerId() { return ledgerId; } public void setLedgerId(String ledgerId) { this.ledgerId = ledgerId; } public TransferLedgerEventListRequest ledgerEventId(String ledgerEventId) { this.ledgerEventId = ledgerEventId; return this; } /** * Plaid&#39;s unique identifier for the ledger event. * @return ledgerEventId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Plaid's unique identifier for the ledger event.") public String getLedgerEventId() { return ledgerEventId; } public void setLedgerEventId(String ledgerEventId) { this.ledgerEventId = ledgerEventId; } public TransferLedgerEventListRequest sourceType(LedgerEventSourceType sourceType) { this.sourceType = sourceType; return this; } /** * Get sourceType * @return sourceType **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public LedgerEventSourceType getSourceType() { return sourceType; } public void setSourceType(LedgerEventSourceType sourceType) { this.sourceType = sourceType; } public TransferLedgerEventListRequest sourceId(String sourceId) { this.sourceId = sourceId; return this; } /** * Plaid&#39;s unique identifier for a transfer, sweep, or refund. * @return sourceId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Plaid's unique identifier for a transfer, sweep, or refund.") public String getSourceId() { return sourceId; } public void setSourceId(String sourceId) { this.sourceId = sourceId; } public TransferLedgerEventListRequest count(Integer count) { this.count = count; return this; } /** * The maximum number of transfer events to return. If the number of events matching the above parameters is greater than &#x60;count&#x60;, the most recent events will be returned. * minimum: 1 * maximum: 25 * @return count **/ @javax.annotation.Nullable @ApiModelProperty(value = "The maximum number of transfer events to return. If the number of events matching the above parameters is greater than `count`, the most recent events will be returned.") public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } public TransferLedgerEventListRequest offset(Integer offset) { this.offset = offset; return this; } /** * The offset into the list of transfer events. When &#x60;count&#x60;&#x3D;25 and &#x60;offset&#x60;&#x3D;0, the first 25 events will be returned. When &#x60;count&#x60;&#x3D;25 and &#x60;offset&#x60;&#x3D;25, the next 25 events will be returned. * minimum: 0 * @return offset **/ @javax.annotation.Nullable @ApiModelProperty(value = "The offset into the list of transfer events. When `count`=25 and `offset`=0, the first 25 events will be returned. When `count`=25 and `offset`=25, the next 25 events will be returned.") public Integer getOffset() { return offset; } public void setOffset(Integer offset) { this.offset = offset; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferLedgerEventListRequest transferLedgerEventListRequest = (TransferLedgerEventListRequest) o; return Objects.equals(this.clientId, transferLedgerEventListRequest.clientId) && Objects.equals(this.originatorClientId, transferLedgerEventListRequest.originatorClientId) && Objects.equals(this.secret, transferLedgerEventListRequest.secret) && Objects.equals(this.startDate, transferLedgerEventListRequest.startDate) && Objects.equals(this.endDate, transferLedgerEventListRequest.endDate) && Objects.equals(this.ledgerId, transferLedgerEventListRequest.ledgerId) && Objects.equals(this.ledgerEventId, transferLedgerEventListRequest.ledgerEventId) && Objects.equals(this.sourceType, transferLedgerEventListRequest.sourceType) && Objects.equals(this.sourceId, transferLedgerEventListRequest.sourceId) && Objects.equals(this.count, transferLedgerEventListRequest.count) && Objects.equals(this.offset, transferLedgerEventListRequest.offset); } @Override public int hashCode() { return Objects.hash(clientId, originatorClientId, secret, startDate, endDate, ledgerId, ledgerEventId, sourceType, sourceId, count, offset); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferLedgerEventListRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" originatorClientId: ").append(toIndentedString(originatorClientId)).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(" ledgerId: ").append(toIndentedString(ledgerId)).append("\n"); sb.append(" ledgerEventId: ").append(toIndentedString(ledgerEventId)).append("\n"); sb.append(" sourceType: ").append(toIndentedString(sourceType)).append("\n"); sb.append(" sourceId: ").append(toIndentedString(sourceId)).append("\n"); sb.append(" count: ").append(toIndentedString(count)).append("\n"); sb.append(" offset: ").append(toIndentedString(offset)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IncomeBreakdown.java
src/main/java/com/plaid/client/model/IncomeBreakdown.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.IncomeBreakdownType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.math.BigDecimal; /** * An object representing a breakdown of the different income types on the paystub. */ @ApiModel(description = "An object representing a breakdown of the different income types on the paystub.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IncomeBreakdown { public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private IncomeBreakdownType type; public static final String SERIALIZED_NAME_RATE = "rate"; @SerializedName(SERIALIZED_NAME_RATE) private Double rate; public static final String SERIALIZED_NAME_HOURS = "hours"; @SerializedName(SERIALIZED_NAME_HOURS) private Double hours; public static final String SERIALIZED_NAME_TOTAL = "total"; @SerializedName(SERIALIZED_NAME_TOTAL) private Double total; public IncomeBreakdown type(IncomeBreakdownType type) { this.type = type; return this; } /** * Get type * @return type **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public IncomeBreakdownType getType() { return type; } public void setType(IncomeBreakdownType type) { this.type = type; } public IncomeBreakdown rate(Double rate) { this.rate = rate; return this; } /** * The hourly rate at which the income is paid. * @return rate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The hourly rate at which the income is paid.") public Double getRate() { return rate; } public void setRate(Double rate) { this.rate = rate; } public IncomeBreakdown hours(Double hours) { this.hours = hours; return this; } /** * The number of hours logged for this income for this pay period. * @return hours **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The number of hours logged for this income for this pay period.") public Double getHours() { return hours; } public void setHours(Double hours) { this.hours = hours; } public IncomeBreakdown total(Double total) { this.total = total; return this; } /** * The total pay for this pay period. * @return total **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The total pay for this pay period.") public Double getTotal() { return total; } public void setTotal(Double total) { this.total = total; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IncomeBreakdown incomeBreakdown = (IncomeBreakdown) o; return Objects.equals(this.type, incomeBreakdown.type) && Objects.equals(this.rate, incomeBreakdown.rate) && Objects.equals(this.hours, incomeBreakdown.hours) && Objects.equals(this.total, incomeBreakdown.total); } @Override public int hashCode() { return Objects.hash(type, rate, hours, total); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IncomeBreakdown {\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" rate: ").append(toIndentedString(rate)).append("\n"); sb.append(" hours: ").append(toIndentedString(hours)).append("\n"); sb.append(" total: ").append(toIndentedString(total)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/UserFinancialDataRefreshRequest.java
src/main/java/com/plaid/client/model/UserFinancialDataRefreshRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * UserFinancialDataRefreshRequest defines the request schema for &#x60;user/financial_data/refresh&#x60; */ @ApiModel(description = "UserFinancialDataRefreshRequest defines the request schema for `user/financial_data/refresh`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class UserFinancialDataRefreshRequest { 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 UserFinancialDataRefreshRequest 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 UserFinancialDataRefreshRequest 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 UserFinancialDataRefreshRequest 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; } UserFinancialDataRefreshRequest userFinancialDataRefreshRequest = (UserFinancialDataRefreshRequest) o; return Objects.equals(this.userId, userFinancialDataRefreshRequest.userId) && Objects.equals(this.clientId, userFinancialDataRefreshRequest.clientId) && Objects.equals(this.secret, userFinancialDataRefreshRequest.secret); } @Override public int hashCode() { return Objects.hash(userId, clientId, secret); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class UserFinancialDataRefreshRequest {\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/BankTransferListResponse.java
src/main/java/com/plaid/client/model/BankTransferListResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.BankTransfer; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Defines the response schema for &#x60;/bank_transfer/list&#x60; */ @ApiModel(description = "Defines the response schema for `/bank_transfer/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BankTransferListResponse { public static final String SERIALIZED_NAME_BANK_TRANSFERS = "bank_transfers"; @SerializedName(SERIALIZED_NAME_BANK_TRANSFERS) private List<BankTransfer> bankTransfers = new ArrayList<>(); public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public BankTransferListResponse bankTransfers(List<BankTransfer> bankTransfers) { this.bankTransfers = bankTransfers; return this; } public BankTransferListResponse addBankTransfersItem(BankTransfer bankTransfersItem) { this.bankTransfers.add(bankTransfersItem); return this; } /** * Get bankTransfers * @return bankTransfers **/ @ApiModelProperty(required = true, value = "") public List<BankTransfer> getBankTransfers() { return bankTransfers; } public void setBankTransfers(List<BankTransfer> bankTransfers) { this.bankTransfers = bankTransfers; } public BankTransferListResponse 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; } BankTransferListResponse bankTransferListResponse = (BankTransferListResponse) o; return Objects.equals(this.bankTransfers, bankTransferListResponse.bankTransfers) && Objects.equals(this.requestId, bankTransferListResponse.requestId); } @Override public int hashCode() { return Objects.hash(bankTransfers, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BankTransferListResponse {\n"); sb.append(" bankTransfers: ").append(toIndentedString(bankTransfers)).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/BetaPartnerCustomerV1CreateRequest.java
src/main/java/com/plaid/client/model/BetaPartnerCustomerV1CreateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.PartnerEndCustomerAddress; import com.plaid.client.model.PartnerEndCustomerBankAddendumAcceptance; import com.plaid.client.model.PartnerEndCustomerBillingContact; import com.plaid.client.model.PartnerEndCustomerCustomerSupportInfo; import com.plaid.client.model.PartnerEndCustomerQuestionnaires; import com.plaid.client.model.PartnerEndCustomerTechnicalContact; import com.plaid.client.model.Products; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Request schema for &#x60;/beta/partner/customer/v1/create&#x60;. */ @ApiModel(description = "Request schema for `/beta/partner/customer/v1/create`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BetaPartnerCustomerV1CreateRequest { 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_COMPANY_NAME = "company_name"; @SerializedName(SERIALIZED_NAME_COMPANY_NAME) private String companyName; public static final String SERIALIZED_NAME_IS_DILIGENCE_ATTESTED = "is_diligence_attested"; @SerializedName(SERIALIZED_NAME_IS_DILIGENCE_ATTESTED) private Boolean isDiligenceAttested; public static final String SERIALIZED_NAME_PRODUCTS = "products"; @SerializedName(SERIALIZED_NAME_PRODUCTS) private List<Products> products = null; public static final String SERIALIZED_NAME_CREATE_LINK_CUSTOMIZATION = "create_link_customization"; @SerializedName(SERIALIZED_NAME_CREATE_LINK_CUSTOMIZATION) private Boolean createLinkCustomization; public static final String SERIALIZED_NAME_LOGO = "logo"; @SerializedName(SERIALIZED_NAME_LOGO) private String logo; public static final String SERIALIZED_NAME_LEGAL_ENTITY_NAME = "legal_entity_name"; @SerializedName(SERIALIZED_NAME_LEGAL_ENTITY_NAME) private String legalEntityName; public static final String SERIALIZED_NAME_WEBSITE = "website"; @SerializedName(SERIALIZED_NAME_WEBSITE) private String website; public static final String SERIALIZED_NAME_APPLICATION_NAME = "application_name"; @SerializedName(SERIALIZED_NAME_APPLICATION_NAME) private String applicationName; public static final String SERIALIZED_NAME_TECHNICAL_CONTACT = "technical_contact"; @SerializedName(SERIALIZED_NAME_TECHNICAL_CONTACT) private PartnerEndCustomerTechnicalContact technicalContact; public static final String SERIALIZED_NAME_BILLING_CONTACT = "billing_contact"; @SerializedName(SERIALIZED_NAME_BILLING_CONTACT) private PartnerEndCustomerBillingContact billingContact; public static final String SERIALIZED_NAME_CUSTOMER_SUPPORT_INFO = "customer_support_info"; @SerializedName(SERIALIZED_NAME_CUSTOMER_SUPPORT_INFO) private PartnerEndCustomerCustomerSupportInfo customerSupportInfo; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private PartnerEndCustomerAddress address; public static final String SERIALIZED_NAME_REDIRECT_URIS = "redirect_uris"; @SerializedName(SERIALIZED_NAME_REDIRECT_URIS) private List<String> redirectUris = null; public static final String SERIALIZED_NAME_BANK_ADDENDUM_ACCEPTANCE = "bank_addendum_acceptance"; @SerializedName(SERIALIZED_NAME_BANK_ADDENDUM_ACCEPTANCE) private PartnerEndCustomerBankAddendumAcceptance bankAddendumAcceptance; public static final String SERIALIZED_NAME_QUESTIONNAIRES = "questionnaires"; @SerializedName(SERIALIZED_NAME_QUESTIONNAIRES) private PartnerEndCustomerQuestionnaires questionnaires; public BetaPartnerCustomerV1CreateRequest 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 BetaPartnerCustomerV1CreateRequest 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 BetaPartnerCustomerV1CreateRequest companyName(String companyName) { this.companyName = companyName; return this; } /** * The company name of the end customer being created. This will be used to display the end customer in the Plaid Dashboard. It will not be shown to end users. * @return companyName **/ @ApiModelProperty(required = true, value = "The company name of the end customer being created. This will be used to display the end customer in the Plaid Dashboard. It will not be shown to end users.") public String getCompanyName() { return companyName; } public void setCompanyName(String companyName) { this.companyName = companyName; } public BetaPartnerCustomerV1CreateRequest isDiligenceAttested(Boolean isDiligenceAttested) { this.isDiligenceAttested = isDiligenceAttested; return this; } /** * Denotes whether or not the partner has completed attestation of diligence for the end customer to be created. * @return isDiligenceAttested **/ @javax.annotation.Nullable @ApiModelProperty(value = "Denotes whether or not the partner has completed attestation of diligence for the end customer to be created.") public Boolean getIsDiligenceAttested() { return isDiligenceAttested; } public void setIsDiligenceAttested(Boolean isDiligenceAttested) { this.isDiligenceAttested = isDiligenceAttested; } public BetaPartnerCustomerV1CreateRequest products(List<Products> products) { this.products = products; return this; } public BetaPartnerCustomerV1CreateRequest addProductsItem(Products productsItem) { if (this.products == null) { this.products = new ArrayList<>(); } this.products.add(productsItem); return this; } /** * The products to be enabled for the end customer. If empty or &#x60;null&#x60;, this field will default to the products enabled for the reseller at the time this endpoint is called. * @return products **/ @javax.annotation.Nullable @ApiModelProperty(value = "The products to be enabled for the end customer. If empty or `null`, this field will default to the products enabled for the reseller at the time this endpoint is called.") public List<Products> getProducts() { return products; } public void setProducts(List<Products> products) { this.products = products; } public BetaPartnerCustomerV1CreateRequest createLinkCustomization(Boolean createLinkCustomization) { this.createLinkCustomization = createLinkCustomization; return this; } /** * If &#x60;true&#x60;, the end customer&#39;s default Link customization will be set to match the partner&#39;s. You can always change the end customer&#39;s Link customization in the Plaid Dashboard. See the [Link Customization docs](https://plaid.com/docs/link/customization/) for more information. If you require the ability to programmatically create end customers using multiple different Link customization profiles, contact your Plaid Account Manager for assistance. Important: Data Transparency Messaging (DTM) use cases will not be copied to the end customer&#39;s Link customization unless the **Publish changes** button is clicked after the use cases are applied. Link will not work in Production unless the end customer&#39;s DTM use cases are configured. For more details, see [Data Transparency Messaging](https://plaid.com/docs/link/data-transparency-messaging-migration-guide/). * @return createLinkCustomization **/ @javax.annotation.Nullable @ApiModelProperty(value = "If `true`, the end customer's default Link customization will be set to match the partner's. You can always change the end customer's Link customization in the Plaid Dashboard. See the [Link Customization docs](https://plaid.com/docs/link/customization/) for more information. If you require the ability to programmatically create end customers using multiple different Link customization profiles, contact your Plaid Account Manager for assistance. Important: Data Transparency Messaging (DTM) use cases will not be copied to the end customer's Link customization unless the **Publish changes** button is clicked after the use cases are applied. Link will not work in Production unless the end customer's DTM use cases are configured. For more details, see [Data Transparency Messaging](https://plaid.com/docs/link/data-transparency-messaging-migration-guide/).") public Boolean getCreateLinkCustomization() { return createLinkCustomization; } public void setCreateLinkCustomization(Boolean createLinkCustomization) { this.createLinkCustomization = createLinkCustomization; } public BetaPartnerCustomerV1CreateRequest logo(String logo) { this.logo = logo; return this; } /** * Base64-encoded representation of the end customer&#39;s logo. Must be a PNG of size 1024x1024 under 4MB. The logo will be shared with financial institutions and shown to the end user during Link flows. A logo is required if &#x60;create_link_customization&#x60; is &#x60;true&#x60;. If &#x60;create_link_customization&#x60; is &#x60;false&#x60; and the logo is omitted, the partner&#39;s logo will be used if one exists, otherwise a stock logo will be used. * @return logo **/ @javax.annotation.Nullable @ApiModelProperty(value = "Base64-encoded representation of the end customer's logo. Must be a PNG of size 1024x1024 under 4MB. The logo will be shared with financial institutions and shown to the end user during Link flows. A logo is required if `create_link_customization` is `true`. If `create_link_customization` is `false` and the logo is omitted, the partner's logo will be used if one exists, otherwise a stock logo will be used.") public String getLogo() { return logo; } public void setLogo(String logo) { this.logo = logo; } public BetaPartnerCustomerV1CreateRequest legalEntityName(String legalEntityName) { this.legalEntityName = legalEntityName; return this; } /** * The end customer&#39;s legal name. This will be shared with financial institutions as part of the OAuth registration process. It will not be shown to end users. * @return legalEntityName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The end customer's legal name. This will be shared with financial institutions as part of the OAuth registration process. It will not be shown to end users.") public String getLegalEntityName() { return legalEntityName; } public void setLegalEntityName(String legalEntityName) { this.legalEntityName = legalEntityName; } public BetaPartnerCustomerV1CreateRequest website(String website) { this.website = website; return this; } /** * The end customer&#39;s website. * @return website **/ @ApiModelProperty(required = true, value = "The end customer's website.") public String getWebsite() { return website; } public void setWebsite(String website) { this.website = website; } public BetaPartnerCustomerV1CreateRequest applicationName(String applicationName) { this.applicationName = applicationName; return this; } /** * The name of the end customer&#39;s application. This will be shown to end users when they go through the Plaid Link flow. The application name must be unique and cannot match the name of another application already registered with Plaid. * @return applicationName **/ @ApiModelProperty(required = true, value = "The name of the end customer's application. This will be shown to end users when they go through the Plaid Link flow. The application name must be unique and cannot match the name of another application already registered with Plaid.") public String getApplicationName() { return applicationName; } public void setApplicationName(String applicationName) { this.applicationName = applicationName; } public BetaPartnerCustomerV1CreateRequest technicalContact(PartnerEndCustomerTechnicalContact technicalContact) { this.technicalContact = technicalContact; return this; } /** * Get technicalContact * @return technicalContact **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PartnerEndCustomerTechnicalContact getTechnicalContact() { return technicalContact; } public void setTechnicalContact(PartnerEndCustomerTechnicalContact technicalContact) { this.technicalContact = technicalContact; } public BetaPartnerCustomerV1CreateRequest billingContact(PartnerEndCustomerBillingContact billingContact) { this.billingContact = billingContact; return this; } /** * Get billingContact * @return billingContact **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PartnerEndCustomerBillingContact getBillingContact() { return billingContact; } public void setBillingContact(PartnerEndCustomerBillingContact billingContact) { this.billingContact = billingContact; } public BetaPartnerCustomerV1CreateRequest customerSupportInfo(PartnerEndCustomerCustomerSupportInfo customerSupportInfo) { this.customerSupportInfo = customerSupportInfo; return this; } /** * Get customerSupportInfo * @return customerSupportInfo **/ @ApiModelProperty(required = true, value = "") public PartnerEndCustomerCustomerSupportInfo getCustomerSupportInfo() { return customerSupportInfo; } public void setCustomerSupportInfo(PartnerEndCustomerCustomerSupportInfo customerSupportInfo) { this.customerSupportInfo = customerSupportInfo; } public BetaPartnerCustomerV1CreateRequest address(PartnerEndCustomerAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @ApiModelProperty(required = true, value = "") public PartnerEndCustomerAddress getAddress() { return address; } public void setAddress(PartnerEndCustomerAddress address) { this.address = address; } public BetaPartnerCustomerV1CreateRequest redirectUris(List<String> redirectUris) { this.redirectUris = redirectUris; return this; } public BetaPartnerCustomerV1CreateRequest addRedirectUrisItem(String redirectUrisItem) { if (this.redirectUris == null) { this.redirectUris = new ArrayList<>(); } this.redirectUris.add(redirectUrisItem); return this; } /** * A list of URIs indicating the destination(s) where a user can be forwarded after completing the Link flow; used to support OAuth authentication flows when launching Link in the browser or another app. URIs should not contain any query parameters. When used in Production, URIs must use https. To specify any subdomain, use &#x60;*&#x60; as a wildcard character, e.g. &#x60;https://_*.example.com/oauth.html&#x60;. To modify redirect URIs for an end customer after creating them, go to the end customer&#39;s [API page](https://dashboard.plaid.com/team/api) in the Dashboard. * @return redirectUris **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of URIs indicating the destination(s) where a user can be forwarded after completing the Link flow; used to support OAuth authentication flows when launching Link in the browser or another app. URIs should not contain any query parameters. When used in Production, URIs must use https. To specify any subdomain, use `*` as a wildcard character, e.g. `https://_*.example.com/oauth.html`. To modify redirect URIs for an end customer after creating them, go to the end customer's [API page](https://dashboard.plaid.com/team/api) in the Dashboard.") public List<String> getRedirectUris() { return redirectUris; } public void setRedirectUris(List<String> redirectUris) { this.redirectUris = redirectUris; } public BetaPartnerCustomerV1CreateRequest bankAddendumAcceptance(PartnerEndCustomerBankAddendumAcceptance bankAddendumAcceptance) { this.bankAddendumAcceptance = bankAddendumAcceptance; return this; } /** * Get bankAddendumAcceptance * @return bankAddendumAcceptance **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PartnerEndCustomerBankAddendumAcceptance getBankAddendumAcceptance() { return bankAddendumAcceptance; } public void setBankAddendumAcceptance(PartnerEndCustomerBankAddendumAcceptance bankAddendumAcceptance) { this.bankAddendumAcceptance = bankAddendumAcceptance; } public BetaPartnerCustomerV1CreateRequest questionnaires(PartnerEndCustomerQuestionnaires questionnaires) { this.questionnaires = questionnaires; return this; } /** * Get questionnaires * @return questionnaires **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PartnerEndCustomerQuestionnaires getQuestionnaires() { return questionnaires; } public void setQuestionnaires(PartnerEndCustomerQuestionnaires questionnaires) { this.questionnaires = questionnaires; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BetaPartnerCustomerV1CreateRequest betaPartnerCustomerV1CreateRequest = (BetaPartnerCustomerV1CreateRequest) o; return Objects.equals(this.clientId, betaPartnerCustomerV1CreateRequest.clientId) && Objects.equals(this.secret, betaPartnerCustomerV1CreateRequest.secret) && Objects.equals(this.companyName, betaPartnerCustomerV1CreateRequest.companyName) && Objects.equals(this.isDiligenceAttested, betaPartnerCustomerV1CreateRequest.isDiligenceAttested) && Objects.equals(this.products, betaPartnerCustomerV1CreateRequest.products) && Objects.equals(this.createLinkCustomization, betaPartnerCustomerV1CreateRequest.createLinkCustomization) && Objects.equals(this.logo, betaPartnerCustomerV1CreateRequest.logo) && Objects.equals(this.legalEntityName, betaPartnerCustomerV1CreateRequest.legalEntityName) && Objects.equals(this.website, betaPartnerCustomerV1CreateRequest.website) && Objects.equals(this.applicationName, betaPartnerCustomerV1CreateRequest.applicationName) && Objects.equals(this.technicalContact, betaPartnerCustomerV1CreateRequest.technicalContact) && Objects.equals(this.billingContact, betaPartnerCustomerV1CreateRequest.billingContact) && Objects.equals(this.customerSupportInfo, betaPartnerCustomerV1CreateRequest.customerSupportInfo) && Objects.equals(this.address, betaPartnerCustomerV1CreateRequest.address) && Objects.equals(this.redirectUris, betaPartnerCustomerV1CreateRequest.redirectUris) && Objects.equals(this.bankAddendumAcceptance, betaPartnerCustomerV1CreateRequest.bankAddendumAcceptance) && Objects.equals(this.questionnaires, betaPartnerCustomerV1CreateRequest.questionnaires); } @Override public int hashCode() { return Objects.hash(clientId, secret, companyName, isDiligenceAttested, products, createLinkCustomization, logo, legalEntityName, website, applicationName, technicalContact, billingContact, customerSupportInfo, address, redirectUris, bankAddendumAcceptance, questionnaires); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BetaPartnerCustomerV1CreateRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" companyName: ").append(toIndentedString(companyName)).append("\n"); sb.append(" isDiligenceAttested: ").append(toIndentedString(isDiligenceAttested)).append("\n"); sb.append(" products: ").append(toIndentedString(products)).append("\n"); sb.append(" createLinkCustomization: ").append(toIndentedString(createLinkCustomization)).append("\n"); sb.append(" logo: ").append(toIndentedString(logo)).append("\n"); sb.append(" legalEntityName: ").append(toIndentedString(legalEntityName)).append("\n"); sb.append(" website: ").append(toIndentedString(website)).append("\n"); sb.append(" applicationName: ").append(toIndentedString(applicationName)).append("\n"); sb.append(" technicalContact: ").append(toIndentedString(technicalContact)).append("\n"); sb.append(" billingContact: ").append(toIndentedString(billingContact)).append("\n"); sb.append(" customerSupportInfo: ").append(toIndentedString(customerSupportInfo)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" redirectUris: ").append(toIndentedString(redirectUris)).append("\n"); sb.append(" bankAddendumAcceptance: ").append(toIndentedString(bankAddendumAcceptance)).append("\n"); sb.append(" questionnaires: ").append(toIndentedString(questionnaires)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetReportCreateRequestOptions.java
src/main/java/com/plaid/client/model/AssetReportCreateRequestOptions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AssetReportAddOns; import com.plaid.client.model.AssetReportUser; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * An optional object to filter &#x60;/asset_report/create&#x60; results. If provided, must be non-&#x60;null&#x60;. The optional &#x60;user&#x60; object is required for the report to be eligible for Fannie Mae&#39;s Day 1 Certainty program. */ @ApiModel(description = "An optional object to filter `/asset_report/create` results. If provided, must be non-`null`. The optional `user` object is required for the report to be eligible for Fannie Mae's Day 1 Certainty program.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AssetReportCreateRequestOptions { public static final String SERIALIZED_NAME_CLIENT_REPORT_ID = "client_report_id"; @SerializedName(SERIALIZED_NAME_CLIENT_REPORT_ID) private String clientReportId; public static final String SERIALIZED_NAME_WEBHOOK = "webhook"; @SerializedName(SERIALIZED_NAME_WEBHOOK) private String webhook; public static final String SERIALIZED_NAME_INCLUDE_FAST_REPORT = "include_fast_report"; @SerializedName(SERIALIZED_NAME_INCLUDE_FAST_REPORT) private Boolean includeFastReport; public static final String SERIALIZED_NAME_PRODUCTS = "products"; @SerializedName(SERIALIZED_NAME_PRODUCTS) private List<String> products = null; public static final String SERIALIZED_NAME_ADD_ONS = "add_ons"; @SerializedName(SERIALIZED_NAME_ADD_ONS) private List<AssetReportAddOns> addOns = null; public static final String SERIALIZED_NAME_USER = "user"; @SerializedName(SERIALIZED_NAME_USER) private AssetReportUser user; public static final String SERIALIZED_NAME_REQUIRE_ALL_ITEMS = "require_all_items"; @SerializedName(SERIALIZED_NAME_REQUIRE_ALL_ITEMS) private Boolean requireAllItems = true; public AssetReportCreateRequestOptions clientReportId(String clientReportId) { this.clientReportId = clientReportId; return this; } /** * Client-generated identifier, which can be used by lenders to track loan applications. * @return clientReportId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Client-generated identifier, which can be used by lenders to track loan applications.") public String getClientReportId() { return clientReportId; } public void setClientReportId(String clientReportId) { this.clientReportId = clientReportId; } public AssetReportCreateRequestOptions webhook(String webhook) { this.webhook = webhook; return this; } /** * URL to which Plaid will send Assets webhooks, for example when the requested Asset Report is ready. * @return webhook **/ @javax.annotation.Nullable @ApiModelProperty(value = "URL to which Plaid will send Assets webhooks, for example when the requested Asset Report is ready.") public String getWebhook() { return webhook; } public void setWebhook(String webhook) { this.webhook = webhook; } public AssetReportCreateRequestOptions includeFastReport(Boolean includeFastReport) { this.includeFastReport = includeFastReport; return this; } /** * true to return balance and identity earlier as a fast report. Defaults to false if omitted. * @return includeFastReport **/ @javax.annotation.Nullable @ApiModelProperty(value = "true to return balance and identity earlier as a fast report. Defaults to false if omitted.") public Boolean getIncludeFastReport() { return includeFastReport; } public void setIncludeFastReport(Boolean includeFastReport) { this.includeFastReport = includeFastReport; } public AssetReportCreateRequestOptions products(List<String> products) { this.products = products; return this; } public AssetReportCreateRequestOptions addProductsItem(String productsItem) { if (this.products == null) { this.products = new ArrayList<>(); } this.products.add(productsItem); return this; } /** * Additional information that can be included in the asset report. Possible values: &#x60;\&quot;investments\&quot;&#x60; * @return products **/ @javax.annotation.Nullable @ApiModelProperty(value = "Additional information that can be included in the asset report. Possible values: `\"investments\"`") public List<String> getProducts() { return products; } public void setProducts(List<String> products) { this.products = products; } public AssetReportCreateRequestOptions addOns(List<AssetReportAddOns> addOns) { this.addOns = addOns; return this; } public AssetReportCreateRequestOptions addAddOnsItem(AssetReportAddOns addOnsItem) { if (this.addOns == null) { this.addOns = new ArrayList<>(); } this.addOns.add(addOnsItem); return this; } /** * A list of add-ons that should be included in the Asset Report. When Fast Assets is requested, Plaid will create two versions of the Asset Report: the Fast Asset Report, which will contain only Identity and Balance information, and the Full Asset Report, which will also contain Transactions information. A &#x60;PRODUCT_READY&#x60; webhook will be fired for each Asset Report when it is ready, and the &#x60;report_type&#x60; field will indicate whether the webhook is firing for the &#x60;full&#x60; or &#x60;fast&#x60; Asset Report. To retrieve the Fast Asset Report, call &#x60;/asset_report/get&#x60; with &#x60;fast_report&#x60; set to &#x60;true&#x60;. There is no additional charge for using Fast Assets. To create a Fast Asset Report, Plaid must successfully retrieve both Identity and Balance data; if Plaid encounters an error obtaining this data, the Fast Asset Report will not be created. However, as long as Plaid can obtain Transactions data, the Full Asset Report will still be available. When Investments is requested, &#x60;investments&#x60; must be specified in the &#x60;optional_products&#x60; array when initializing Link. * @return addOns **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of add-ons that should be included in the Asset Report. When Fast Assets is requested, Plaid will create two versions of the Asset Report: the Fast Asset Report, which will contain only Identity and Balance information, and the Full Asset Report, which will also contain Transactions information. A `PRODUCT_READY` webhook will be fired for each Asset Report when it is ready, and the `report_type` field will indicate whether the webhook is firing for the `full` or `fast` Asset Report. To retrieve the Fast Asset Report, call `/asset_report/get` with `fast_report` set to `true`. There is no additional charge for using Fast Assets. To create a Fast Asset Report, Plaid must successfully retrieve both Identity and Balance data; if Plaid encounters an error obtaining this data, the Fast Asset Report will not be created. However, as long as Plaid can obtain Transactions data, the Full Asset Report will still be available. When Investments is requested, `investments` must be specified in the `optional_products` array when initializing Link.") public List<AssetReportAddOns> getAddOns() { return addOns; } public void setAddOns(List<AssetReportAddOns> addOns) { this.addOns = addOns; } public AssetReportCreateRequestOptions user(AssetReportUser user) { this.user = user; return this; } /** * Get user * @return user **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public AssetReportUser getUser() { return user; } public void setUser(AssetReportUser user) { this.user = user; } public AssetReportCreateRequestOptions requireAllItems(Boolean requireAllItems) { this.requireAllItems = requireAllItems; return this; } /** * If set to false, only 1 item must be healthy at the time of report creation. The default value is true, which would require all items to be healthy at the time of report creation. * @return requireAllItems **/ @javax.annotation.Nullable @ApiModelProperty(value = "If set to false, only 1 item must be healthy at the time of report creation. The default value is true, which would require all items to be healthy at the time of report creation.") public Boolean getRequireAllItems() { return requireAllItems; } public void setRequireAllItems(Boolean requireAllItems) { this.requireAllItems = requireAllItems; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AssetReportCreateRequestOptions assetReportCreateRequestOptions = (AssetReportCreateRequestOptions) o; return Objects.equals(this.clientReportId, assetReportCreateRequestOptions.clientReportId) && Objects.equals(this.webhook, assetReportCreateRequestOptions.webhook) && Objects.equals(this.includeFastReport, assetReportCreateRequestOptions.includeFastReport) && Objects.equals(this.products, assetReportCreateRequestOptions.products) && Objects.equals(this.addOns, assetReportCreateRequestOptions.addOns) && Objects.equals(this.user, assetReportCreateRequestOptions.user) && Objects.equals(this.requireAllItems, assetReportCreateRequestOptions.requireAllItems); } @Override public int hashCode() { return Objects.hash(clientReportId, webhook, includeFastReport, products, addOns, user, requireAllItems); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetReportCreateRequestOptions {\n"); sb.append(" clientReportId: ").append(toIndentedString(clientReportId)).append("\n"); sb.append(" webhook: ").append(toIndentedString(webhook)).append("\n"); sb.append(" includeFastReport: ").append(toIndentedString(includeFastReport)).append("\n"); sb.append(" products: ").append(toIndentedString(products)).append("\n"); sb.append(" addOns: ").append(toIndentedString(addOns)).append("\n"); sb.append(" user: ").append(toIndentedString(user)).append("\n"); sb.append(" requireAllItems: ").append(toIndentedString(requireAllItems)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PayPeriodDetailsPayFrequency.java
src/main/java/com/plaid/client/model/PayPeriodDetailsPayFrequency.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The frequency at which an individual is paid. */ @JsonAdapter(PayPeriodDetailsPayFrequency.Adapter.class) public enum PayPeriodDetailsPayFrequency { PAY_FREQUENCY_UNKNOWN("PAY_FREQUENCY_UNKNOWN"), PAY_FREQUENCY_WEEKLY("PAY_FREQUENCY_WEEKLY"), PAY_FREQUENCY_BIWEEKLY("PAY_FREQUENCY_BIWEEKLY"), PAY_FREQUENCY_SEMIMONTHLY("PAY_FREQUENCY_SEMIMONTHLY"), PAY_FREQUENCY_MONTHLY("PAY_FREQUENCY_MONTHLY"), NULL("null"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; PayPeriodDetailsPayFrequency(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PayPeriodDetailsPayFrequency fromValue(String value) { for (PayPeriodDetailsPayFrequency b : PayPeriodDetailsPayFrequency.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<PayPeriodDetailsPayFrequency> { @Override public void write(final JsonWriter jsonWriter, final PayPeriodDetailsPayFrequency enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PayPeriodDetailsPayFrequency read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PayPeriodDetailsPayFrequency.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/CreditBankEmploymentWarningType.java
src/main/java/com/plaid/client/model/CreditBankEmploymentWarningType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The warning type which will always be &#x60;BANK_EMPLOYMENT_WARNING&#x60;. */ @JsonAdapter(CreditBankEmploymentWarningType.Adapter.class) public enum CreditBankEmploymentWarningType { BANK_EMPLOYMENT_WARNING("BANK_EMPLOYMENT_WARNING"), // 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; CreditBankEmploymentWarningType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static CreditBankEmploymentWarningType fromValue(String value) { for (CreditBankEmploymentWarningType b : CreditBankEmploymentWarningType.values()) { if (b.value.equals(value)) { return b; } } return CreditBankEmploymentWarningType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<CreditBankEmploymentWarningType> { @Override public void write(final JsonWriter jsonWriter, final CreditBankEmploymentWarningType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public CreditBankEmploymentWarningType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return CreditBankEmploymentWarningType.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/BeaconReportListResponse.java
src/main/java/com/plaid/client/model/BeaconReportListResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.BeaconReport; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * The response schema for &#x60;/beacon/report/list&#x60; */ @ApiModel(description = "The response schema for `/beacon/report/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconReportListResponse { public static final String SERIALIZED_NAME_BEACON_REPORTS = "beacon_reports"; @SerializedName(SERIALIZED_NAME_BEACON_REPORTS) private List<BeaconReport> beaconReports = new ArrayList<>(); public static final String SERIALIZED_NAME_NEXT_CURSOR = "next_cursor"; @SerializedName(SERIALIZED_NAME_NEXT_CURSOR) private String nextCursor; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public BeaconReportListResponse beaconReports(List<BeaconReport> beaconReports) { this.beaconReports = beaconReports; return this; } public BeaconReportListResponse addBeaconReportsItem(BeaconReport beaconReportsItem) { this.beaconReports.add(beaconReportsItem); return this; } /** * Get beaconReports * @return beaconReports **/ @ApiModelProperty(required = true, value = "") public List<BeaconReport> getBeaconReports() { return beaconReports; } public void setBeaconReports(List<BeaconReport> beaconReports) { this.beaconReports = beaconReports; } public BeaconReportListResponse nextCursor(String nextCursor) { this.nextCursor = nextCursor; return this; } /** * An identifier that determines which page of results you receive. * @return nextCursor **/ @javax.annotation.Nullable @ApiModelProperty(example = "eyJkaXJlY3Rpb24iOiJuZXh0Iiwib2Zmc2V0IjoiMTU5NDM", required = true, value = "An identifier that determines which page of results you receive.") public String getNextCursor() { return nextCursor; } public void setNextCursor(String nextCursor) { this.nextCursor = nextCursor; } public BeaconReportListResponse 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; } BeaconReportListResponse beaconReportListResponse = (BeaconReportListResponse) o; return Objects.equals(this.beaconReports, beaconReportListResponse.beaconReports) && Objects.equals(this.nextCursor, beaconReportListResponse.nextCursor) && Objects.equals(this.requestId, beaconReportListResponse.requestId); } @Override public int hashCode() { return Objects.hash(beaconReports, nextCursor, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconReportListResponse {\n"); sb.append(" beaconReports: ").append(toIndentedString(beaconReports)).append("\n"); sb.append(" nextCursor: ").append(toIndentedString(nextCursor)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BeaconReportType.java
src/main/java/com/plaid/client/model/BeaconReportType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 Beacon Report. &#x60;first_party&#x60;: If this is the same individual as the one who submitted the KYC. &#x60;stolen&#x60;: If this is a different individual from the one who submitted the KYC. &#x60;synthetic&#x60;: If this is an individual using fabricated information. &#x60;account_takeover&#x60;: If this individual&#39;s account was compromised. &#x60;data_breach&#x60;: If this individual&#39;s data was compromised in a breach. &#x60;unknown&#x60;: If you aren&#39;t sure who committed the fraud. */ @JsonAdapter(BeaconReportType.Adapter.class) public enum BeaconReportType { FIRST_PARTY("first_party"), STOLEN("stolen"), SYNTHETIC("synthetic"), ACCOUNT_TAKEOVER("account_takeover"), DATA_BREACH("data_breach"), UNKNOWN("unknown"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; BeaconReportType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static BeaconReportType fromValue(String value) { for (BeaconReportType b : BeaconReportType.values()) { if (b.value.equals(value)) { return b; } } return BeaconReportType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<BeaconReportType> { @Override public void write(final JsonWriter jsonWriter, final BeaconReportType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public BeaconReportType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return BeaconReportType.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/CashFlowUpdatesInsightsWebhook.java
src/main/java/com/plaid/client/model/CashFlowUpdatesInsightsWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.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 between one and four times a day with information on the status of the update. This webhook will not fire immediately upon enrollment in Cash Flow Updates. Upon receiving the webhook, call &#x60;/cra/monitoring_insights/get&#x60; to retrieve the updated insights. At approximately the same time as the &#x60;INSIGHTS_UPDATED&#x60; webhook, any event-driven &#x60;CASH_FLOW_UPDATES&#x60; webhooks (e.g. &#x60;LOW_BALANCE_DETECTED&#x60;, &#x60;LARGE_DEPOSIT_DETECTED&#x60;) that were triggered by the update will also fire. This webhook has been replaced by the &#x60;CASH_FLOW_INSIGHTS_UPDATED&#x60; webhook for all customers who began using Plaid Check on or after December 10, 2025. */ @ApiModel(description = "For each user's Item enabled for Cash Flow Updates, this webhook will fire between one and four times a day with information on the status of the update. This webhook will not fire immediately upon enrollment in Cash Flow Updates. Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights. At approximately the same time as the `INSIGHTS_UPDATED` webhook, any event-driven `CASH_FLOW_UPDATES` webhooks (e.g. `LOW_BALANCE_DETECTED`, `LARGE_DEPOSIT_DETECTED`) that were triggered by the update will also fire. This webhook has been replaced by the `CASH_FLOW_INSIGHTS_UPDATED` webhook for all customers who began using Plaid Check on or after December 10, 2025.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CashFlowUpdatesInsightsWebhook { 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 CashFlowUpdatesInsightsWebhook 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 CashFlowUpdatesInsightsWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;INSIGHTS_UPDATED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`INSIGHTS_UPDATED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public CashFlowUpdatesInsightsWebhook 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 CashFlowUpdatesInsightsWebhook 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 CashFlowUpdatesInsightsWebhook 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; } CashFlowUpdatesInsightsWebhook cashFlowUpdatesInsightsWebhook = (CashFlowUpdatesInsightsWebhook) o; return Objects.equals(this.webhookType, cashFlowUpdatesInsightsWebhook.webhookType) && Objects.equals(this.webhookCode, cashFlowUpdatesInsightsWebhook.webhookCode) && Objects.equals(this.status, cashFlowUpdatesInsightsWebhook.status) && Objects.equals(this.userId, cashFlowUpdatesInsightsWebhook.userId) && Objects.equals(this.environment, cashFlowUpdatesInsightsWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, status, userId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CashFlowUpdatesInsightsWebhook {\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/DocumentRiskSignalsObject.java
src/main/java/com/plaid/client/model/DocumentRiskSignalsObject.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.MultiDocumentRiskSignal; import com.plaid.client.model.SingleDocumentRiskSignal; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Object containing fraud risk data for a set of income documents. */ @ApiModel(description = "Object containing fraud risk data for a set of income documents.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class DocumentRiskSignalsObject { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_SINGLE_DOCUMENT_RISK_SIGNALS = "single_document_risk_signals"; @SerializedName(SERIALIZED_NAME_SINGLE_DOCUMENT_RISK_SIGNALS) private List<SingleDocumentRiskSignal> singleDocumentRiskSignals = new ArrayList<>(); public static final String SERIALIZED_NAME_MULTI_DOCUMENT_RISK_SIGNALS = "multi_document_risk_signals"; @SerializedName(SERIALIZED_NAME_MULTI_DOCUMENT_RISK_SIGNALS) private List<MultiDocumentRiskSignal> multiDocumentRiskSignals = new ArrayList<>(); public DocumentRiskSignalsObject accountId(String accountId) { this.accountId = accountId; return this; } /** * ID of the payroll provider account. * @return accountId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "ID of the payroll provider account.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public DocumentRiskSignalsObject singleDocumentRiskSignals(List<SingleDocumentRiskSignal> singleDocumentRiskSignals) { this.singleDocumentRiskSignals = singleDocumentRiskSignals; return this; } public DocumentRiskSignalsObject addSingleDocumentRiskSignalsItem(SingleDocumentRiskSignal singleDocumentRiskSignalsItem) { this.singleDocumentRiskSignals.add(singleDocumentRiskSignalsItem); return this; } /** * Array of document metadata and associated risk signals per document * @return singleDocumentRiskSignals **/ @ApiModelProperty(required = true, value = "Array of document metadata and associated risk signals per document") public List<SingleDocumentRiskSignal> getSingleDocumentRiskSignals() { return singleDocumentRiskSignals; } public void setSingleDocumentRiskSignals(List<SingleDocumentRiskSignal> singleDocumentRiskSignals) { this.singleDocumentRiskSignals = singleDocumentRiskSignals; } public DocumentRiskSignalsObject multiDocumentRiskSignals(List<MultiDocumentRiskSignal> multiDocumentRiskSignals) { this.multiDocumentRiskSignals = multiDocumentRiskSignals; return this; } public DocumentRiskSignalsObject addMultiDocumentRiskSignalsItem(MultiDocumentRiskSignal multiDocumentRiskSignalsItem) { this.multiDocumentRiskSignals.add(multiDocumentRiskSignalsItem); return this; } /** * Array of risk signals computed from a set of uploaded documents and the associated documents&#39; metadata * @return multiDocumentRiskSignals **/ @ApiModelProperty(required = true, value = "Array of risk signals computed from a set of uploaded documents and the associated documents' metadata") public List<MultiDocumentRiskSignal> getMultiDocumentRiskSignals() { return multiDocumentRiskSignals; } public void setMultiDocumentRiskSignals(List<MultiDocumentRiskSignal> multiDocumentRiskSignals) { this.multiDocumentRiskSignals = multiDocumentRiskSignals; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } DocumentRiskSignalsObject documentRiskSignalsObject = (DocumentRiskSignalsObject) o; return Objects.equals(this.accountId, documentRiskSignalsObject.accountId) && Objects.equals(this.singleDocumentRiskSignals, documentRiskSignalsObject.singleDocumentRiskSignals) && Objects.equals(this.multiDocumentRiskSignals, documentRiskSignalsObject.multiDocumentRiskSignals); } @Override public int hashCode() { return Objects.hash(accountId, singleDocumentRiskSignals, multiDocumentRiskSignals); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class DocumentRiskSignalsObject {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" singleDocumentRiskSignals: ").append(toIndentedString(singleDocumentRiskSignals)).append("\n"); sb.append(" multiDocumentRiskSignals: ").append(toIndentedString(multiDocumentRiskSignals)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BeaconReportListRequest.java
src/main/java/com/plaid/client/model/BeaconReportListRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 Beacon Reports */ @ApiModel(description = "Request input for listing Beacon Reports") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconReportListRequest { public static final String SERIALIZED_NAME_BEACON_USER_ID = "beacon_user_id"; @SerializedName(SERIALIZED_NAME_BEACON_USER_ID) private String beaconUserId; public static final String SERIALIZED_NAME_CURSOR = "cursor"; @SerializedName(SERIALIZED_NAME_CURSOR) private String cursor; 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 BeaconReportListRequest beaconUserId(String beaconUserId) { this.beaconUserId = beaconUserId; return this; } /** * ID of the associated Beacon User. * @return beaconUserId **/ @ApiModelProperty(example = "becusr_42cF1MNo42r9Xj", required = true, value = "ID of the associated Beacon User.") public String getBeaconUserId() { return beaconUserId; } public void setBeaconUserId(String beaconUserId) { this.beaconUserId = beaconUserId; } public BeaconReportListRequest 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; } public BeaconReportListRequest 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 BeaconReportListRequest 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; } BeaconReportListRequest beaconReportListRequest = (BeaconReportListRequest) o; return Objects.equals(this.beaconUserId, beaconReportListRequest.beaconUserId) && Objects.equals(this.cursor, beaconReportListRequest.cursor) && Objects.equals(this.clientId, beaconReportListRequest.clientId) && Objects.equals(this.secret, beaconReportListRequest.secret); } @Override public int hashCode() { return Objects.hash(beaconUserId, cursor, clientId, secret); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconReportListRequest {\n"); sb.append(" beaconUserId: ").append(toIndentedString(beaconUserId)).append("\n"); sb.append(" cursor: ").append(toIndentedString(cursor)).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/WatchlistScreeningEntityReviewListResponse.java
src/main/java/com/plaid/client/model/WatchlistScreeningEntityReviewListResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.EntityWatchlistScreeningReview; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Paginated list of entity watchlist screening reviews */ @ApiModel(description = "Paginated list of entity watchlist screening reviews") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WatchlistScreeningEntityReviewListResponse { public static final String SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENING_REVIEWS = "entity_watchlist_screening_reviews"; @SerializedName(SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENING_REVIEWS) private List<EntityWatchlistScreeningReview> entityWatchlistScreeningReviews = new ArrayList<>(); public static final String SERIALIZED_NAME_NEXT_CURSOR = "next_cursor"; @SerializedName(SERIALIZED_NAME_NEXT_CURSOR) private String nextCursor; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public WatchlistScreeningEntityReviewListResponse entityWatchlistScreeningReviews(List<EntityWatchlistScreeningReview> entityWatchlistScreeningReviews) { this.entityWatchlistScreeningReviews = entityWatchlistScreeningReviews; return this; } public WatchlistScreeningEntityReviewListResponse addEntityWatchlistScreeningReviewsItem(EntityWatchlistScreeningReview entityWatchlistScreeningReviewsItem) { this.entityWatchlistScreeningReviews.add(entityWatchlistScreeningReviewsItem); return this; } /** * List of entity watchlist screening reviews * @return entityWatchlistScreeningReviews **/ @ApiModelProperty(required = true, value = "List of entity watchlist screening reviews") public List<EntityWatchlistScreeningReview> getEntityWatchlistScreeningReviews() { return entityWatchlistScreeningReviews; } public void setEntityWatchlistScreeningReviews(List<EntityWatchlistScreeningReview> entityWatchlistScreeningReviews) { this.entityWatchlistScreeningReviews = entityWatchlistScreeningReviews; } public WatchlistScreeningEntityReviewListResponse nextCursor(String nextCursor) { this.nextCursor = nextCursor; return this; } /** * An identifier that determines which page of results you receive. * @return nextCursor **/ @javax.annotation.Nullable @ApiModelProperty(example = "eyJkaXJlY3Rpb24iOiJuZXh0Iiwib2Zmc2V0IjoiMTU5NDM", required = true, value = "An identifier that determines which page of results you receive.") public String getNextCursor() { return nextCursor; } public void setNextCursor(String nextCursor) { this.nextCursor = nextCursor; } public WatchlistScreeningEntityReviewListResponse 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; } WatchlistScreeningEntityReviewListResponse watchlistScreeningEntityReviewListResponse = (WatchlistScreeningEntityReviewListResponse) o; return Objects.equals(this.entityWatchlistScreeningReviews, watchlistScreeningEntityReviewListResponse.entityWatchlistScreeningReviews) && Objects.equals(this.nextCursor, watchlistScreeningEntityReviewListResponse.nextCursor) && Objects.equals(this.requestId, watchlistScreeningEntityReviewListResponse.requestId); } @Override public int hashCode() { return Objects.hash(entityWatchlistScreeningReviews, nextCursor, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WatchlistScreeningEntityReviewListResponse {\n"); sb.append(" entityWatchlistScreeningReviews: ").append(toIndentedString(entityWatchlistScreeningReviews)).append("\n"); sb.append(" nextCursor: ").append(toIndentedString(nextCursor)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferRefundStatus.java
src/main/java/com/plaid/client/model/TransferRefundStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The status of the refund. &#x60;pending&#x60;: A new refund was created; it is in the pending state. &#x60;posted&#x60;: The refund has been successfully submitted to the payment network. &#x60;settled&#x60;: Credits have been refunded to the Plaid linked account. &#x60;cancelled&#x60;: The refund was cancelled by the client. &#x60;failed&#x60;: The refund has failed. &#x60;returned&#x60;: The refund was returned. */ @JsonAdapter(TransferRefundStatus.Adapter.class) public enum TransferRefundStatus { PENDING("pending"), POSTED("posted"), CANCELLED("cancelled"), FAILED("failed"), SETTLED("settled"), RETURNED("returned"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; TransferRefundStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransferRefundStatus fromValue(String value) { for (TransferRefundStatus b : TransferRefundStatus.values()) { if (b.value.equals(value)) { return b; } } return TransferRefundStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<TransferRefundStatus> { @Override public void write(final JsonWriter jsonWriter, final TransferRefundStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransferRefundStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransferRefundStatus.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/FDXPartyType.java
src/main/java/com/plaid/client/model/FDXPartyType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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; /** * Identifies the type of a party */ @JsonAdapter(FDXPartyType.Adapter.class) public enum FDXPartyType { DATA_ACCESS_PLATFORM("DATA_ACCESS_PLATFORM"), DATA_PROVIDER("DATA_PROVIDER"), DATA_RECIPIENT("DATA_RECIPIENT"), INDIVIDUAL("INDIVIDUAL"), MERCHANT("MERCHANT"), VENDOR("VENDOR"), // 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; FDXPartyType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static FDXPartyType fromValue(String value) { for (FDXPartyType b : FDXPartyType.values()) { if (b.value.equals(value)) { return b; } } return FDXPartyType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<FDXPartyType> { @Override public void write(final JsonWriter jsonWriter, final FDXPartyType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public FDXPartyType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return FDXPartyType.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/RecipientBACSNullable.java
src/main/java/com/plaid/client/model/RecipientBACSNullable.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.RecipientBACS; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object containing a BACS account number and sort code. If an IBAN is not provided or if this recipient needs to accept domestic GBP-denominated payments, BACS data is required. */ @ApiModel(description = "An object containing a BACS account number and sort code. If an IBAN is not provided or if this recipient needs to accept domestic GBP-denominated payments, BACS data is required.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class RecipientBACSNullable { 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 RecipientBACSNullable account(String account) { this.account = account; return this; } /** * The account number of the account. Maximum of 10 characters. * @return account **/ @javax.annotation.Nullable @ApiModelProperty(value = "The account number of the account. Maximum of 10 characters.") public String getAccount() { return account; } public void setAccount(String account) { this.account = account; } public RecipientBACSNullable sortCode(String sortCode) { this.sortCode = sortCode; return this; } /** * The 6-character sort code of the account. * @return sortCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The 6-character sort code of 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; } RecipientBACSNullable recipientBACSNullable = (RecipientBACSNullable) o; return Objects.equals(this.account, recipientBACSNullable.account) && Objects.equals(this.sortCode, recipientBACSNullable.sortCode); } @Override public int hashCode() { return Objects.hash(account, sortCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class RecipientBACSNullable {\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/TransactionsRemovedWebhook.java
src/main/java/com/plaid/client/model/TransactionsRemovedWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.PlaidError; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Fired when transaction(s) for an Item are deleted. The deleted transaction IDs are included in the webhook payload. Plaid will typically check for deleted transaction data several times a day. This webhook is intended for use with &#x60;/transactions/get&#x60;; if you are using the newer &#x60;/transactions/sync&#x60; endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the &#x60;SYNC_UPDATES_AVAILABLE&#x60; webhook instead. */ @ApiModel(description = "Fired when transaction(s) for an Item are deleted. The deleted transaction IDs are included in the webhook payload. Plaid will typically check for deleted transaction data several times a day. This webhook is intended for use with `/transactions/get`; if you are using the newer `/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransactionsRemovedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private PlaidError error; public static final String SERIALIZED_NAME_REMOVED_TRANSACTIONS = "removed_transactions"; @SerializedName(SERIALIZED_NAME_REMOVED_TRANSACTIONS) private List<String> removedTransactions = new ArrayList<>(); 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 TransactionsRemovedWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;TRANSACTIONS&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`TRANSACTIONS`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public TransactionsRemovedWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;TRANSACTIONS_REMOVED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`TRANSACTIONS_REMOVED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public TransactionsRemovedWebhook error(PlaidError error) { this.error = error; return this; } /** * Get error * @return error **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PlaidError getError() { return error; } public void setError(PlaidError error) { this.error = error; } public TransactionsRemovedWebhook removedTransactions(List<String> removedTransactions) { this.removedTransactions = removedTransactions; return this; } public TransactionsRemovedWebhook addRemovedTransactionsItem(String removedTransactionsItem) { this.removedTransactions.add(removedTransactionsItem); return this; } /** * An array of &#x60;transaction_ids&#x60; corresponding to the removed transactions * @return removedTransactions **/ @ApiModelProperty(required = true, value = "An array of `transaction_ids` corresponding to the removed transactions") public List<String> getRemovedTransactions() { return removedTransactions; } public void setRemovedTransactions(List<String> removedTransactions) { this.removedTransactions = removedTransactions; } public TransactionsRemovedWebhook 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 TransactionsRemovedWebhook 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; } TransactionsRemovedWebhook transactionsRemovedWebhook = (TransactionsRemovedWebhook) o; return Objects.equals(this.webhookType, transactionsRemovedWebhook.webhookType) && Objects.equals(this.webhookCode, transactionsRemovedWebhook.webhookCode) && Objects.equals(this.error, transactionsRemovedWebhook.error) && Objects.equals(this.removedTransactions, transactionsRemovedWebhook.removedTransactions) && Objects.equals(this.itemId, transactionsRemovedWebhook.itemId) && Objects.equals(this.environment, transactionsRemovedWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, error, removedTransactions, itemId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransactionsRemovedWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" error: ").append(toIndentedString(error)).append("\n"); sb.append(" removedTransactions: ").append(toIndentedString(removedTransactions)).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/TransferIntentStatus.java
src/main/java/com/plaid/client/model/TransferIntentStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The status of the transfer intent. &#x60;PENDING&#x60;: The transfer intent is pending. &#x60;SUCCEEDED&#x60;: The transfer intent was successfully created. &#x60;FAILED&#x60;: The transfer intent was unable to be created. */ @JsonAdapter(TransferIntentStatus.Adapter.class) public enum TransferIntentStatus { PENDING("PENDING"), SUCCEEDED("SUCCEEDED"), FAILED("FAILED"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; TransferIntentStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransferIntentStatus fromValue(String value) { for (TransferIntentStatus b : TransferIntentStatus.values()) { if (b.value.equals(value)) { return b; } } return TransferIntentStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<TransferIntentStatus> { @Override public void write(final JsonWriter jsonWriter, final TransferIntentStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransferIntentStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransferIntentStatus.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/PartyRoleType.java
src/main/java/com/plaid/client/model/PartyRoleType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 value from a MISMO defined list that identifies the role that the party plays in the transaction. Parties may be either a person or legal entity. A party may play multiple roles in a transaction.A value from a MISMO defined list that identifies the role that the party plays in the transaction. Parties may be either a person or legal entity. A party may play multiple roles in a transaction. */ @JsonAdapter(PartyRoleType.Adapter.class) public enum PartyRoleType { BORROWER("Borrower"), // 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; PartyRoleType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PartyRoleType fromValue(String value) { for (PartyRoleType b : PartyRoleType.values()) { if (b.value.equals(value)) { return b; } } return PartyRoleType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<PartyRoleType> { @Override public void write(final JsonWriter jsonWriter, final PartyRoleType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PartyRoleType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PartyRoleType.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/CraBankIncomeWarningCode.java
src/main/java/com/plaid/client/model/CraBankIncomeWarningCode.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The warning code identifies a specific kind of warning. &#x60;IDENTITY_UNAVAILABLE&#x60;: Unable to extract identity for the Item &#x60;TRANSACTIONS_UNAVAILABLE&#x60;: Unable to extract transactions for the Item &#x60;REPORT_DELETED&#x60;: Report deleted due to customer or consumer request &#x60;DATA_UNAVAILABLE&#x60;: No relevant data was found for the Item */ @JsonAdapter(CraBankIncomeWarningCode.Adapter.class) public enum CraBankIncomeWarningCode { IDENTITY_UNAVAILABLE("IDENTITY_UNAVAILABLE"), TRANSACTIONS_UNAVAILABLE("TRANSACTIONS_UNAVAILABLE"), REPORT_DELETED("REPORT_DELETED"), DATA_UNAVAILABLE("DATA_UNAVAILABLE"), // 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; CraBankIncomeWarningCode(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static CraBankIncomeWarningCode fromValue(String value) { for (CraBankIncomeWarningCode b : CraBankIncomeWarningCode.values()) { if (b.value.equals(value)) { return b; } } return CraBankIncomeWarningCode.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<CraBankIncomeWarningCode> { @Override public void write(final JsonWriter jsonWriter, final CraBankIncomeWarningCode enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public CraBankIncomeWarningCode read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return CraBankIncomeWarningCode.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/AuthSupportedMethods.java
src/main/java/com/plaid/client/model/AuthSupportedMethods.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Metadata specifically related to which auth methods an institution supports. */ @ApiModel(description = "Metadata specifically related to which auth methods an institution supports.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AuthSupportedMethods { public static final String SERIALIZED_NAME_INSTANT_AUTH = "instant_auth"; @SerializedName(SERIALIZED_NAME_INSTANT_AUTH) private Boolean instantAuth; public static final String SERIALIZED_NAME_INSTANT_MATCH = "instant_match"; @SerializedName(SERIALIZED_NAME_INSTANT_MATCH) private Boolean instantMatch; public static final String SERIALIZED_NAME_AUTOMATED_MICRO_DEPOSITS = "automated_micro_deposits"; @SerializedName(SERIALIZED_NAME_AUTOMATED_MICRO_DEPOSITS) private Boolean automatedMicroDeposits; public static final String SERIALIZED_NAME_INSTANT_MICRO_DEPOSITS = "instant_micro_deposits"; @SerializedName(SERIALIZED_NAME_INSTANT_MICRO_DEPOSITS) private Boolean instantMicroDeposits; public AuthSupportedMethods instantAuth(Boolean instantAuth) { this.instantAuth = instantAuth; return this; } /** * Indicates if instant auth is supported. * @return instantAuth **/ @ApiModelProperty(required = true, value = "Indicates if instant auth is supported.") public Boolean getInstantAuth() { return instantAuth; } public void setInstantAuth(Boolean instantAuth) { this.instantAuth = instantAuth; } public AuthSupportedMethods instantMatch(Boolean instantMatch) { this.instantMatch = instantMatch; return this; } /** * Indicates if instant match is supported. * @return instantMatch **/ @ApiModelProperty(required = true, value = "Indicates if instant match is supported.") public Boolean getInstantMatch() { return instantMatch; } public void setInstantMatch(Boolean instantMatch) { this.instantMatch = instantMatch; } public AuthSupportedMethods automatedMicroDeposits(Boolean automatedMicroDeposits) { this.automatedMicroDeposits = automatedMicroDeposits; return this; } /** * Indicates if automated microdeposits are supported. * @return automatedMicroDeposits **/ @ApiModelProperty(required = true, value = "Indicates if automated microdeposits are supported.") public Boolean getAutomatedMicroDeposits() { return automatedMicroDeposits; } public void setAutomatedMicroDeposits(Boolean automatedMicroDeposits) { this.automatedMicroDeposits = automatedMicroDeposits; } public AuthSupportedMethods instantMicroDeposits(Boolean instantMicroDeposits) { this.instantMicroDeposits = instantMicroDeposits; return this; } /** * Indicates if instant microdeposits are supported. * @return instantMicroDeposits **/ @ApiModelProperty(required = true, value = "Indicates if instant microdeposits are supported.") public Boolean getInstantMicroDeposits() { return instantMicroDeposits; } public void setInstantMicroDeposits(Boolean instantMicroDeposits) { this.instantMicroDeposits = instantMicroDeposits; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AuthSupportedMethods authSupportedMethods = (AuthSupportedMethods) o; return Objects.equals(this.instantAuth, authSupportedMethods.instantAuth) && Objects.equals(this.instantMatch, authSupportedMethods.instantMatch) && Objects.equals(this.automatedMicroDeposits, authSupportedMethods.automatedMicroDeposits) && Objects.equals(this.instantMicroDeposits, authSupportedMethods.instantMicroDeposits); } @Override public int hashCode() { return Objects.hash(instantAuth, instantMatch, automatedMicroDeposits, instantMicroDeposits); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AuthSupportedMethods {\n"); sb.append(" instantAuth: ").append(toIndentedString(instantAuth)).append("\n"); sb.append(" instantMatch: ").append(toIndentedString(instantMatch)).append("\n"); sb.append(" automatedMicroDeposits: ").append(toIndentedString(automatedMicroDeposits)).append("\n"); sb.append(" instantMicroDeposits: ").append(toIndentedString(instantMicroDeposits)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/MortgagePropertyAddress.java
src/main/java/com/plaid/client/model/MortgagePropertyAddress.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Object containing fields describing property address. */ @ApiModel(description = "Object containing fields describing property address.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class MortgagePropertyAddress { 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 MortgagePropertyAddress city(String city) { this.city = city; return this; } /** * The city name. * @return city **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The city name.") public String getCity() { return city; } public void setCity(String city) { this.city = city; } public MortgagePropertyAddress country(String country) { this.country = country; return this; } /** * The ISO 3166-1 alpha-2 country code. * @return country **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ISO 3166-1 alpha-2 country code.") public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public MortgagePropertyAddress postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * The five or nine digit postal code. * @return postalCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The five or nine digit postal code.") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public MortgagePropertyAddress region(String region) { this.region = region; return this; } /** * The region or state (example \&quot;NC\&quot;). * @return region **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The region or state (example \"NC\").") public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public MortgagePropertyAddress street(String street) { this.street = street; return this; } /** * The full street address (example \&quot;564 Main Street, Apt 15\&quot;). * @return street **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The full street address (example \"564 Main Street, Apt 15\").") public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } MortgagePropertyAddress mortgagePropertyAddress = (MortgagePropertyAddress) o; return Objects.equals(this.city, mortgagePropertyAddress.city) && Objects.equals(this.country, mortgagePropertyAddress.country) && Objects.equals(this.postalCode, mortgagePropertyAddress.postalCode) && Objects.equals(this.region, mortgagePropertyAddress.region) && Objects.equals(this.street, mortgagePropertyAddress.street); } @Override public int hashCode() { return Objects.hash(city, country, postalCode, region, street); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class MortgagePropertyAddress {\n"); sb.append(" city: ").append(toIndentedString(city)).append("\n"); sb.append(" country: ").append(toIndentedString(country)).append("\n"); sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n"); sb.append(" region: ").append(toIndentedString(region)).append("\n"); sb.append(" street: ").append(toIndentedString(street)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WalletTransactionCounterparty.java
src/main/java/com/plaid/client/model/WalletTransactionCounterparty.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.PaymentInitiationAddress; import com.plaid.client.model.WalletTransactionCounterpartyNumbers; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * An object representing the e-wallet transaction&#39;s counterparty */ @ApiModel(description = "An object representing the e-wallet transaction's counterparty") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WalletTransactionCounterparty { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_NUMBERS = "numbers"; @SerializedName(SERIALIZED_NAME_NUMBERS) private WalletTransactionCounterpartyNumbers numbers; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private PaymentInitiationAddress address; public static final String SERIALIZED_NAME_DATE_OF_BIRTH = "date_of_birth"; @SerializedName(SERIALIZED_NAME_DATE_OF_BIRTH) private LocalDate dateOfBirth; public WalletTransactionCounterparty name(String name) { this.name = name; return this; } /** * The name of the counterparty * @return name **/ @ApiModelProperty(required = true, value = "The name of the counterparty") public String getName() { return name; } public void setName(String name) { this.name = name; } public WalletTransactionCounterparty numbers(WalletTransactionCounterpartyNumbers numbers) { this.numbers = numbers; return this; } /** * Get numbers * @return numbers **/ @ApiModelProperty(required = true, value = "") public WalletTransactionCounterpartyNumbers getNumbers() { return numbers; } public void setNumbers(WalletTransactionCounterpartyNumbers numbers) { this.numbers = numbers; } public WalletTransactionCounterparty address(PaymentInitiationAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaymentInitiationAddress getAddress() { return address; } public void setAddress(PaymentInitiationAddress address) { this.address = address; } public WalletTransactionCounterparty dateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; return this; } /** * The counterparty&#39;s birthdate, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) (YYYY-MM-DD) format. * @return dateOfBirth **/ @javax.annotation.Nullable @ApiModelProperty(value = "The counterparty's birthdate, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) (YYYY-MM-DD) format.") public LocalDate getDateOfBirth() { return dateOfBirth; } public void setDateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } WalletTransactionCounterparty walletTransactionCounterparty = (WalletTransactionCounterparty) o; return Objects.equals(this.name, walletTransactionCounterparty.name) && Objects.equals(this.numbers, walletTransactionCounterparty.numbers) && Objects.equals(this.address, walletTransactionCounterparty.address) && Objects.equals(this.dateOfBirth, walletTransactionCounterparty.dateOfBirth); } @Override public int hashCode() { return Objects.hash(name, numbers, address, dateOfBirth); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WalletTransactionCounterparty {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" numbers: ").append(toIndentedString(numbers)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" dateOfBirth: ").append(toIndentedString(dateOfBirth)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/VerificationExpiredWebhook.java
src/main/java/com/plaid/client/model/VerificationExpiredWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.PlaidError; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Fired when an Item was not verified via automated micro-deposits after seven days since the automated micro-deposit was made. */ @ApiModel(description = "Fired when an Item was not verified via automated micro-deposits after seven days since the automated micro-deposit was made.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class VerificationExpiredWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private PlaidError error; public VerificationExpiredWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;AUTH&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`AUTH`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public VerificationExpiredWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;VERIFICATION_EXPIRED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`VERIFICATION_EXPIRED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public VerificationExpiredWebhook 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 VerificationExpiredWebhook accountId(String accountId) { this.accountId = accountId; return this; } /** * The &#x60;account_id&#x60; of the account associated with the webhook * @return accountId **/ @ApiModelProperty(required = true, value = "The `account_id` of the account associated with the webhook") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public VerificationExpiredWebhook 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; } public VerificationExpiredWebhook error(PlaidError error) { this.error = error; return this; } /** * Get error * @return error **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PlaidError getError() { return error; } public void setError(PlaidError error) { this.error = error; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } VerificationExpiredWebhook verificationExpiredWebhook = (VerificationExpiredWebhook) o; return Objects.equals(this.webhookType, verificationExpiredWebhook.webhookType) && Objects.equals(this.webhookCode, verificationExpiredWebhook.webhookCode) && Objects.equals(this.itemId, verificationExpiredWebhook.itemId) && Objects.equals(this.accountId, verificationExpiredWebhook.accountId) && Objects.equals(this.environment, verificationExpiredWebhook.environment) && Objects.equals(this.error, verificationExpiredWebhook.error); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, itemId, accountId, environment, error); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class VerificationExpiredWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" environment: ").append(toIndentedString(environment)).append("\n"); sb.append(" error: ").append(toIndentedString(error)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorStripeBankAccountTokenCreateResponse.java
src/main/java/com/plaid/client/model/ProcessorStripeBankAccountTokenCreateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * ProcessorStripeBankAccountTokenCreateResponse defines the response schema for &#x60;/processor/stripe/bank_account/create&#x60; */ @ApiModel(description = "ProcessorStripeBankAccountTokenCreateResponse defines the response schema for `/processor/stripe/bank_account/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorStripeBankAccountTokenCreateResponse { public static final String SERIALIZED_NAME_STRIPE_BANK_ACCOUNT_TOKEN = "stripe_bank_account_token"; @SerializedName(SERIALIZED_NAME_STRIPE_BANK_ACCOUNT_TOKEN) private String stripeBankAccountToken; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public ProcessorStripeBankAccountTokenCreateResponse stripeBankAccountToken(String stripeBankAccountToken) { this.stripeBankAccountToken = stripeBankAccountToken; return this; } /** * A token that can be sent to Stripe for use in making API calls to Plaid * @return stripeBankAccountToken **/ @ApiModelProperty(required = true, value = "A token that can be sent to Stripe for use in making API calls to Plaid") public String getStripeBankAccountToken() { return stripeBankAccountToken; } public void setStripeBankAccountToken(String stripeBankAccountToken) { this.stripeBankAccountToken = stripeBankAccountToken; } public ProcessorStripeBankAccountTokenCreateResponse 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; } ProcessorStripeBankAccountTokenCreateResponse processorStripeBankAccountTokenCreateResponse = (ProcessorStripeBankAccountTokenCreateResponse) o; return Objects.equals(this.stripeBankAccountToken, processorStripeBankAccountTokenCreateResponse.stripeBankAccountToken) && Objects.equals(this.requestId, processorStripeBankAccountTokenCreateResponse.requestId); } @Override public int hashCode() { return Objects.hash(stripeBankAccountToken, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorStripeBankAccountTokenCreateResponse {\n"); sb.append(" stripeBankAccountToken: ").append(toIndentedString(stripeBankAccountToken)).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/PaymentInitiationConsentStatus.java
src/main/java/com/plaid/client/model/PaymentInitiationConsentStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The status of the payment consent. &#x60;UNAUTHORISED&#x60;: Consent created, but requires user authorisation. &#x60;REJECTED&#x60;: Consent authorisation was rejected by the bank. &#x60;AUTHORISED&#x60;: Consent is active and ready to be used. &#x60;REVOKED&#x60;: Consent has been revoked and can no longer be used. &#x60;EXPIRED&#x60;: Consent is no longer valid. */ @JsonAdapter(PaymentInitiationConsentStatus.Adapter.class) public enum PaymentInitiationConsentStatus { UNAUTHORISED("UNAUTHORISED"), AUTHORISED("AUTHORISED"), REVOKED("REVOKED"), REJECTED("REJECTED"), EXPIRED("EXPIRED"), // 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; PaymentInitiationConsentStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PaymentInitiationConsentStatus fromValue(String value) { for (PaymentInitiationConsentStatus b : PaymentInitiationConsentStatus.values()) { if (b.value.equals(value)) { return b; } } return PaymentInitiationConsentStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<PaymentInitiationConsentStatus> { @Override public void write(final JsonWriter jsonWriter, final PaymentInitiationConsentStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PaymentInitiationConsentStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PaymentInitiationConsentStatus.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/CreditPayrollIncomePrecheckRequest.java
src/main/java/com/plaid/client/model/CreditPayrollIncomePrecheckRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.IncomeVerificationPrecheckEmployer; import com.plaid.client.model.IncomeVerificationPrecheckMilitaryInfo; import com.plaid.client.model.IncomeVerificationPrecheckPayrollInstitution; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Defines the request schema for &#x60;/credit/payroll_income/precheck&#x60;. */ @ApiModel(description = "Defines the request schema for `/credit/payroll_income/precheck`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditPayrollIncomePrecheckRequest { 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_ACCESS_TOKENS = "access_tokens"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKENS) private List<String> accessTokens = null; public static final String SERIALIZED_NAME_EMPLOYER = "employer"; @SerializedName(SERIALIZED_NAME_EMPLOYER) private IncomeVerificationPrecheckEmployer employer; public static final String SERIALIZED_NAME_US_MILITARY_INFO = "us_military_info"; @SerializedName(SERIALIZED_NAME_US_MILITARY_INFO) private IncomeVerificationPrecheckMilitaryInfo usMilitaryInfo; public static final String SERIALIZED_NAME_PAYROLL_INSTITUTION = "payroll_institution"; @SerializedName(SERIALIZED_NAME_PAYROLL_INSTITUTION) private IncomeVerificationPrecheckPayrollInstitution payrollInstitution; public CreditPayrollIncomePrecheckRequest 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 CreditPayrollIncomePrecheckRequest 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 CreditPayrollIncomePrecheckRequest 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 CreditPayrollIncomePrecheckRequest accessTokens(List<String> accessTokens) { this.accessTokens = accessTokens; return this; } public CreditPayrollIncomePrecheckRequest addAccessTokensItem(String accessTokensItem) { if (this.accessTokens == null) { this.accessTokens = new ArrayList<>(); } this.accessTokens.add(accessTokensItem); return this; } /** * An array of access tokens corresponding to Items belonging to the user whose eligibility is being checked. Note that if the Items specified here are not already initialized with &#x60;transactions&#x60;, providing them in this field will cause these Items to be initialized with (and billed for) the Transactions product. * @return accessTokens **/ @javax.annotation.Nullable @ApiModelProperty(value = "An array of access tokens corresponding to Items belonging to the user whose eligibility is being checked. Note that if the Items specified here are not already initialized with `transactions`, providing them in this field will cause these Items to be initialized with (and billed for) the Transactions product.") public List<String> getAccessTokens() { return accessTokens; } public void setAccessTokens(List<String> accessTokens) { this.accessTokens = accessTokens; } public CreditPayrollIncomePrecheckRequest employer(IncomeVerificationPrecheckEmployer employer) { this.employer = employer; return this; } /** * Get employer * @return employer **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public IncomeVerificationPrecheckEmployer getEmployer() { return employer; } public void setEmployer(IncomeVerificationPrecheckEmployer employer) { this.employer = employer; } public CreditPayrollIncomePrecheckRequest usMilitaryInfo(IncomeVerificationPrecheckMilitaryInfo usMilitaryInfo) { this.usMilitaryInfo = usMilitaryInfo; return this; } /** * Get usMilitaryInfo * @return usMilitaryInfo **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public IncomeVerificationPrecheckMilitaryInfo getUsMilitaryInfo() { return usMilitaryInfo; } public void setUsMilitaryInfo(IncomeVerificationPrecheckMilitaryInfo usMilitaryInfo) { this.usMilitaryInfo = usMilitaryInfo; } public CreditPayrollIncomePrecheckRequest payrollInstitution(IncomeVerificationPrecheckPayrollInstitution payrollInstitution) { this.payrollInstitution = payrollInstitution; return this; } /** * Get payrollInstitution * @return payrollInstitution **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public IncomeVerificationPrecheckPayrollInstitution getPayrollInstitution() { return payrollInstitution; } public void setPayrollInstitution(IncomeVerificationPrecheckPayrollInstitution payrollInstitution) { this.payrollInstitution = payrollInstitution; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditPayrollIncomePrecheckRequest creditPayrollIncomePrecheckRequest = (CreditPayrollIncomePrecheckRequest) o; return Objects.equals(this.clientId, creditPayrollIncomePrecheckRequest.clientId) && Objects.equals(this.secret, creditPayrollIncomePrecheckRequest.secret) && Objects.equals(this.userToken, creditPayrollIncomePrecheckRequest.userToken) && Objects.equals(this.accessTokens, creditPayrollIncomePrecheckRequest.accessTokens) && Objects.equals(this.employer, creditPayrollIncomePrecheckRequest.employer) && Objects.equals(this.usMilitaryInfo, creditPayrollIncomePrecheckRequest.usMilitaryInfo) && Objects.equals(this.payrollInstitution, creditPayrollIncomePrecheckRequest.payrollInstitution); } @Override public int hashCode() { return Objects.hash(clientId, secret, userToken, accessTokens, employer, usMilitaryInfo, payrollInstitution); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditPayrollIncomePrecheckRequest {\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(" accessTokens: ").append(toIndentedString(accessTokens)).append("\n"); sb.append(" employer: ").append(toIndentedString(employer)).append("\n"); sb.append(" usMilitaryInfo: ").append(toIndentedString(usMilitaryInfo)).append("\n"); sb.append(" payrollInstitution: ").append(toIndentedString(payrollInstitution)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BeaconUserAccountInsightsGetRequest.java
src/main/java/com/plaid/client/model/BeaconUserAccountInsightsGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 fetching the risk insights for a Beacon User&#39;s Bank Accounts */ @ApiModel(description = "Request input for fetching the risk insights for a Beacon User's Bank Accounts") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconUserAccountInsightsGetRequest { public static final String SERIALIZED_NAME_BEACON_USER_ID = "beacon_user_id"; @SerializedName(SERIALIZED_NAME_BEACON_USER_ID) private String beaconUserId; public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) private String accessToken; 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 BeaconUserAccountInsightsGetRequest beaconUserId(String beaconUserId) { this.beaconUserId = beaconUserId; return this; } /** * ID of the associated Beacon User. * @return beaconUserId **/ @ApiModelProperty(example = "becusr_42cF1MNo42r9Xj", required = true, value = "ID of the associated Beacon User.") public String getBeaconUserId() { return beaconUserId; } public void setBeaconUserId(String beaconUserId) { this.beaconUserId = beaconUserId; } public BeaconUserAccountInsightsGetRequest accessToken(String accessToken) { this.accessToken = accessToken; return this; } /** * The access token associated with the Item data is being requested for. * @return accessToken **/ @ApiModelProperty(required = true, value = "The access token associated with the Item data is being requested for.") public String getAccessToken() { return accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; } public BeaconUserAccountInsightsGetRequest 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 BeaconUserAccountInsightsGetRequest 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; } BeaconUserAccountInsightsGetRequest beaconUserAccountInsightsGetRequest = (BeaconUserAccountInsightsGetRequest) o; return Objects.equals(this.beaconUserId, beaconUserAccountInsightsGetRequest.beaconUserId) && Objects.equals(this.accessToken, beaconUserAccountInsightsGetRequest.accessToken) && Objects.equals(this.clientId, beaconUserAccountInsightsGetRequest.clientId) && Objects.equals(this.secret, beaconUserAccountInsightsGetRequest.secret); } @Override public int hashCode() { return Objects.hash(beaconUserId, accessToken, clientId, secret); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconUserAccountInsightsGetRequest {\n"); sb.append(" beaconUserId: ").append(toIndentedString(beaconUserId)).append("\n"); sb.append(" accessToken: ").append(toIndentedString(accessToken)).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/IncidentUpdate.java
src/main/java/com/plaid/client/model/IncidentUpdate.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * An update on the health incident */ @ApiModel(description = "An update on the health incident") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IncidentUpdate { public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) private String description; /** * The status of the incident. */ @JsonAdapter(StatusEnum.Adapter.class) public enum StatusEnum { INVESTIGATING("INVESTIGATING"), IDENTIFIED("IDENTIFIED"), SCHEDULED("SCHEDULED"), RESOLVED("RESOLVED"), UNKNOWN("UNKNOWN"); private String value; StatusEnum(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static StatusEnum fromValue(String value) { for (StatusEnum b : StatusEnum.values()) { if (b.value.equals(value)) { return b; } } throw new IllegalArgumentException("Unexpected value '" + value + "'"); } public static class Adapter extends TypeAdapter<StatusEnum> { @Override public void write(final JsonWriter jsonWriter, final StatusEnum enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public StatusEnum read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return StatusEnum.fromValue(value); } } } public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private StatusEnum status; public static final String SERIALIZED_NAME_UPDATED_DATE = "updated_date"; @SerializedName(SERIALIZED_NAME_UPDATED_DATE) private OffsetDateTime updatedDate; public IncidentUpdate description(String description) { this.description = description; return this; } /** * The content of the update. * @return description **/ @javax.annotation.Nullable @ApiModelProperty(value = "The content of the update.") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public IncidentUpdate status(StatusEnum status) { this.status = status; return this; } /** * The status of the incident. * @return status **/ @javax.annotation.Nullable @ApiModelProperty(value = "The status of the incident.") public StatusEnum getStatus() { return status; } public void setStatus(StatusEnum status) { this.status = status; } public IncidentUpdate updatedDate(OffsetDateTime updatedDate) { this.updatedDate = updatedDate; return this; } /** * The date when the update was published, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format, e.g. &#x60;\&quot;2020-10-30T15:26:48Z\&quot;&#x60;. * @return updatedDate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The date when the update was published, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format, e.g. `\"2020-10-30T15:26:48Z\"`.") public OffsetDateTime getUpdatedDate() { return updatedDate; } public void setUpdatedDate(OffsetDateTime updatedDate) { this.updatedDate = updatedDate; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IncidentUpdate incidentUpdate = (IncidentUpdate) o; return Objects.equals(this.description, incidentUpdate.description) && Objects.equals(this.status, incidentUpdate.status) && Objects.equals(this.updatedDate, incidentUpdate.updatedDate); } @Override public int hashCode() { return Objects.hash(description, status, updatedDate); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IncidentUpdate {\n"); sb.append(" description: ").append(toIndentedString(description)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" updatedDate: ").append(toIndentedString(updatedDate)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/UserItemsGetRequest.java
src/main/java/com/plaid/client/model/UserItemsGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * UserItemsGetRequest defines the request schema for &#x60;/user/items/get&#x60; */ @ApiModel(description = "UserItemsGetRequest defines the request schema for `/user/items/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class UserItemsGetRequest { 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_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public UserItemsGetRequest 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 UserItemsGetRequest 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 UserItemsGetRequest 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 UserItemsGetRequest 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; } UserItemsGetRequest userItemsGetRequest = (UserItemsGetRequest) o; return Objects.equals(this.clientId, userItemsGetRequest.clientId) && Objects.equals(this.secret, userItemsGetRequest.secret) && Objects.equals(this.userToken, userItemsGetRequest.userToken) && Objects.equals(this.userId, userItemsGetRequest.userId); } @Override public int hashCode() { return Objects.hash(clientId, secret, userToken, userId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class UserItemsGetRequest {\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(" 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/IncomeVerificationWebhookStatus.java
src/main/java/com/plaid/client/model/IncomeVerificationWebhookStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Status of the income verification webhook */ @ApiModel(description = "Status of the income verification webhook") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IncomeVerificationWebhookStatus { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) private String id; public IncomeVerificationWebhookStatus id(String id) { this.id = id; return this; } /** * Get id * @return id **/ @ApiModelProperty(required = true, value = "") public String getId() { return id; } public void setId(String id) { this.id = id; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IncomeVerificationWebhookStatus incomeVerificationWebhookStatus = (IncomeVerificationWebhookStatus) o; return Objects.equals(this.id, incomeVerificationWebhookStatus.id); } @Override public int hashCode() { return Objects.hash(id); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IncomeVerificationWebhookStatus {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/UserAccountItem.java
src/main/java/com/plaid/client/model/UserAccountItem.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 Item created during a Layer authorization session. */ @ApiModel(description = "An Item created during a Layer authorization session.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class UserAccountItem { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) private String accessToken; public UserAccountItem itemId(String itemId) { this.itemId = itemId; return this; } /** * The Plaid Item ID. The &#x60;item_id&#x60; is always unique; linking the same account at the same institution twice will result in two Items with different &#x60;item_id&#x60; values. Like all Plaid identifiers, the &#x60;item_id&#x60; is case-sensitive. * @return itemId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The Plaid Item ID. The `item_id` is always unique; linking the same account at the same institution twice will result in two Items with different `item_id` values. Like all Plaid identifiers, the `item_id` is case-sensitive.") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public UserAccountItem accessToken(String accessToken) { this.accessToken = accessToken; return this; } /** * The access token associated with the Item data is being requested for. * @return accessToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "The access token associated with the Item data is being requested for.") public String getAccessToken() { return accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } UserAccountItem userAccountItem = (UserAccountItem) o; return Objects.equals(this.itemId, userAccountItem.itemId) && Objects.equals(this.accessToken, userAccountItem.accessToken); } @Override public int hashCode() { return Objects.hash(itemId, accessToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class UserAccountItem {\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SignalScheduleRecommendation.java
src/main/java/com/plaid/client/model/SignalScheduleRecommendation.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.RecommendationString; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * Conveys information on if a retry is recommended on a given date */ @ApiModel(description = "Conveys information on if a retry is recommended on a given date") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SignalScheduleRecommendation { public static final String SERIALIZED_NAME_DATE = "date"; @SerializedName(SERIALIZED_NAME_DATE) private LocalDate date; public static final String SERIALIZED_NAME_RECOMMENDATION = "recommendation"; @SerializedName(SERIALIZED_NAME_RECOMMENDATION) private RecommendationString recommendation; public static final String SERIALIZED_NAME_RANK = "rank"; @SerializedName(SERIALIZED_NAME_RANK) private Integer rank; public SignalScheduleRecommendation date(LocalDate date) { this.date = date; return this; } /** * The specific date for submitting the debit entry, formatted in ISO 8601 (e.g., \&quot;2025-01-17\&quot;). * @return date **/ @javax.annotation.Nullable @ApiModelProperty(value = "The specific date for submitting the debit entry, formatted in ISO 8601 (e.g., \"2025-01-17\").") public LocalDate getDate() { return date; } public void setDate(LocalDate date) { this.date = date; } public SignalScheduleRecommendation recommendation(RecommendationString recommendation) { this.recommendation = recommendation; return this; } /** * Get recommendation * @return recommendation **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public RecommendationString getRecommendation() { return recommendation; } public void setRecommendation(RecommendationString recommendation) { this.recommendation = recommendation; } public SignalScheduleRecommendation rank(Integer rank) { this.rank = rank; return this; } /** * The rank of the recommendation based on the likelihood of debit success, with 1 representing the most optimal date. Dates with &#x60;NOT_RECOMMENDED&#x60; or &#x60;UNKNOWN&#x60; will have rank &#x60;null&#x60;. * @return rank **/ @javax.annotation.Nullable @ApiModelProperty(value = "The rank of the recommendation based on the likelihood of debit success, with 1 representing the most optimal date. Dates with `NOT_RECOMMENDED` or `UNKNOWN` will have rank `null`.") public Integer getRank() { return rank; } public void setRank(Integer rank) { this.rank = rank; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SignalScheduleRecommendation signalScheduleRecommendation = (SignalScheduleRecommendation) o; return Objects.equals(this.date, signalScheduleRecommendation.date) && Objects.equals(this.recommendation, signalScheduleRecommendation.recommendation) && Objects.equals(this.rank, signalScheduleRecommendation.rank); } @Override public int hashCode() { return Objects.hash(date, recommendation, rank); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SignalScheduleRecommendation {\n"); sb.append(" date: ").append(toIndentedString(date)).append("\n"); sb.append(" recommendation: ").append(toIndentedString(recommendation)).append("\n"); sb.append(" rank: ").append(toIndentedString(rank)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraEmploymentRefreshReportTransaction.java
src/main/java/com/plaid/client/model/CraEmploymentRefreshReportTransaction.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * A transaction on the Employment Refresh Report. Note that this transaction differs from a Base Report transaction in that it will only be deposits, and the amounts will be omitted. */ @ApiModel(description = "A transaction on the Employment Refresh Report. Note that this transaction differs from a Base Report transaction in that it will only be deposits, and the amounts will be omitted.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraEmploymentRefreshReportTransaction { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_ORIGINAL_DESCRIPTION = "original_description"; @SerializedName(SERIALIZED_NAME_ORIGINAL_DESCRIPTION) private String originalDescription; public static final String SERIALIZED_NAME_DATE = "date"; @SerializedName(SERIALIZED_NAME_DATE) private LocalDate date; public static final String SERIALIZED_NAME_PENDING = "pending"; @SerializedName(SERIALIZED_NAME_PENDING) private Boolean pending; public static final String SERIALIZED_NAME_TRANSACTION_ID = "transaction_id"; @SerializedName(SERIALIZED_NAME_TRANSACTION_ID) private String transactionId; public CraEmploymentRefreshReportTransaction accountId(String accountId) { this.accountId = accountId; return this; } /** * The ID of the account in which this transaction occurred. * @return accountId **/ @ApiModelProperty(required = true, value = "The ID of the account in which this transaction occurred.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public CraEmploymentRefreshReportTransaction originalDescription(String originalDescription) { this.originalDescription = originalDescription; return this; } /** * The string returned by the financial institution to describe the transaction. * @return originalDescription **/ @ApiModelProperty(required = true, value = "The string returned by the financial institution to describe the transaction.") public String getOriginalDescription() { return originalDescription; } public void setOriginalDescription(String originalDescription) { this.originalDescription = originalDescription; } public CraEmploymentRefreshReportTransaction date(LocalDate date) { this.date = date; return this; } /** * For pending transactions, the date that the transaction occurred; for posted transactions, the date that the transaction posted. Both dates are returned in an ISO 8601 format ( &#x60;YYYY-MM-DD&#x60; ). * @return date **/ @ApiModelProperty(required = true, value = "For pending transactions, the date that the transaction occurred; for posted transactions, the date that the transaction posted. Both dates are returned in an ISO 8601 format ( `YYYY-MM-DD` ).") public LocalDate getDate() { return date; } public void setDate(LocalDate date) { this.date = date; } public CraEmploymentRefreshReportTransaction pending(Boolean pending) { this.pending = pending; return this; } /** * When &#x60;true&#x60;, identifies the transaction as pending or unsettled. Pending transaction details (name, type, amount, category ID) may change before they are settled. * @return pending **/ @ApiModelProperty(required = true, value = "When `true`, identifies the transaction as pending or unsettled. Pending transaction details (name, type, amount, category ID) may change before they are settled.") public Boolean getPending() { return pending; } public void setPending(Boolean pending) { this.pending = pending; } public CraEmploymentRefreshReportTransaction transactionId(String transactionId) { this.transactionId = transactionId; return this; } /** * The unique ID of the transaction. Like all Plaid identifiers, the &#x60;transaction_id&#x60; is case sensitive. * @return transactionId **/ @ApiModelProperty(required = true, value = "The unique ID of the transaction. Like all Plaid identifiers, the `transaction_id` is case sensitive.") public String getTransactionId() { return transactionId; } public void setTransactionId(String transactionId) { this.transactionId = transactionId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraEmploymentRefreshReportTransaction craEmploymentRefreshReportTransaction = (CraEmploymentRefreshReportTransaction) o; return Objects.equals(this.accountId, craEmploymentRefreshReportTransaction.accountId) && Objects.equals(this.originalDescription, craEmploymentRefreshReportTransaction.originalDescription) && Objects.equals(this.date, craEmploymentRefreshReportTransaction.date) && Objects.equals(this.pending, craEmploymentRefreshReportTransaction.pending) && Objects.equals(this.transactionId, craEmploymentRefreshReportTransaction.transactionId); } @Override public int hashCode() { return Objects.hash(accountId, originalDescription, date, pending, transactionId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraEmploymentRefreshReportTransaction {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" originalDescription: ").append(toIndentedString(originalDescription)).append("\n"); sb.append(" date: ").append(toIndentedString(date)).append("\n"); sb.append(" pending: ").append(toIndentedString(pending)).append("\n"); sb.append(" transactionId: ").append(toIndentedString(transactionId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkTokenEUConfig.java
src/main/java/com/plaid/client/model/LinkTokenEUConfig.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Configuration parameters for EU flows */ @ApiModel(description = "Configuration parameters for EU flows") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkTokenEUConfig { public static final String SERIALIZED_NAME_HEADLESS = "headless"; @SerializedName(SERIALIZED_NAME_HEADLESS) private Boolean headless; public LinkTokenEUConfig headless(Boolean headless) { this.headless = headless; return this; } /** * If &#x60;true&#x60;, open Link without an initial UI. Defaults to &#x60;false&#x60;. * @return headless **/ @javax.annotation.Nullable @ApiModelProperty(value = "If `true`, open Link without an initial UI. Defaults to `false`.") public Boolean getHeadless() { return headless; } public void setHeadless(Boolean headless) { this.headless = headless; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkTokenEUConfig linkTokenEUConfig = (LinkTokenEUConfig) o; return Objects.equals(this.headless, linkTokenEUConfig.headless); } @Override public int hashCode() { return Objects.hash(headless); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkTokenEUConfig {\n"); sb.append(" headless: ").append(toIndentedString(headless)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/InvestmentTransaction.java
src/main/java/com/plaid/client/model/InvestmentTransaction.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.InvestmentTransactionSubtype; import com.plaid.client.model.InvestmentTransactionType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; import java.time.OffsetDateTime; /** * A transaction within an investment account. */ @ApiModel(description = "A transaction within an investment account.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InvestmentTransaction { public static final String SERIALIZED_NAME_INVESTMENT_TRANSACTION_ID = "investment_transaction_id"; @SerializedName(SERIALIZED_NAME_INVESTMENT_TRANSACTION_ID) private String investmentTransactionId; public static final String SERIALIZED_NAME_CANCEL_TRANSACTION_ID = "cancel_transaction_id"; @SerializedName(SERIALIZED_NAME_CANCEL_TRANSACTION_ID) private String cancelTransactionId; public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_SECURITY_ID = "security_id"; @SerializedName(SERIALIZED_NAME_SECURITY_ID) private String securityId; public static final String SERIALIZED_NAME_DATE = "date"; @SerializedName(SERIALIZED_NAME_DATE) private LocalDate date; public static final String SERIALIZED_NAME_TRANSACTION_DATETIME = "transaction_datetime"; @SerializedName(SERIALIZED_NAME_TRANSACTION_DATETIME) private OffsetDateTime transactionDatetime; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_QUANTITY = "quantity"; @SerializedName(SERIALIZED_NAME_QUANTITY) private Double quantity; public static final String SERIALIZED_NAME_AMOUNT = "amount"; @SerializedName(SERIALIZED_NAME_AMOUNT) private Double amount; public static final String SERIALIZED_NAME_PRICE = "price"; @SerializedName(SERIALIZED_NAME_PRICE) private Double price; public static final String SERIALIZED_NAME_FEES = "fees"; @SerializedName(SERIALIZED_NAME_FEES) private Double fees; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private InvestmentTransactionType type; public static final String SERIALIZED_NAME_SUBTYPE = "subtype"; @SerializedName(SERIALIZED_NAME_SUBTYPE) private InvestmentTransactionSubtype subtype; 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 InvestmentTransaction investmentTransactionId(String investmentTransactionId) { this.investmentTransactionId = investmentTransactionId; return this; } /** * The ID of the Investment transaction, unique across all Plaid transactions. Like all Plaid identifiers, the &#x60;investment_transaction_id&#x60; is case sensitive. * @return investmentTransactionId **/ @ApiModelProperty(required = true, value = "The ID of the Investment transaction, unique across all Plaid transactions. Like all Plaid identifiers, the `investment_transaction_id` is case sensitive.") public String getInvestmentTransactionId() { return investmentTransactionId; } public void setInvestmentTransactionId(String investmentTransactionId) { this.investmentTransactionId = investmentTransactionId; } public InvestmentTransaction cancelTransactionId(String cancelTransactionId) { this.cancelTransactionId = cancelTransactionId; return this; } /** * A legacy field formerly used internally by Plaid to identify certain canceled transactions. * @return cancelTransactionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A legacy field formerly used internally by Plaid to identify certain canceled transactions.") public String getCancelTransactionId() { return cancelTransactionId; } public void setCancelTransactionId(String cancelTransactionId) { this.cancelTransactionId = cancelTransactionId; } public InvestmentTransaction accountId(String accountId) { this.accountId = accountId; return this; } /** * The &#x60;account_id&#x60; of the account against which this transaction posted. * @return accountId **/ @ApiModelProperty(required = true, value = "The `account_id` of the account against which this transaction posted.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public InvestmentTransaction securityId(String securityId) { this.securityId = securityId; return this; } /** * The &#x60;security_id&#x60; to which this transaction is related. * @return securityId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The `security_id` to which this transaction is related.") public String getSecurityId() { return securityId; } public void setSecurityId(String securityId) { this.securityId = securityId; } public InvestmentTransaction date(LocalDate date) { this.date = date; return this; } /** * The [ISO 8601](https://wikipedia.org/wiki/ISO_8601) posting date for the transaction. This is typically the settlement date. * @return date **/ @ApiModelProperty(required = true, value = "The [ISO 8601](https://wikipedia.org/wiki/ISO_8601) posting date for the transaction. This is typically the settlement date.") public LocalDate getDate() { return date; } public void setDate(LocalDate date) { this.date = date; } public InvestmentTransaction transactionDatetime(OffsetDateTime transactionDatetime) { this.transactionDatetime = transactionDatetime; return this; } /** * Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (&#x60;YYYY-MM-DDTHH:mm:ssZ&#x60;) representing when the order type was initiated. This field is returned for select financial institutions and reflects the value provided by the institution. * @return transactionDatetime **/ @javax.annotation.Nullable @ApiModelProperty(value = "Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) representing when the order type was initiated. This field is returned for select financial institutions and reflects the value provided by the institution.") public OffsetDateTime getTransactionDatetime() { return transactionDatetime; } public void setTransactionDatetime(OffsetDateTime transactionDatetime) { this.transactionDatetime = transactionDatetime; } public InvestmentTransaction name(String name) { this.name = name; return this; } /** * The institution’s description of the transaction. * @return name **/ @ApiModelProperty(required = true, value = "The institution’s description of the transaction.") public String getName() { return name; } public void setName(String name) { this.name = name; } public InvestmentTransaction quantity(Double quantity) { this.quantity = quantity; return this; } /** * The number of units of the security involved in this transaction. Positive for buy transactions; negative for sell transactions. * @return quantity **/ @ApiModelProperty(required = true, value = "The number of units of the security involved in this transaction. Positive for buy transactions; negative for sell transactions.") public Double getQuantity() { return quantity; } public void setQuantity(Double quantity) { this.quantity = quantity; } public InvestmentTransaction amount(Double amount) { this.amount = amount; return this; } /** * The complete value of the transaction. Positive values when cash is debited, e.g. purchases of stock; negative values when cash is credited, e.g. sales of stock. Treatment remains the same for cash-only movements unassociated with securities. * @return amount **/ @ApiModelProperty(required = true, value = "The complete value of the transaction. Positive values when cash is debited, e.g. purchases of stock; negative values when cash is credited, e.g. sales of stock. Treatment remains the same for cash-only movements unassociated with securities.") public Double getAmount() { return amount; } public void setAmount(Double amount) { this.amount = amount; } public InvestmentTransaction price(Double price) { this.price = price; return this; } /** * The price of the security at which this transaction occurred. * @return price **/ @ApiModelProperty(required = true, value = "The price of the security at which this transaction occurred.") public Double getPrice() { return price; } public void setPrice(Double price) { this.price = price; } public InvestmentTransaction fees(Double fees) { this.fees = fees; return this; } /** * The combined value of all fees applied to this transaction * @return fees **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The combined value of all fees applied to this transaction") public Double getFees() { return fees; } public void setFees(Double fees) { this.fees = fees; } public InvestmentTransaction type(InvestmentTransactionType type) { this.type = type; return this; } /** * Get type * @return type **/ @ApiModelProperty(required = true, value = "") public InvestmentTransactionType getType() { return type; } public void setType(InvestmentTransactionType type) { this.type = type; } public InvestmentTransaction subtype(InvestmentTransactionSubtype subtype) { this.subtype = subtype; return this; } /** * Get subtype * @return subtype **/ @ApiModelProperty(required = true, value = "") public InvestmentTransactionSubtype getSubtype() { return subtype; } public void setSubtype(InvestmentTransactionSubtype subtype) { this.subtype = subtype; } public InvestmentTransaction isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO-4217 currency code of the transaction. Always &#x60;null&#x60; if &#x60;unofficial_currency_code&#x60; is non-&#x60;null&#x60;. * @return isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ISO-4217 currency code of the transaction. Always `null` if `unofficial_currency_code` is non-`null`.") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public InvestmentTransaction unofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; return this; } /** * The unofficial currency code associated with the holding. 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 holding. 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; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } InvestmentTransaction investmentTransaction = (InvestmentTransaction) o; return Objects.equals(this.investmentTransactionId, investmentTransaction.investmentTransactionId) && Objects.equals(this.cancelTransactionId, investmentTransaction.cancelTransactionId) && Objects.equals(this.accountId, investmentTransaction.accountId) && Objects.equals(this.securityId, investmentTransaction.securityId) && Objects.equals(this.date, investmentTransaction.date) && Objects.equals(this.transactionDatetime, investmentTransaction.transactionDatetime) && Objects.equals(this.name, investmentTransaction.name) && Objects.equals(this.quantity, investmentTransaction.quantity) && Objects.equals(this.amount, investmentTransaction.amount) && Objects.equals(this.price, investmentTransaction.price) && Objects.equals(this.fees, investmentTransaction.fees) && Objects.equals(this.type, investmentTransaction.type) && Objects.equals(this.subtype, investmentTransaction.subtype) && Objects.equals(this.isoCurrencyCode, investmentTransaction.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, investmentTransaction.unofficialCurrencyCode); } @Override public int hashCode() { return Objects.hash(investmentTransactionId, cancelTransactionId, accountId, securityId, date, transactionDatetime, name, quantity, amount, price, fees, type, subtype, isoCurrencyCode, unofficialCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InvestmentTransaction {\n"); sb.append(" investmentTransactionId: ").append(toIndentedString(investmentTransactionId)).append("\n"); sb.append(" cancelTransactionId: ").append(toIndentedString(cancelTransactionId)).append("\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" securityId: ").append(toIndentedString(securityId)).append("\n"); sb.append(" date: ").append(toIndentedString(date)).append("\n"); sb.append(" transactionDatetime: ").append(toIndentedString(transactionDatetime)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" quantity: ").append(toIndentedString(quantity)).append("\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" price: ").append(toIndentedString(price)).append("\n"); sb.append(" fees: ").append(toIndentedString(fees)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" subtype: ").append(toIndentedString(subtype)).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/CreditRelayRefreshResponse.java
src/main/java/com/plaid/client/model/CreditRelayRefreshResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * CreditRelayRefreshResponse defines the response schema for &#x60;/credit/relay/refresh&#x60; */ @ApiModel(description = "CreditRelayRefreshResponse defines the response schema for `/credit/relay/refresh`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditRelayRefreshResponse { public static final String SERIALIZED_NAME_RELAY_TOKEN = "relay_token"; @SerializedName(SERIALIZED_NAME_RELAY_TOKEN) private String relayToken; public static final String SERIALIZED_NAME_ASSET_REPORT_ID = "asset_report_id"; @SerializedName(SERIALIZED_NAME_ASSET_REPORT_ID) private String assetReportId; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public CreditRelayRefreshResponse relayToken(String relayToken) { this.relayToken = relayToken; return this; } /** * Get relayToken * @return relayToken **/ @ApiModelProperty(required = true, value = "") public String getRelayToken() { return relayToken; } public void setRelayToken(String relayToken) { this.relayToken = relayToken; } public CreditRelayRefreshResponse assetReportId(String assetReportId) { this.assetReportId = assetReportId; return this; } /** * A unique ID identifying an Asset Report. Like all Plaid identifiers, this ID is case sensitive. * @return assetReportId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique ID identifying an Asset Report. Like all Plaid identifiers, this ID is case sensitive.") public String getAssetReportId() { return assetReportId; } public void setAssetReportId(String assetReportId) { this.assetReportId = assetReportId; } public CreditRelayRefreshResponse 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; } CreditRelayRefreshResponse creditRelayRefreshResponse = (CreditRelayRefreshResponse) o; return Objects.equals(this.relayToken, creditRelayRefreshResponse.relayToken) && Objects.equals(this.assetReportId, creditRelayRefreshResponse.assetReportId) && Objects.equals(this.requestId, creditRelayRefreshResponse.requestId); } @Override public int hashCode() { return Objects.hash(relayToken, assetReportId, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditRelayRefreshResponse {\n"); sb.append(" relayToken: ").append(toIndentedString(relayToken)).append("\n"); sb.append(" assetReportId: ").append(toIndentedString(assetReportId)).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/ProtectUserInsightsGetRequest.java
src/main/java/com/plaid/client/model/ProtectUserInsightsGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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/user/insights/get */ @ApiModel(description = "Request object for /protect/user/insights/get") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProtectUserInsightsGetRequest { 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_CLIENT_USER_ID = "client_user_id"; @SerializedName(SERIALIZED_NAME_CLIENT_USER_ID) private String clientUserId; public ProtectUserInsightsGetRequest 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 ProtectUserInsightsGetRequest 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 ProtectUserInsightsGetRequest userId(String userId) { this.userId = userId; return this; } /** * The Plaid User ID. Either &#x60;user_id&#x60; or &#x60;client_user_id&#x60; must be provided. * @return userId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The Plaid User ID. Either `user_id` or `client_user_id` must be provided.") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public ProtectUserInsightsGetRequest clientUserId(String clientUserId) { this.clientUserId = clientUserId; return this; } /** * A unique ID representing the end user. Either &#x60;user_id&#x60; or &#x60;client_user_id&#x60; must be provided. * @return clientUserId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique ID representing the end user. Either `user_id` or `client_user_id` must be provided.") public String getClientUserId() { return clientUserId; } public void setClientUserId(String clientUserId) { this.clientUserId = clientUserId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProtectUserInsightsGetRequest protectUserInsightsGetRequest = (ProtectUserInsightsGetRequest) o; return Objects.equals(this.clientId, protectUserInsightsGetRequest.clientId) && Objects.equals(this.secret, protectUserInsightsGetRequest.secret) && Objects.equals(this.userId, protectUserInsightsGetRequest.userId) && Objects.equals(this.clientUserId, protectUserInsightsGetRequest.clientUserId); } @Override public int hashCode() { return Objects.hash(clientId, secret, userId, clientUserId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProtectUserInsightsGetRequest {\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(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewListResponse.java
src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewListResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.WatchlistScreeningReview; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Paginated list of screening reviews */ @ApiModel(description = "Paginated list of screening reviews") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WatchlistScreeningIndividualReviewListResponse { public static final String SERIALIZED_NAME_WATCHLIST_SCREENING_REVIEWS = "watchlist_screening_reviews"; @SerializedName(SERIALIZED_NAME_WATCHLIST_SCREENING_REVIEWS) private List<WatchlistScreeningReview> watchlistScreeningReviews = new ArrayList<>(); public static final String SERIALIZED_NAME_NEXT_CURSOR = "next_cursor"; @SerializedName(SERIALIZED_NAME_NEXT_CURSOR) private String nextCursor; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public WatchlistScreeningIndividualReviewListResponse watchlistScreeningReviews(List<WatchlistScreeningReview> watchlistScreeningReviews) { this.watchlistScreeningReviews = watchlistScreeningReviews; return this; } public WatchlistScreeningIndividualReviewListResponse addWatchlistScreeningReviewsItem(WatchlistScreeningReview watchlistScreeningReviewsItem) { this.watchlistScreeningReviews.add(watchlistScreeningReviewsItem); return this; } /** * List of screening reviews * @return watchlistScreeningReviews **/ @ApiModelProperty(required = true, value = "List of screening reviews") public List<WatchlistScreeningReview> getWatchlistScreeningReviews() { return watchlistScreeningReviews; } public void setWatchlistScreeningReviews(List<WatchlistScreeningReview> watchlistScreeningReviews) { this.watchlistScreeningReviews = watchlistScreeningReviews; } public WatchlistScreeningIndividualReviewListResponse nextCursor(String nextCursor) { this.nextCursor = nextCursor; return this; } /** * An identifier that determines which page of results you receive. * @return nextCursor **/ @javax.annotation.Nullable @ApiModelProperty(example = "eyJkaXJlY3Rpb24iOiJuZXh0Iiwib2Zmc2V0IjoiMTU5NDM", required = true, value = "An identifier that determines which page of results you receive.") public String getNextCursor() { return nextCursor; } public void setNextCursor(String nextCursor) { this.nextCursor = nextCursor; } public WatchlistScreeningIndividualReviewListResponse 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; } WatchlistScreeningIndividualReviewListResponse watchlistScreeningIndividualReviewListResponse = (WatchlistScreeningIndividualReviewListResponse) o; return Objects.equals(this.watchlistScreeningReviews, watchlistScreeningIndividualReviewListResponse.watchlistScreeningReviews) && Objects.equals(this.nextCursor, watchlistScreeningIndividualReviewListResponse.nextCursor) && Objects.equals(this.requestId, watchlistScreeningIndividualReviewListResponse.requestId); } @Override public int hashCode() { return Objects.hash(watchlistScreeningReviews, nextCursor, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WatchlistScreeningIndividualReviewListResponse {\n"); sb.append(" watchlistScreeningReviews: ").append(toIndentedString(watchlistScreeningReviews)).append("\n"); sb.append(" nextCursor: ").append(toIndentedString(nextCursor)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewListRequest.java
src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewListRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 reviews for an individual watchlist screening */ @ApiModel(description = "Request input for listing reviews for an individual watchlist screening") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WatchlistScreeningIndividualReviewListRequest { 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_WATCHLIST_SCREENING_ID = "watchlist_screening_id"; @SerializedName(SERIALIZED_NAME_WATCHLIST_SCREENING_ID) private String watchlistScreeningId; public static final String SERIALIZED_NAME_CURSOR = "cursor"; @SerializedName(SERIALIZED_NAME_CURSOR) private String cursor; public WatchlistScreeningIndividualReviewListRequest 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 WatchlistScreeningIndividualReviewListRequest 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 WatchlistScreeningIndividualReviewListRequest watchlistScreeningId(String watchlistScreeningId) { this.watchlistScreeningId = watchlistScreeningId; return this; } /** * ID of the associated screening. * @return watchlistScreeningId **/ @ApiModelProperty(example = "scr_52xR9LKo77r1Np", required = true, value = "ID of the associated screening.") public String getWatchlistScreeningId() { return watchlistScreeningId; } public void setWatchlistScreeningId(String watchlistScreeningId) { this.watchlistScreeningId = watchlistScreeningId; } public WatchlistScreeningIndividualReviewListRequest 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; } WatchlistScreeningIndividualReviewListRequest watchlistScreeningIndividualReviewListRequest = (WatchlistScreeningIndividualReviewListRequest) o; return Objects.equals(this.secret, watchlistScreeningIndividualReviewListRequest.secret) && Objects.equals(this.clientId, watchlistScreeningIndividualReviewListRequest.clientId) && Objects.equals(this.watchlistScreeningId, watchlistScreeningIndividualReviewListRequest.watchlistScreeningId) && Objects.equals(this.cursor, watchlistScreeningIndividualReviewListRequest.cursor); } @Override public int hashCode() { return Objects.hash(secret, clientId, watchlistScreeningId, cursor); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WatchlistScreeningIndividualReviewListRequest {\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" watchlistScreeningId: ").append(toIndentedString(watchlistScreeningId)).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/LinkSessionSuccess.java
src/main/java/com/plaid/client/model/LinkSessionSuccess.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.LinkSessionSuccessMetadata; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object representing an [onSuccess](https://plaid.com/docs/link/web/#onsuccess) callback from Link. This field is returned only for legacy integrations and is deprecated in favor of [&#x60;results.item_add_results&#x60;](https://plaid.com/docs/api/link/#link-token-get-response-link-sessions-results-item-add-results) which can support multiple public tokens in a single Link session, for flows such as multi-Item Link. If you are receiving &#x60;on_success&#x60;, contact your Account Manager to migrate to &#x60;results.item_add_results&#x60; instead. */ @ApiModel(description = "An object representing an [onSuccess](https://plaid.com/docs/link/web/#onsuccess) callback from Link. This field is returned only for legacy integrations and is deprecated in favor of [`results.item_add_results`](https://plaid.com/docs/api/link/#link-token-get-response-link-sessions-results-item-add-results) which can support multiple public tokens in a single Link session, for flows such as multi-Item Link. If you are receiving `on_success`, contact your Account Manager to migrate to `results.item_add_results` instead.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkSessionSuccess { public static final String SERIALIZED_NAME_PUBLIC_TOKEN = "public_token"; @SerializedName(SERIALIZED_NAME_PUBLIC_TOKEN) private String publicToken; public static final String SERIALIZED_NAME_METADATA = "metadata"; @SerializedName(SERIALIZED_NAME_METADATA) private LinkSessionSuccessMetadata metadata; public LinkSessionSuccess publicToken(String publicToken) { this.publicToken = publicToken; return this; } /** * Displayed once a user has successfully linked their Item. * @return publicToken **/ @ApiModelProperty(required = true, value = "Displayed once a user has successfully linked their Item.") public String getPublicToken() { return publicToken; } public void setPublicToken(String publicToken) { this.publicToken = publicToken; } public LinkSessionSuccess metadata(LinkSessionSuccessMetadata metadata) { this.metadata = metadata; return this; } /** * Get metadata * @return metadata **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public LinkSessionSuccessMetadata getMetadata() { return metadata; } public void setMetadata(LinkSessionSuccessMetadata metadata) { this.metadata = metadata; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkSessionSuccess linkSessionSuccess = (LinkSessionSuccess) o; return Objects.equals(this.publicToken, linkSessionSuccess.publicToken) && Objects.equals(this.metadata, linkSessionSuccess.metadata); } @Override public int hashCode() { return Objects.hash(publicToken, metadata); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkSessionSuccess {\n"); sb.append(" publicToken: ").append(toIndentedString(publicToken)).append("\n"); sb.append(" metadata: ").append(toIndentedString(metadata)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorIdentityMatchRequest.java
src/main/java/com/plaid/client/model/ProcessorIdentityMatchRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.IdentityMatchUser; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * ProcessorIdentityMatchRequest defines the request schema for &#x60;/processor/identity/match&#x60; */ @ApiModel(description = "ProcessorIdentityMatchRequest defines the request schema for `/processor/identity/match`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProcessorIdentityMatchRequest { 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_USER = "user"; @SerializedName(SERIALIZED_NAME_USER) private IdentityMatchUser user; public ProcessorIdentityMatchRequest 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 ProcessorIdentityMatchRequest 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 ProcessorIdentityMatchRequest 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 ProcessorIdentityMatchRequest user(IdentityMatchUser user) { this.user = user; return this; } /** * Get user * @return user **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public IdentityMatchUser getUser() { return user; } public void setUser(IdentityMatchUser user) { this.user = user; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProcessorIdentityMatchRequest processorIdentityMatchRequest = (ProcessorIdentityMatchRequest) o; return Objects.equals(this.clientId, processorIdentityMatchRequest.clientId) && Objects.equals(this.secret, processorIdentityMatchRequest.secret) && Objects.equals(this.processorToken, processorIdentityMatchRequest.processorToken) && Objects.equals(this.user, processorIdentityMatchRequest.user); } @Override public int hashCode() { return Objects.hash(clientId, secret, processorToken, user); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProcessorIdentityMatchRequest {\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(" user: ").append(toIndentedString(user)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WalletListResponse.java
src/main/java/com/plaid/client/model/WalletListResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.Wallet; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * WalletListResponse defines the response schema for &#x60;/wallet/list&#x60; */ @ApiModel(description = "WalletListResponse defines the response schema for `/wallet/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WalletListResponse { public static final String SERIALIZED_NAME_WALLETS = "wallets"; @SerializedName(SERIALIZED_NAME_WALLETS) private List<Wallet> wallets = new ArrayList<>(); public static final String SERIALIZED_NAME_NEXT_CURSOR = "next_cursor"; @SerializedName(SERIALIZED_NAME_NEXT_CURSOR) private String nextCursor; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public WalletListResponse wallets(List<Wallet> wallets) { this.wallets = wallets; return this; } public WalletListResponse addWalletsItem(Wallet walletsItem) { this.wallets.add(walletsItem); return this; } /** * An array of e-wallets * @return wallets **/ @ApiModelProperty(required = true, value = "An array of e-wallets") public List<Wallet> getWallets() { return wallets; } public void setWallets(List<Wallet> wallets) { this.wallets = wallets; } public WalletListResponse nextCursor(String nextCursor) { this.nextCursor = nextCursor; return this; } /** * Cursor used for fetching e-wallets created before the latest e-wallet provided in this response * @return nextCursor **/ @javax.annotation.Nullable @ApiModelProperty(value = "Cursor used for fetching e-wallets created before the latest e-wallet provided in this response") public String getNextCursor() { return nextCursor; } public void setNextCursor(String nextCursor) { this.nextCursor = nextCursor; } public WalletListResponse 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; } WalletListResponse walletListResponse = (WalletListResponse) o; return Objects.equals(this.wallets, walletListResponse.wallets) && Objects.equals(this.nextCursor, walletListResponse.nextCursor) && Objects.equals(this.requestId, walletListResponse.requestId); } @Override public int hashCode() { return Objects.hash(wallets, nextCursor, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WalletListResponse {\n"); sb.append(" wallets: ").append(toIndentedString(wallets)).append("\n"); sb.append(" nextCursor: ").append(toIndentedString(nextCursor)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/Warning.java
src/main/java/com/plaid/client/model/Warning.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.Cause; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * It is possible for an Asset Report to be returned with missing account owner information. In such cases, the Asset Report will contain warning data in the response, indicating why obtaining the owner information failed. */ @ApiModel(description = "It is possible for an Asset Report to be returned with missing account owner information. In such cases, the Asset 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 Warning { public static final String SERIALIZED_NAME_WARNING_TYPE = "warning_type"; @SerializedName(SERIALIZED_NAME_WARNING_TYPE) private String warningType; /** * The warning code identifies a specific kind of warning. &#x60;OWNERS_UNAVAILABLE&#x60; indicates that account-owner information is not available.&#x60;INVESTMENTS_UNAVAILABLE&#x60; indicates that Investments specific information is not available. &#x60;TRANSACTIONS_UNAVAILABLE&#x60; indicates that transactions information associated with Credit and Depository accounts are unavailable. */ @JsonAdapter(WarningCodeEnum.Adapter.class) public enum WarningCodeEnum { OWNERS_UNAVAILABLE("OWNERS_UNAVAILABLE"), INVESTMENTS_UNAVAILABLE("INVESTMENTS_UNAVAILABLE"), TRANSACTIONS_UNAVAILABLE("TRANSACTIONS_UNAVAILABLE"); private String value; WarningCodeEnum(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static WarningCodeEnum fromValue(String value) { for (WarningCodeEnum b : WarningCodeEnum.values()) { if (b.value.equals(value)) { return b; } } throw new IllegalArgumentException("Unexpected value '" + value + "'"); } public static class Adapter extends TypeAdapter<WarningCodeEnum> { @Override public void write(final JsonWriter jsonWriter, final WarningCodeEnum enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public WarningCodeEnum read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return WarningCodeEnum.fromValue(value); } } } public static final String SERIALIZED_NAME_WARNING_CODE = "warning_code"; @SerializedName(SERIALIZED_NAME_WARNING_CODE) private WarningCodeEnum warningCode; public static final String SERIALIZED_NAME_CAUSE = "cause"; @SerializedName(SERIALIZED_NAME_CAUSE) private Cause cause; public Warning warningType(String warningType) { this.warningType = warningType; return this; } /** * The warning type, which will always be &#x60;ASSET_REPORT_WARNING&#x60; * @return warningType **/ @ApiModelProperty(required = true, value = "The warning type, which will always be `ASSET_REPORT_WARNING`") public String getWarningType() { return warningType; } public void setWarningType(String warningType) { this.warningType = warningType; } public Warning warningCode(WarningCodeEnum warningCode) { this.warningCode = warningCode; return this; } /** * The warning code identifies a specific kind of warning. &#x60;OWNERS_UNAVAILABLE&#x60; indicates that account-owner information is not available.&#x60;INVESTMENTS_UNAVAILABLE&#x60; indicates that Investments specific information is not available. &#x60;TRANSACTIONS_UNAVAILABLE&#x60; indicates that transactions information associated with Credit and Depository accounts are unavailable. * @return warningCode **/ @ApiModelProperty(required = true, value = "The warning code identifies a specific kind of warning. `OWNERS_UNAVAILABLE` indicates that account-owner information is not available.`INVESTMENTS_UNAVAILABLE` indicates that Investments specific information is not available. `TRANSACTIONS_UNAVAILABLE` indicates that transactions information associated with Credit and Depository accounts are unavailable.") public WarningCodeEnum getWarningCode() { return warningCode; } public void setWarningCode(WarningCodeEnum warningCode) { this.warningCode = warningCode; } public Warning 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; } Warning warning = (Warning) o; return Objects.equals(this.warningType, warning.warningType) && Objects.equals(this.warningCode, warning.warningCode) && Objects.equals(this.cause, warning.cause); } @Override public int hashCode() { return Objects.hash(warningType, warningCode, cause); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Warning {\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/CreditPayrollIncomeGetRequest.java
src/main/java/com/plaid/client/model/CreditPayrollIncomeGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CreditPayrollIncomeGetRequestOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * CreditPayrollIncomeGetRequest defines the request schema for &#x60;/credit/payroll_income/get&#x60;. */ @ApiModel(description = "CreditPayrollIncomeGetRequest defines the request schema for `/credit/payroll_income/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditPayrollIncomeGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_USER_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) private String userToken; public static final String SERIALIZED_NAME_OPTIONS = "options"; @SerializedName(SERIALIZED_NAME_OPTIONS) private CreditPayrollIncomeGetRequestOptions options; public CreditPayrollIncomeGetRequest 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 CreditPayrollIncomeGetRequest 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 CreditPayrollIncomeGetRequest 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 CreditPayrollIncomeGetRequest options(CreditPayrollIncomeGetRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CreditPayrollIncomeGetRequestOptions getOptions() { return options; } public void setOptions(CreditPayrollIncomeGetRequestOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditPayrollIncomeGetRequest creditPayrollIncomeGetRequest = (CreditPayrollIncomeGetRequest) o; return Objects.equals(this.clientId, creditPayrollIncomeGetRequest.clientId) && Objects.equals(this.secret, creditPayrollIncomeGetRequest.secret) && Objects.equals(this.userToken, creditPayrollIncomeGetRequest.userToken) && Objects.equals(this.options, creditPayrollIncomeGetRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, secret, userToken, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditPayrollIncomeGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" userToken: ").append(toIndentedString(userToken)).append("\n"); sb.append(" options: ").append(toIndentedString(options)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/EntityWatchlistScreeningSearchTerms.java
src/main/java/com/plaid/client/model/EntityWatchlistScreeningSearchTerms.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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.net.URI; /** * Search terms associated with an entity used for searching against watchlists */ @ApiModel(description = "Search terms associated with an entity used for searching against watchlists") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class EntityWatchlistScreeningSearchTerms { 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_LEGAL_NAME = "legal_name"; @SerializedName(SERIALIZED_NAME_LEGAL_NAME) private String legalName; public static final String SERIALIZED_NAME_DOCUMENT_NUMBER = "document_number"; @SerializedName(SERIALIZED_NAME_DOCUMENT_NUMBER) private String documentNumber; public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) private String emailAddress; public static final String SERIALIZED_NAME_COUNTRY = "country"; @SerializedName(SERIALIZED_NAME_COUNTRY) private String country; public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBER) private String phoneNumber; public static final String SERIALIZED_NAME_URL = "url"; @SerializedName(SERIALIZED_NAME_URL) private URI url; public static final String SERIALIZED_NAME_VERSION = "version"; @SerializedName(SERIALIZED_NAME_VERSION) private Integer version; public EntityWatchlistScreeningSearchTerms 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 EntityWatchlistScreeningSearchTerms legalName(String legalName) { this.legalName = legalName; return this; } /** * The name of the organization being screened. Must have at least one alphabetical character, have a maximum length of 100 characters, and not include leading or trailing spaces. * @return legalName **/ @ApiModelProperty(example = "Al-Qaida", required = true, value = "The name of the organization being screened. Must have at least one alphabetical character, have a maximum length of 100 characters, and not include leading or trailing spaces.") public String getLegalName() { return legalName; } public void setLegalName(String legalName) { this.legalName = legalName; } public EntityWatchlistScreeningSearchTerms documentNumber(String documentNumber) { this.documentNumber = documentNumber; return this; } /** * The numeric or alphanumeric identifier associated with this document. Must be between 4 and 32 characters long, and cannot have leading or trailing spaces. * @return documentNumber **/ @javax.annotation.Nullable @ApiModelProperty(example = "C31195855", required = true, value = "The numeric or alphanumeric identifier associated with this document. Must be between 4 and 32 characters long, and cannot have leading or trailing spaces.") public String getDocumentNumber() { return documentNumber; } public void setDocumentNumber(String documentNumber) { this.documentNumber = documentNumber; } public EntityWatchlistScreeningSearchTerms emailAddress(String emailAddress) { this.emailAddress = emailAddress; return this; } /** * A valid email address. Must not have leading or trailing spaces and address must be RFC compliant. For more information, see [RFC 3696](https://datatracker.ietf.org/doc/html/rfc3696). * @return emailAddress **/ @javax.annotation.Nullable @ApiModelProperty(example = "user@example.com", required = true, value = "A valid email address. Must not have leading or trailing spaces and address must be RFC compliant. For more information, see [RFC 3696](https://datatracker.ietf.org/doc/html/rfc3696).") public String getEmailAddress() { return emailAddress; } public void setEmailAddress(String emailAddress) { this.emailAddress = emailAddress; } public EntityWatchlistScreeningSearchTerms country(String country) { this.country = country; return this; } /** * Valid, capitalized, two-letter ISO code representing the country of this object. Must be in ISO 3166-1 alpha-2 form. * @return country **/ @javax.annotation.Nullable @ApiModelProperty(example = "US", required = true, value = "Valid, capitalized, two-letter ISO code representing the country of this object. Must be in ISO 3166-1 alpha-2 form.") public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public EntityWatchlistScreeningSearchTerms phoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; return this; } /** * A phone number in E.164 format. * @return phoneNumber **/ @javax.annotation.Nullable @ApiModelProperty(example = "+14025671234", required = true, value = "A phone number in E.164 format.") public String getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } public EntityWatchlistScreeningSearchTerms url(URI url) { this.url = url; return this; } /** * An &#39;http&#39; or &#39;https&#39; URL (must begin with either of those). * @return url **/ @javax.annotation.Nullable @ApiModelProperty(example = "https://example.com", required = true, value = "An 'http' or 'https' URL (must begin with either of those).") public URI getUrl() { return url; } public void setUrl(URI url) { this.url = url; } public EntityWatchlistScreeningSearchTerms version(Integer version) { this.version = version; return this; } /** * The current version of the search terms. Starts at &#x60;1&#x60; and increments with each edit to &#x60;search_terms&#x60;. * @return version **/ @ApiModelProperty(example = "1", required = true, value = "The current version of the search terms. Starts at `1` and increments with each edit to `search_terms`.") public Integer getVersion() { return version; } public void setVersion(Integer version) { this.version = version; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } EntityWatchlistScreeningSearchTerms entityWatchlistScreeningSearchTerms = (EntityWatchlistScreeningSearchTerms) o; return Objects.equals(this.entityWatchlistProgramId, entityWatchlistScreeningSearchTerms.entityWatchlistProgramId) && Objects.equals(this.legalName, entityWatchlistScreeningSearchTerms.legalName) && Objects.equals(this.documentNumber, entityWatchlistScreeningSearchTerms.documentNumber) && Objects.equals(this.emailAddress, entityWatchlistScreeningSearchTerms.emailAddress) && Objects.equals(this.country, entityWatchlistScreeningSearchTerms.country) && Objects.equals(this.phoneNumber, entityWatchlistScreeningSearchTerms.phoneNumber) && Objects.equals(this.url, entityWatchlistScreeningSearchTerms.url) && Objects.equals(this.version, entityWatchlistScreeningSearchTerms.version); } @Override public int hashCode() { return Objects.hash(entityWatchlistProgramId, legalName, documentNumber, emailAddress, country, phoneNumber, url, version); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class EntityWatchlistScreeningSearchTerms {\n"); sb.append(" entityWatchlistProgramId: ").append(toIndentedString(entityWatchlistProgramId)).append("\n"); sb.append(" legalName: ").append(toIndentedString(legalName)).append("\n"); sb.append(" documentNumber: ").append(toIndentedString(documentNumber)).append("\n"); sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n"); sb.append(" country: ").append(toIndentedString(country)).append("\n"); sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n"); sb.append(" url: ").append(toIndentedString(url)).append("\n"); sb.append(" version: ").append(toIndentedString(version)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ConsentedAccount.java
src/main/java/com/plaid/client/model/ConsentedAccount.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.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 io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * A financial institution account. */ @ApiModel(description = "A financial institution account.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ConsentedAccount { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_MASK = "mask"; @SerializedName(SERIALIZED_NAME_MASK) private String mask; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_OFFICIAL_NAME = "official_name"; @SerializedName(SERIALIZED_NAME_OFFICIAL_NAME) private String officialName; public static final String SERIALIZED_NAME_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 ConsentedAccount accountId(String accountId) { this.accountId = accountId; return this; } /** * Plaid’s unique identifier for the account. Like all Plaid identifiers, the &#x60;account_id&#x60; is case sensitive. * @return accountId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Plaid’s unique identifier for the account. Like all Plaid identifiers, the `account_id` is case sensitive.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public ConsentedAccount mask(String mask) { this.mask = mask; return this; } /** * The last 2-4 alphanumeric characters of an account&#39;s official account number * @return mask **/ @javax.annotation.Nullable @ApiModelProperty(value = "The last 2-4 alphanumeric characters of an account's official account number") public String getMask() { return mask; } public void setMask(String mask) { this.mask = mask; } public ConsentedAccount 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 **/ @javax.annotation.Nullable @ApiModelProperty(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 ConsentedAccount 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(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 ConsentedAccount 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 ConsentedAccount 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; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ConsentedAccount consentedAccount = (ConsentedAccount) o; return Objects.equals(this.accountId, consentedAccount.accountId) && Objects.equals(this.mask, consentedAccount.mask) && Objects.equals(this.name, consentedAccount.name) && Objects.equals(this.officialName, consentedAccount.officialName) && Objects.equals(this.type, consentedAccount.type) && Objects.equals(this.subtype, consentedAccount.subtype); } @Override public int hashCode() { return Objects.hash(accountId, mask, name, officialName, type, subtype); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ConsentedAccount {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" mask: ").append(toIndentedString(mask)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" officialName: ").append(toIndentedString(officialName)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" subtype: ").append(toIndentedString(subtype)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PhysicalDocumentCategory.java
src/main/java/com/plaid/client/model/PhysicalDocumentCategory.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 identity document detected in the images provided. Will always be one of the following values: &#x60;drivers_license&#x60; - A driver&#39;s license issued by the associated country, establishing identity without any guarantee as to citizenship, and granting driving privileges &#x60;id_card&#x60; - A general national identification card, distinct from driver&#39;s licenses as it only establishes identity &#x60;passport&#x60; - A travel passport issued by the associated country for one of its citizens &#x60;residence_permit_card&#x60; - An identity document issued by the associated country permitting a foreign citizen to &lt;em&gt;temporarily&lt;/em&gt; reside there &#x60;resident_card&#x60; - An identity document issued by the associated country permitting a foreign citizen to &lt;em&gt;permanently&lt;/em&gt; reside there &#x60;visa&#x60; - An identity document issued by the associated country permitting a foreign citizen entry for a short duration and for a specific purpose, typically no longer than 6 months Note: This value may be different from the ID type that the user selects within Link. For example, if they select \&quot;Driver&#39;s License\&quot; but then submit a picture of a passport, this field will say &#x60;passport&#x60; */ @JsonAdapter(PhysicalDocumentCategory.Adapter.class) public enum PhysicalDocumentCategory { DRIVERS_LICENSE("drivers_license"), ID_CARD("id_card"), PASSPORT("passport"), RESIDENCE_PERMIT_CARD("residence_permit_card"), RESIDENT_CARD("resident_card"), VISA("visa"), // 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; PhysicalDocumentCategory(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PhysicalDocumentCategory fromValue(String value) { for (PhysicalDocumentCategory b : PhysicalDocumentCategory.values()) { if (b.value.equals(value)) { return b; } } return PhysicalDocumentCategory.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<PhysicalDocumentCategory> { @Override public void write(final JsonWriter jsonWriter, final PhysicalDocumentCategory enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PhysicalDocumentCategory read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PhysicalDocumentCategory.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/TransferAuthorizationGuaranteeDecisionRationaleCode.java
src/main/java/com/plaid/client/model/TransferAuthorizationGuaranteeDecisionRationaleCode.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 code representing the reason Plaid declined to guarantee this transfer: &#x60;RETURN_BANK&#x60;: The risk of a bank-initiated return (for example, an R01/NSF) is too high to guarantee this transfer. &#x60;RETURN_CUSTOMER&#x60;: The risk of a customer-initiated return (for example, a R10/Unauthorized) is too high to guarantee this transfer. &#x60;GUARANTEE_LIMIT_REACHED&#x60;: This transfer is low-risk, but Guarantee has exhausted an internal limit on the number or rate of guarantees that applies to this transfer. &#x60;RISK_ESTIMATE_UNAVAILABLE&#x60;: A risk estimate is unavailable for this Item. &#x60;REQUIRED_PARAM_MISSING&#x60;: Required fields are missing. */ @JsonAdapter(TransferAuthorizationGuaranteeDecisionRationaleCode.Adapter.class) public enum TransferAuthorizationGuaranteeDecisionRationaleCode { RETURN_BANK("RETURN_BANK"), RETURN_CUSTOMER("RETURN_CUSTOMER"), GUARANTEE_LIMIT_REACHED("GUARANTEE_LIMIT_REACHED"), RISK_ESTIMATE_UNAVAILABLE("RISK_ESTIMATE_UNAVAILABLE"), REQUIRED_PARAM_MISSING("REQUIRED_PARAM_MISSING"), // 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; TransferAuthorizationGuaranteeDecisionRationaleCode(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransferAuthorizationGuaranteeDecisionRationaleCode fromValue(String value) { for (TransferAuthorizationGuaranteeDecisionRationaleCode b : TransferAuthorizationGuaranteeDecisionRationaleCode.values()) { if (b.value.equals(value)) { return b; } } return TransferAuthorizationGuaranteeDecisionRationaleCode.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<TransferAuthorizationGuaranteeDecisionRationaleCode> { @Override public void write(final JsonWriter jsonWriter, final TransferAuthorizationGuaranteeDecisionRationaleCode enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransferAuthorizationGuaranteeDecisionRationaleCode read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransferAuthorizationGuaranteeDecisionRationaleCode.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/TransferCreditFundsSource.java
src/main/java/com/plaid/client/model/TransferCreditFundsSource.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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; /** * This field is now deprecated. You may ignore it for transfers created on and after 12/01/2023. Specifies the source of funds for the transfer. Only valid for &#x60;credit&#x60; transfers, and defaults to &#x60;sweep&#x60; if not specified. This field is not specified for &#x60;debit&#x60; transfers. &#x60;sweep&#x60; - Sweep funds from your funding account &#x60;prefunded_rtp_credits&#x60; - Use your prefunded RTP credit balance with Plaid &#x60;prefunded_ach_credits&#x60; - Use your prefunded ACH credit balance with Plaid */ @JsonAdapter(TransferCreditFundsSource.Adapter.class) public enum TransferCreditFundsSource { SWEEP("sweep"), PREFUNDED_RTP_CREDITS("prefunded_rtp_credits"), PREFUNDED_ACH_CREDITS("prefunded_ach_credits"), NULL("null"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; TransferCreditFundsSource(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransferCreditFundsSource fromValue(String value) { for (TransferCreditFundsSource b : TransferCreditFundsSource.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<TransferCreditFundsSource> { @Override public void write(final JsonWriter jsonWriter, final TransferCreditFundsSource enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransferCreditFundsSource read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransferCreditFundsSource.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/AssetReportUser.java
src/main/java/com/plaid/client/model/AssetReportUser.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 user object allows you to provide additional information about the user to be appended to the Asset Report. All fields are optional. The &#x60;first_name&#x60;, &#x60;last_name&#x60;, and &#x60;ssn&#x60; fields are required if you would like the Report to be eligible for Fannie Mae’s Day 1 Certainty™ program. */ @ApiModel(description = "The user object allows you to provide additional information about the user to be appended to the Asset Report. All fields are optional. The `first_name`, `last_name`, and `ssn` fields are required if you would like the Report to be eligible for Fannie Mae’s Day 1 Certainty™ program.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class AssetReportUser { 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_FIRST_NAME = "first_name"; @SerializedName(SERIALIZED_NAME_FIRST_NAME) private String firstName; public static final String SERIALIZED_NAME_MIDDLE_NAME = "middle_name"; @SerializedName(SERIALIZED_NAME_MIDDLE_NAME) private String middleName; public static final String SERIALIZED_NAME_LAST_NAME = "last_name"; @SerializedName(SERIALIZED_NAME_LAST_NAME) private String lastName; public static final String SERIALIZED_NAME_SSN = "ssn"; @SerializedName(SERIALIZED_NAME_SSN) private String ssn; 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 AssetReportUser clientUserId(String clientUserId) { this.clientUserId = clientUserId; return this; } /** * An identifier you determine and submit for the user. * @return clientUserId **/ @javax.annotation.Nullable @ApiModelProperty(value = "An identifier you determine and submit for the user.") public String getClientUserId() { return clientUserId; } public void setClientUserId(String clientUserId) { this.clientUserId = clientUserId; } public AssetReportUser firstName(String firstName) { this.firstName = firstName; return this; } /** * The user&#39;s first name. Required for the Fannie Mae Day 1 Certainty™ program. * @return firstName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's first name. Required for the Fannie Mae Day 1 Certainty™ program.") public String getFirstName() { return firstName; } public void setFirstName(String firstName) { this.firstName = firstName; } public AssetReportUser middleName(String middleName) { this.middleName = middleName; return this; } /** * The user&#39;s middle name * @return middleName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's middle name") public String getMiddleName() { return middleName; } public void setMiddleName(String middleName) { this.middleName = middleName; } public AssetReportUser lastName(String lastName) { this.lastName = lastName; return this; } /** * The user&#39;s last name. Required for the Fannie Mae Day 1 Certainty™ program. * @return lastName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's last name. Required for the Fannie Mae Day 1 Certainty™ program.") public String getLastName() { return lastName; } public void setLastName(String lastName) { this.lastName = lastName; } public AssetReportUser ssn(String ssn) { this.ssn = ssn; return this; } /** * The user&#39;s Social Security Number. Required for the Fannie Mae Day 1 Certainty™ program. Format: \&quot;ddd-dd-dddd\&quot; * @return ssn **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's Social Security Number. Required for the Fannie Mae Day 1 Certainty™ program. Format: \"ddd-dd-dddd\"") public String getSsn() { return ssn; } public void setSsn(String ssn) { this.ssn = ssn; } public AssetReportUser phoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; return this; } /** * The user&#39;s phone number, in E.164 format: +{countrycode}{number}. For example: \&quot;+14151234567\&quot;. Phone numbers provided in other formats will be parsed on a best-effort basis. * @return phoneNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's phone number, in E.164 format: +{countrycode}{number}. For example: \"+14151234567\". Phone numbers provided in other formats will be parsed on a best-effort basis.") public String getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } public AssetReportUser email(String email) { this.email = email; return this; } /** * The user&#39;s email address. * @return email **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user's email address.") 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; } AssetReportUser assetReportUser = (AssetReportUser) o; return Objects.equals(this.clientUserId, assetReportUser.clientUserId) && Objects.equals(this.firstName, assetReportUser.firstName) && Objects.equals(this.middleName, assetReportUser.middleName) && Objects.equals(this.lastName, assetReportUser.lastName) && Objects.equals(this.ssn, assetReportUser.ssn) && Objects.equals(this.phoneNumber, assetReportUser.phoneNumber) && Objects.equals(this.email, assetReportUser.email); } @Override public int hashCode() { return Objects.hash(clientUserId, firstName, middleName, lastName, ssn, phoneNumber, email); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetReportUser {\n"); sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n"); sb.append(" firstName: ").append(toIndentedString(firstName)).append("\n"); sb.append(" middleName: ").append(toIndentedString(middleName)).append("\n"); sb.append(" lastName: ").append(toIndentedString(lastName)).append("\n"); sb.append(" ssn: ").append(toIndentedString(ssn)).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/ProfileNetworkStatusGetResponse.java
src/main/java/com/plaid/client/model/ProfileNetworkStatusGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.NetworkStatusGetResponseNetworkStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * ProfileNetworkStatusGetResponse defines the response schema for &#x60;/profile/network_status/get&#x60; */ @ApiModel(description = "ProfileNetworkStatusGetResponse defines the response schema for `/profile/network_status/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProfileNetworkStatusGetResponse { public static final String SERIALIZED_NAME_NETWORK_STATUS = "network_status"; @SerializedName(SERIALIZED_NAME_NETWORK_STATUS) private NetworkStatusGetResponseNetworkStatus networkStatus; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public ProfileNetworkStatusGetResponse networkStatus(NetworkStatusGetResponseNetworkStatus networkStatus) { this.networkStatus = networkStatus; return this; } /** * Get networkStatus * @return networkStatus **/ @ApiModelProperty(required = true, value = "") public NetworkStatusGetResponseNetworkStatus getNetworkStatus() { return networkStatus; } public void setNetworkStatus(NetworkStatusGetResponseNetworkStatus networkStatus) { this.networkStatus = networkStatus; } public ProfileNetworkStatusGetResponse 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; } ProfileNetworkStatusGetResponse profileNetworkStatusGetResponse = (ProfileNetworkStatusGetResponse) o; return Objects.equals(this.networkStatus, profileNetworkStatusGetResponse.networkStatus) && Objects.equals(this.requestId, profileNetworkStatusGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(networkStatus, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProfileNetworkStatusGetResponse {\n"); sb.append(" networkStatus: ").append(toIndentedString(networkStatus)).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/IdentityVerificationStepUpdatedWebhook.java
src/main/java/com/plaid/client/model/IdentityVerificationStepUpdatedWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.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 end user has completed a step of the Identity Verification process. */ @ApiModel(description = "Fired when an end user has completed a step of the Identity Verification process.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityVerificationStepUpdatedWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_IDENTITY_VERIFICATION_ID = "identity_verification_id"; @SerializedName(SERIALIZED_NAME_IDENTITY_VERIFICATION_ID) private String identityVerificationId; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public IdentityVerificationStepUpdatedWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;IDENTITY_VERIFICATION&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`IDENTITY_VERIFICATION`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public IdentityVerificationStepUpdatedWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;STEP_UPDATED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`STEP_UPDATED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public IdentityVerificationStepUpdatedWebhook identityVerificationId(String identityVerificationId) { this.identityVerificationId = identityVerificationId; return this; } /** * The ID of the associated Identity Verification attempt. * @return identityVerificationId **/ @ApiModelProperty(required = true, value = "The ID of the associated Identity Verification attempt.") public String getIdentityVerificationId() { return identityVerificationId; } public void setIdentityVerificationId(String identityVerificationId) { this.identityVerificationId = identityVerificationId; } public IdentityVerificationStepUpdatedWebhook 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; } IdentityVerificationStepUpdatedWebhook identityVerificationStepUpdatedWebhook = (IdentityVerificationStepUpdatedWebhook) o; return Objects.equals(this.webhookType, identityVerificationStepUpdatedWebhook.webhookType) && Objects.equals(this.webhookCode, identityVerificationStepUpdatedWebhook.webhookCode) && Objects.equals(this.identityVerificationId, identityVerificationStepUpdatedWebhook.identityVerificationId) && Objects.equals(this.environment, identityVerificationStepUpdatedWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, identityVerificationId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityVerificationStepUpdatedWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" identityVerificationId: ").append(toIndentedString(identityVerificationId)).append("\n"); sb.append(" environment: ").append(toIndentedString(environment)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PayrollIncomeRateOfPay.java
src/main/java/com/plaid/client/model/PayrollIncomeRateOfPay.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 rate at which an individual is paid. */ @ApiModel(description = "An object representing the rate at which an individual is paid.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PayrollIncomeRateOfPay { public static final String SERIALIZED_NAME_PAY_RATE = "pay_rate"; @SerializedName(SERIALIZED_NAME_PAY_RATE) private String payRate; public static final String SERIALIZED_NAME_PAY_AMOUNT = "pay_amount"; @SerializedName(SERIALIZED_NAME_PAY_AMOUNT) private Double payAmount; public PayrollIncomeRateOfPay payRate(String payRate) { this.payRate = payRate; return this; } /** * The rate at which an employee is paid. * @return payRate **/ @javax.annotation.Nullable @ApiModelProperty(value = "The rate at which an employee is paid.") public String getPayRate() { return payRate; } public void setPayRate(String payRate) { this.payRate = payRate; } public PayrollIncomeRateOfPay payAmount(Double payAmount) { this.payAmount = payAmount; return this; } /** * The amount at which an employee is paid. * @return payAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The amount at which an employee is paid.") public Double getPayAmount() { return payAmount; } public void setPayAmount(Double payAmount) { this.payAmount = payAmount; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PayrollIncomeRateOfPay payrollIncomeRateOfPay = (PayrollIncomeRateOfPay) o; return Objects.equals(this.payRate, payrollIncomeRateOfPay.payRate) && Objects.equals(this.payAmount, payrollIncomeRateOfPay.payAmount); } @Override public int hashCode() { return Objects.hash(payRate, payAmount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PayrollIncomeRateOfPay {\n"); sb.append(" payRate: ").append(toIndentedString(payRate)).append("\n"); sb.append(" payAmount: ").append(toIndentedString(payAmount)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditBankIncomeCause.java
src/main/java/com/plaid/client/model/CreditBankIncomeCause.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CreditBankIncomeErrorType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An error object and associated &#x60;item_id&#x60; used to identify a specific Item and error when a batch operation operating on multiple Items has encountered an error in one of the Items. */ @ApiModel(description = "An error object and associated `item_id` used to identify a specific Item and error when a batch operation operating on multiple Items has encountered an error in one of the Items.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditBankIncomeCause { public static final String SERIALIZED_NAME_ERROR_TYPE = "error_type"; @SerializedName(SERIALIZED_NAME_ERROR_TYPE) private CreditBankIncomeErrorType 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 static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public CreditBankIncomeCause errorType(CreditBankIncomeErrorType errorType) { this.errorType = errorType; return this; } /** * Get errorType * @return errorType **/ @ApiModelProperty(required = true, value = "") public CreditBankIncomeErrorType getErrorType() { return errorType; } public void setErrorType(CreditBankIncomeErrorType errorType) { this.errorType = errorType; } public CreditBankIncomeCause errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * We use standard HTTP response codes for success and failure notifications, and our errors are further classified by &#x60;error_type&#x60;. In general, 200 HTTP codes correspond to success, 40X codes are for developer- or user-related failures, and 50X codes are for Plaid-related issues. Error fields will be &#x60;null&#x60; if no error has occurred. * @return errorCode **/ @ApiModelProperty(required = true, value = "We use standard HTTP response codes for success and failure notifications, and our errors are further classified by `error_type`. In general, 200 HTTP codes correspond to success, 40X codes are for developer- or user-related failures, and 50X codes are for Plaid-related issues. Error fields will be `null` if no error has occurred.") public String getErrorCode() { return errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public CreditBankIncomeCause errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * A developer-friendly representation of the error code. This may change over time and is not safe for programmatic use. * @return errorMessage **/ @ApiModelProperty(required = true, value = "A developer-friendly representation of the error code. This may change over time and is not safe for programmatic use.") public String getErrorMessage() { return errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public CreditBankIncomeCause displayMessage(String displayMessage) { this.displayMessage = displayMessage; return this; } /** * A user-friendly representation of the error code. null if the error is not related to user action. This may change over time and is not safe for programmatic use. * @return displayMessage **/ @ApiModelProperty(required = true, value = "A user-friendly representation of the error code. null if the error is not related to user action. This may change over time and is not safe for programmatic use.") public String getDisplayMessage() { return displayMessage; } public void setDisplayMessage(String displayMessage) { this.displayMessage = displayMessage; } public CreditBankIncomeCause itemId(String itemId) { this.itemId = itemId; return this; } /** * The &#x60;item_id&#x60; of the Item associated with this warning. * @return itemId **/ @ApiModelProperty(required = true, value = "The `item_id` of the Item associated with this warning.") 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; } CreditBankIncomeCause creditBankIncomeCause = (CreditBankIncomeCause) o; return Objects.equals(this.errorType, creditBankIncomeCause.errorType) && Objects.equals(this.errorCode, creditBankIncomeCause.errorCode) && Objects.equals(this.errorMessage, creditBankIncomeCause.errorMessage) && Objects.equals(this.displayMessage, creditBankIncomeCause.displayMessage) && Objects.equals(this.itemId, creditBankIncomeCause.itemId); } @Override public int hashCode() { return Objects.hash(errorType, errorCode, errorMessage, displayMessage, itemId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditBankIncomeCause {\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(" 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/OriginatingFundSource.java
src/main/java/com/plaid/client/model/OriginatingFundSource.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.PaymentInitiationAddress; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The original source of the funds. This field is required by local regulation for certain businesses (e.g. money remittance) to send payouts to recipients in the EU and UK. */ @ApiModel(description = "The original source of the funds. This field is required by local regulation for certain businesses (e.g. money remittance) to send payouts to recipients in the EU and UK.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class OriginatingFundSource { public static final String SERIALIZED_NAME_FULL_NAME = "full_name"; @SerializedName(SERIALIZED_NAME_FULL_NAME) private String fullName; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private PaymentInitiationAddress address; public static final String SERIALIZED_NAME_ACCOUNT_NUMBER = "account_number"; @SerializedName(SERIALIZED_NAME_ACCOUNT_NUMBER) private String accountNumber; public static final String SERIALIZED_NAME_BIC = "bic"; @SerializedName(SERIALIZED_NAME_BIC) private String bic; public OriginatingFundSource fullName(String fullName) { this.fullName = fullName; return this; } /** * The full name associated with the source of the funds. * @return fullName **/ @ApiModelProperty(required = true, value = "The full name associated with the source of the funds.") public String getFullName() { return fullName; } public void setFullName(String fullName) { this.fullName = fullName; } public OriginatingFundSource address(PaymentInitiationAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public PaymentInitiationAddress getAddress() { return address; } public void setAddress(PaymentInitiationAddress address) { this.address = address; } public OriginatingFundSource accountNumber(String accountNumber) { this.accountNumber = accountNumber; return this; } /** * The account number from which the funds are sourced. * @return accountNumber **/ @ApiModelProperty(required = true, value = "The account number from which the funds are sourced.") public String getAccountNumber() { return accountNumber; } public void setAccountNumber(String accountNumber) { this.accountNumber = accountNumber; } public OriginatingFundSource 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; } OriginatingFundSource originatingFundSource = (OriginatingFundSource) o; return Objects.equals(this.fullName, originatingFundSource.fullName) && Objects.equals(this.address, originatingFundSource.address) && Objects.equals(this.accountNumber, originatingFundSource.accountNumber) && Objects.equals(this.bic, originatingFundSource.bic); } @Override public int hashCode() { return Objects.hash(fullName, address, accountNumber, bic); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class OriginatingFundSource {\n"); sb.append(" fullName: ").append(toIndentedString(fullName)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" accountNumber: ").append(toIndentedString(accountNumber)).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/PaystubOverrideDeductions.java
src/main/java/com/plaid/client/model/PaystubOverrideDeductions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.PaystubOverrideDeductionsBreakdown; import com.plaid.client.model.PaystubOverrideDeductionsTotal; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * An object with the deduction information found on a paystub. */ @ApiModel(description = "An object with the deduction information found on a paystub.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaystubOverrideDeductions { public static final String SERIALIZED_NAME_BREAKDOWN = "breakdown"; @SerializedName(SERIALIZED_NAME_BREAKDOWN) private List<PaystubOverrideDeductionsBreakdown> breakdown = null; public static final String SERIALIZED_NAME_TOTAL = "total"; @SerializedName(SERIALIZED_NAME_TOTAL) private PaystubOverrideDeductionsTotal total; public PaystubOverrideDeductions breakdown(List<PaystubOverrideDeductionsBreakdown> breakdown) { this.breakdown = breakdown; return this; } public PaystubOverrideDeductions addBreakdownItem(PaystubOverrideDeductionsBreakdown breakdownItem) { if (this.breakdown == null) { this.breakdown = new ArrayList<>(); } this.breakdown.add(breakdownItem); return this; } /** * Get breakdown * @return breakdown **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public List<PaystubOverrideDeductionsBreakdown> getBreakdown() { return breakdown; } public void setBreakdown(List<PaystubOverrideDeductionsBreakdown> breakdown) { this.breakdown = breakdown; } public PaystubOverrideDeductions total(PaystubOverrideDeductionsTotal total) { this.total = total; return this; } /** * Get total * @return total **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PaystubOverrideDeductionsTotal getTotal() { return total; } public void setTotal(PaystubOverrideDeductionsTotal total) { this.total = total; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PaystubOverrideDeductions paystubOverrideDeductions = (PaystubOverrideDeductions) o; return Objects.equals(this.breakdown, paystubOverrideDeductions.breakdown) && Objects.equals(this.total, paystubOverrideDeductions.total); } @Override public int hashCode() { return Objects.hash(breakdown, total); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaystubOverrideDeductions {\n"); sb.append(" breakdown: ").append(toIndentedString(breakdown)).append("\n"); sb.append(" total: ").append(toIndentedString(total)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/Asset.java
src/main/java/com/plaid/client/model/Asset.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.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.AssetOwners; import com.plaid.client.model.AssetTransactions; 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 Asset { 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_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 AssetTransactions 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 Asset 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 Asset 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 Asset 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 Asset ASSET_TRANSACTIONS(AssetTransactions ASSET_TRANSACTIONS) { this.ASSET_TRANSACTIONS = ASSET_TRANSACTIONS; return this; } /** * Get ASSET_TRANSACTIONS * @return ASSET_TRANSACTIONS **/ @ApiModelProperty(required = true, value = "") public AssetTransactions getASSETTRANSACTIONS() { return ASSET_TRANSACTIONS; } public void setASSETTRANSACTIONS(AssetTransactions ASSET_TRANSACTIONS) { this.ASSET_TRANSACTIONS = ASSET_TRANSACTIONS; } public Asset 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; } Asset asset = (Asset) o; return Objects.equals(this.ASSET_DETAIL, asset.ASSET_DETAIL) && Objects.equals(this.ASSET_OWNERS, asset.ASSET_OWNERS) && Objects.equals(this.ASSET_HOLDER, asset.ASSET_HOLDER) && Objects.equals(this.ASSET_TRANSACTIONS, asset.ASSET_TRANSACTIONS) && Objects.equals(this.VALIDATION_SOURCES, asset.VALIDATION_SOURCES); } @Override public int hashCode() { return Objects.hash(ASSET_DETAIL, ASSET_OWNERS, ASSET_HOLDER, ASSET_TRANSACTIONS, VALIDATION_SOURCES); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Asset {\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_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/UserIDNumber.java
src/main/java/com/plaid/client/model/UserIDNumber.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.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 submitted by the user, currently used only for the Identity Verification product. If the user has not submitted this data yet, this field will be &#x60;null&#x60;. Otherwise, both fields are guaranteed to be filled. */ @ApiModel(description = "ID number submitted by the user, currently used only for the Identity Verification product. If the user has not submitted this data yet, this field will be `null`. Otherwise, both fields are guaranteed to be filled.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class UserIDNumber { 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 UserIDNumber value(String value) { this.value = value; return this; } /** * Value of identity document value typed in by user. Alpha-numeric, with all formatting characters stripped. For specific format requirements by ID type, see [Input Validation Rules](https://plaid.com/docs/identity-verification/hybrid-input-validation/#id-numbers). * @return value **/ @ApiModelProperty(example = "123456789", required = true, value = "Value of identity document value typed in by user. Alpha-numeric, with all formatting characters stripped. For specific format requirements by ID type, see [Input Validation Rules](https://plaid.com/docs/identity-verification/hybrid-input-validation/#id-numbers).") public String getValue() { return value; } public void setValue(String value) { this.value = value; } public UserIDNumber 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; } UserIDNumber userIDNumber = (UserIDNumber) o; return Objects.equals(this.value, userIDNumber.value) && Objects.equals(this.type, userIDNumber.type); } @Override public int hashCode() { return Objects.hash(value, type); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class UserIDNumber {\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