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/LoanIdentifierType.java
src/main/java/com/plaid/client/model/LoanIdentifierType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 prescribed list that specifies the type of loan identifier. */ @JsonAdapter(LoanIdentifierType.Adapter.class) public enum LoanIdentifierType { LENDERLOAN("LenderLoan"), UNIVERSALLOAN("UniversalLoan"), // 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; LoanIdentifierType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static LoanIdentifierType fromValue(String value) { for (LoanIdentifierType b : LoanIdentifierType.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<LoanIdentifierType> { @Override public void write(final JsonWriter jsonWriter, final LoanIdentifierType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public LoanIdentifierType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return LoanIdentifierType.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/AuthUpdateTypes.java
src/main/java/com/plaid/client/model/AuthUpdateTypes.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 possible types of auth data that may have changed. */ @JsonAdapter(AuthUpdateTypes.Adapter.class) public enum AuthUpdateTypes { ACCOUNT_NUMBER("ACCOUNT_NUMBER"), ROUTING_NUMBER("ROUTING_NUMBER"), // 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; AuthUpdateTypes(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static AuthUpdateTypes fromValue(String value) { for (AuthUpdateTypes b : AuthUpdateTypes.values()) { if (b.value.equals(value)) { return b; } } return AuthUpdateTypes.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<AuthUpdateTypes> { @Override public void write(final JsonWriter jsonWriter, final AuthUpdateTypes enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public AuthUpdateTypes read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return AuthUpdateTypes.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/WatchlistScreeningEntityGetRequest.java
src/main/java/com/plaid/client/model/WatchlistScreeningEntityGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 an entity watchlist screening */ @ApiModel(description = "Request input for fetching an entity watchlist screening") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WatchlistScreeningEntityGetRequest { public static final String SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENING_ID = "entity_watchlist_screening_id"; @SerializedName(SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENING_ID) private String entityWatchlistScreeningId; 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 WatchlistScreeningEntityGetRequest entityWatchlistScreeningId(String entityWatchlistScreeningId) { this.entityWatchlistScreeningId = entityWatchlistScreeningId; return this; } /** * ID of the associated entity screening. * @return entityWatchlistScreeningId **/ @ApiModelProperty(example = "entscr_52xR9LKo77r1Np", required = true, value = "ID of the associated entity screening.") public String getEntityWatchlistScreeningId() { return entityWatchlistScreeningId; } public void setEntityWatchlistScreeningId(String entityWatchlistScreeningId) { this.entityWatchlistScreeningId = entityWatchlistScreeningId; } public WatchlistScreeningEntityGetRequest 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 WatchlistScreeningEntityGetRequest 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; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } WatchlistScreeningEntityGetRequest watchlistScreeningEntityGetRequest = (WatchlistScreeningEntityGetRequest) o; return Objects.equals(this.entityWatchlistScreeningId, watchlistScreeningEntityGetRequest.entityWatchlistScreeningId) && Objects.equals(this.secret, watchlistScreeningEntityGetRequest.secret) && Objects.equals(this.clientId, watchlistScreeningEntityGetRequest.clientId); } @Override public int hashCode() { return Objects.hash(entityWatchlistScreeningId, secret, clientId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WatchlistScreeningEntityGetRequest {\n"); sb.append(" entityWatchlistScreeningId: ").append(toIndentedString(entityWatchlistScreeningId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ServiceProductFulfillmentDetail.java
src/main/java/com/plaid/client/model/ServiceProductFulfillmentDetail.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.ServiceProductFulfillmentIdentifier; 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 ServiceProductFulfillmentDetail { public static final String SERIALIZED_NAME_VENDOR_ORDER_IDENTIFIER = "VendorOrderIdentifier"; @SerializedName(SERIALIZED_NAME_VENDOR_ORDER_IDENTIFIER) private String vendorOrderIdentifier; public static final String SERIALIZED_NAME_SERVICE_PRODUCT_FULFILLMENT_IDENTIFIER = "ServiceProductFulfillmentIdentifier"; @SerializedName(SERIALIZED_NAME_SERVICE_PRODUCT_FULFILLMENT_IDENTIFIER) private ServiceProductFulfillmentIdentifier serviceProductFulfillmentIdentifier; public ServiceProductFulfillmentDetail vendorOrderIdentifier(String vendorOrderIdentifier) { this.vendorOrderIdentifier = vendorOrderIdentifier; return this; } /** * A string that uniquely identifies a type of order Verification of Asset. * @return vendorOrderIdentifier **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "A string that uniquely identifies a type of order Verification of Asset.") public String getVendorOrderIdentifier() { return vendorOrderIdentifier; } public void setVendorOrderIdentifier(String vendorOrderIdentifier) { this.vendorOrderIdentifier = vendorOrderIdentifier; } public ServiceProductFulfillmentDetail serviceProductFulfillmentIdentifier(ServiceProductFulfillmentIdentifier serviceProductFulfillmentIdentifier) { this.serviceProductFulfillmentIdentifier = serviceProductFulfillmentIdentifier; return this; } /** * Get serviceProductFulfillmentIdentifier * @return serviceProductFulfillmentIdentifier **/ @ApiModelProperty(required = true, value = "") public ServiceProductFulfillmentIdentifier getServiceProductFulfillmentIdentifier() { return serviceProductFulfillmentIdentifier; } public void setServiceProductFulfillmentIdentifier(ServiceProductFulfillmentIdentifier serviceProductFulfillmentIdentifier) { this.serviceProductFulfillmentIdentifier = serviceProductFulfillmentIdentifier; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ServiceProductFulfillmentDetail serviceProductFulfillmentDetail = (ServiceProductFulfillmentDetail) o; return Objects.equals(this.vendorOrderIdentifier, serviceProductFulfillmentDetail.vendorOrderIdentifier) && Objects.equals(this.serviceProductFulfillmentIdentifier, serviceProductFulfillmentDetail.serviceProductFulfillmentIdentifier); } @Override public int hashCode() { return Objects.hash(vendorOrderIdentifier, serviceProductFulfillmentIdentifier); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ServiceProductFulfillmentDetail {\n"); sb.append(" vendorOrderIdentifier: ").append(toIndentedString(vendorOrderIdentifier)).append("\n"); sb.append(" serviceProductFulfillmentIdentifier: ").append(toIndentedString(serviceProductFulfillmentIdentifier)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualCreateResponse.java
src/main/java/com/plaid/client/model/WatchlistScreeningIndividualCreateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.WatchlistScreeningAuditTrail; import com.plaid.client.model.WatchlistScreeningSearchTerms; import com.plaid.client.model.WatchlistScreeningStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The screening object allows you to represent a customer in your system, update their profile, and search for them on various watchlists. Note: Rejected customers will not receive new hits, regardless of program configuration. */ @ApiModel(description = "The screening object allows you to represent a customer in your system, update their profile, and search for them on various watchlists. Note: Rejected customers will not receive new hits, regardless of program configuration.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WatchlistScreeningIndividualCreateResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) private String id; public static final String SERIALIZED_NAME_SEARCH_TERMS = "search_terms"; @SerializedName(SERIALIZED_NAME_SEARCH_TERMS) private WatchlistScreeningSearchTerms searchTerms; public static final String SERIALIZED_NAME_ASSIGNEE = "assignee"; @SerializedName(SERIALIZED_NAME_ASSIGNEE) private String assignee; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private WatchlistScreeningStatus status; public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id"; @SerializedName(SERIALIZED_NAME_CLIENT_USER_ID) private String clientUserId; public static final String SERIALIZED_NAME_AUDIT_TRAIL = "audit_trail"; @SerializedName(SERIALIZED_NAME_AUDIT_TRAIL) private WatchlistScreeningAuditTrail auditTrail; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public WatchlistScreeningIndividualCreateResponse id(String id) { this.id = id; return this; } /** * ID of the associated screening. * @return id **/ @ApiModelProperty(example = "scr_52xR9LKo77r1Np", required = true, value = "ID of the associated screening.") public String getId() { return id; } public void setId(String id) { this.id = id; } public WatchlistScreeningIndividualCreateResponse searchTerms(WatchlistScreeningSearchTerms searchTerms) { this.searchTerms = searchTerms; return this; } /** * Get searchTerms * @return searchTerms **/ @ApiModelProperty(required = true, value = "") public WatchlistScreeningSearchTerms getSearchTerms() { return searchTerms; } public void setSearchTerms(WatchlistScreeningSearchTerms searchTerms) { this.searchTerms = searchTerms; } public WatchlistScreeningIndividualCreateResponse assignee(String assignee) { this.assignee = assignee; return this; } /** * ID of the associated user. To retrieve the email address or other details of the person corresponding to this id, use &#x60;/dashboard_user/get&#x60;. * @return assignee **/ @javax.annotation.Nullable @ApiModelProperty(example = "54350110fedcbaf01234ffee", required = true, value = "ID of the associated user. To retrieve the email address or other details of the person corresponding to this id, use `/dashboard_user/get`.") public String getAssignee() { return assignee; } public void setAssignee(String assignee) { this.assignee = assignee; } public WatchlistScreeningIndividualCreateResponse status(WatchlistScreeningStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public WatchlistScreeningStatus getStatus() { return status; } public void setStatus(WatchlistScreeningStatus status) { this.status = status; } public WatchlistScreeningIndividualCreateResponse clientUserId(String clientUserId) { this.clientUserId = clientUserId; return this; } /** * A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the &#x60;/link/token/create&#x60; &#x60;client_user_id&#x60; to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the &#x60;client_user_id&#x60;. * @return clientUserId **/ @javax.annotation.Nullable @ApiModelProperty(example = "your-db-id-3b24110", required = true, value = "A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the `/link/token/create` `client_user_id` to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the `client_user_id`.") public String getClientUserId() { return clientUserId; } public void setClientUserId(String clientUserId) { this.clientUserId = clientUserId; } public WatchlistScreeningIndividualCreateResponse 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 WatchlistScreeningIndividualCreateResponse 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; } WatchlistScreeningIndividualCreateResponse watchlistScreeningIndividualCreateResponse = (WatchlistScreeningIndividualCreateResponse) o; return Objects.equals(this.id, watchlistScreeningIndividualCreateResponse.id) && Objects.equals(this.searchTerms, watchlistScreeningIndividualCreateResponse.searchTerms) && Objects.equals(this.assignee, watchlistScreeningIndividualCreateResponse.assignee) && Objects.equals(this.status, watchlistScreeningIndividualCreateResponse.status) && Objects.equals(this.clientUserId, watchlistScreeningIndividualCreateResponse.clientUserId) && Objects.equals(this.auditTrail, watchlistScreeningIndividualCreateResponse.auditTrail) && Objects.equals(this.requestId, watchlistScreeningIndividualCreateResponse.requestId); } @Override public int hashCode() { return Objects.hash(id, searchTerms, assignee, status, clientUserId, auditTrail, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WatchlistScreeningIndividualCreateResponse {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" searchTerms: ").append(toIndentedString(searchTerms)).append("\n"); sb.append(" assignee: ").append(toIndentedString(assignee)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n"); sb.append(" auditTrail: ").append(toIndentedString(auditTrail)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaymentProfileCreateRequest.java
src/main/java/com/plaid/client/model/PaymentProfileCreateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * PaymentProfileCreateRequest defines the request schema for &#x60;/payment_profile/create&#x60; */ @ApiModel(description = "PaymentProfileCreateRequest defines the request schema for `/payment_profile/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentProfileCreateRequest { 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 PaymentProfileCreateRequest 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 PaymentProfileCreateRequest 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; } PaymentProfileCreateRequest paymentProfileCreateRequest = (PaymentProfileCreateRequest) o; return Objects.equals(this.clientId, paymentProfileCreateRequest.clientId) && Objects.equals(this.secret, paymentProfileCreateRequest.secret); } @Override public int hashCode() { return Objects.hash(clientId, secret); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentProfileCreateRequest {\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/BusinessSearchTerms.java
src/main/java/com/plaid/client/model/BusinessSearchTerms.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.ResponseBusinessAddress; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.net.URI; /** * The business information that was used to perform the verification search */ @ApiModel(description = "The business information that was used to perform the verification search") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BusinessSearchTerms { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private ResponseBusinessAddress address; public static final String SERIALIZED_NAME_WEBSITE = "website"; @SerializedName(SERIALIZED_NAME_WEBSITE) private URI website; public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBER) private String phoneNumber; public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) private String emailAddress; public BusinessSearchTerms name(String name) { this.name = name; return this; } /** * The name of the business. Must have at least one character and a maximum length of 500 characters. * @return name **/ @javax.annotation.Nullable @ApiModelProperty(example = "Acme Corporation", required = true, value = "The name of the business. Must have at least one character and a maximum length of 500 characters.") public String getName() { return name; } public void setName(String name) { this.name = name; } public BusinessSearchTerms address(ResponseBusinessAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @ApiModelProperty(required = true, value = "") public ResponseBusinessAddress getAddress() { return address; } public void setAddress(ResponseBusinessAddress address) { this.address = address; } public BusinessSearchTerms website(URI website) { this.website = website; return this; } /** * An &#39;http&#39; or &#39;https&#39; URL (must begin with either of those). * @return website **/ @javax.annotation.Nullable @ApiModelProperty(example = "https://example.com", required = true, value = "An 'http' or 'https' URL (must begin with either of those).") public URI getWebsite() { return website; } public void setWebsite(URI website) { this.website = website; } public BusinessSearchTerms 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 BusinessSearchTerms 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; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BusinessSearchTerms businessSearchTerms = (BusinessSearchTerms) o; return Objects.equals(this.name, businessSearchTerms.name) && Objects.equals(this.address, businessSearchTerms.address) && Objects.equals(this.website, businessSearchTerms.website) && Objects.equals(this.phoneNumber, businessSearchTerms.phoneNumber) && Objects.equals(this.emailAddress, businessSearchTerms.emailAddress); } @Override public int hashCode() { return Objects.hash(name, address, website, phoneNumber, emailAddress); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BusinessSearchTerms {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" website: ").append(toIndentedString(website)).append("\n"); sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n"); sb.append(" 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/IdentityVerificationRetryRequest.java
src/main/java/com/plaid/client/model/IdentityVerificationRetryRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.IdentityVerificationRequestUser; import com.plaid.client.model.IdentityVerificationRetryRequestStepsObject; import com.plaid.client.model.Strategy; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Request input for retrying an identity verification attempt */ @ApiModel(description = "Request input for retrying an identity verification attempt") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityVerificationRetryRequest { 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_TEMPLATE_ID = "template_id"; @SerializedName(SERIALIZED_NAME_TEMPLATE_ID) private String templateId; public static final String SERIALIZED_NAME_STRATEGY = "strategy"; @SerializedName(SERIALIZED_NAME_STRATEGY) private Strategy strategy; public static final String SERIALIZED_NAME_USER = "user"; @SerializedName(SERIALIZED_NAME_USER) private IdentityVerificationRequestUser user; public static final String SERIALIZED_NAME_STEPS = "steps"; @SerializedName(SERIALIZED_NAME_STEPS) private IdentityVerificationRetryRequestStepsObject steps; public static final String SERIALIZED_NAME_IS_SHAREABLE = "is_shareable"; @SerializedName(SERIALIZED_NAME_IS_SHAREABLE) private Boolean isShareable; 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 IdentityVerificationRetryRequest clientUserId(String clientUserId) { this.clientUserId = clientUserId; return this; } /** * A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the &#x60;/link/token/create&#x60; &#x60;client_user_id&#x60; to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the &#x60;client_user_id&#x60;. * @return clientUserId **/ @ApiModelProperty(example = "your-db-id-3b24110", required = true, value = "A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the `/link/token/create` `client_user_id` to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the `client_user_id`.") public String getClientUserId() { return clientUserId; } public void setClientUserId(String clientUserId) { this.clientUserId = clientUserId; } public IdentityVerificationRetryRequest templateId(String templateId) { this.templateId = templateId; return this; } /** * ID of the associated Identity Verification template. Like all Plaid identifiers, this is case-sensitive. * @return templateId **/ @ApiModelProperty(example = "idvtmp_4FrXJvfQU3zGUR", required = true, value = "ID of the associated Identity Verification template. Like all Plaid identifiers, this is case-sensitive.") public String getTemplateId() { return templateId; } public void setTemplateId(String templateId) { this.templateId = templateId; } public IdentityVerificationRetryRequest strategy(Strategy strategy) { this.strategy = strategy; return this; } /** * Get strategy * @return strategy **/ @ApiModelProperty(required = true, value = "") public Strategy getStrategy() { return strategy; } public void setStrategy(Strategy strategy) { this.strategy = strategy; } public IdentityVerificationRetryRequest user(IdentityVerificationRequestUser user) { this.user = user; return this; } /** * Get user * @return user **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public IdentityVerificationRequestUser getUser() { return user; } public void setUser(IdentityVerificationRequestUser user) { this.user = user; } public IdentityVerificationRetryRequest steps(IdentityVerificationRetryRequestStepsObject steps) { this.steps = steps; return this; } /** * Get steps * @return steps **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public IdentityVerificationRetryRequestStepsObject getSteps() { return steps; } public void setSteps(IdentityVerificationRetryRequestStepsObject steps) { this.steps = steps; } public IdentityVerificationRetryRequest isShareable(Boolean isShareable) { this.isShareable = isShareable; return this; } /** * A flag specifying whether you would like Plaid to expose a shareable URL for the verification being retried. If a value for this flag is not specified, the &#x60;is_shareable&#x60; setting from the original verification attempt will be used. * @return isShareable **/ @javax.annotation.Nullable @ApiModelProperty(example = "true", value = "A flag specifying whether you would like Plaid to expose a shareable URL for the verification being retried. If a value for this flag is not specified, the `is_shareable` setting from the original verification attempt will be used.") public Boolean getIsShareable() { return isShareable; } public void setIsShareable(Boolean isShareable) { this.isShareable = isShareable; } public IdentityVerificationRetryRequest 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 IdentityVerificationRetryRequest 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; } IdentityVerificationRetryRequest identityVerificationRetryRequest = (IdentityVerificationRetryRequest) o; return Objects.equals(this.clientUserId, identityVerificationRetryRequest.clientUserId) && Objects.equals(this.templateId, identityVerificationRetryRequest.templateId) && Objects.equals(this.strategy, identityVerificationRetryRequest.strategy) && Objects.equals(this.user, identityVerificationRetryRequest.user) && Objects.equals(this.steps, identityVerificationRetryRequest.steps) && Objects.equals(this.isShareable, identityVerificationRetryRequest.isShareable) && Objects.equals(this.clientId, identityVerificationRetryRequest.clientId) && Objects.equals(this.secret, identityVerificationRetryRequest.secret); } @Override public int hashCode() { return Objects.hash(clientUserId, templateId, strategy, user, steps, isShareable, clientId, secret); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityVerificationRetryRequest {\n"); sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n"); sb.append(" templateId: ").append(toIndentedString(templateId)).append("\n"); sb.append(" strategy: ").append(toIndentedString(strategy)).append("\n"); sb.append(" user: ").append(toIndentedString(user)).append("\n"); sb.append(" steps: ").append(toIndentedString(steps)).append("\n"); sb.append(" isShareable: ").append(toIndentedString(isShareable)).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/CreditBankStatementsUploadsGetRequest.java
src/main/java/com/plaid/client/model/CreditBankStatementsUploadsGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CreditBankStatementsUploadsGetRequestOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * CreditBankStatementsUploadsGetRequest defines the request schema for &#x60;/credit/bank_statements/uploads/get&#x60; */ @ApiModel(description = "CreditBankStatementsUploadsGetRequest defines the request schema for `/credit/bank_statements/uploads/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditBankStatementsUploadsGetRequest { 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 CreditBankStatementsUploadsGetRequestOptions options; public CreditBankStatementsUploadsGetRequest 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 CreditBankStatementsUploadsGetRequest 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 CreditBankStatementsUploadsGetRequest userToken(String userToken) { this.userToken = userToken; return this; } /** * The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the &#x60;user_token&#x60; field. All other customers should use the &#x60;user_id&#x60; instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis). * @return userToken **/ @ApiModelProperty(required = true, value = "The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the `user_token` field. All other customers should use the `user_id` instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis).") public String getUserToken() { return userToken; } public void setUserToken(String userToken) { this.userToken = userToken; } public CreditBankStatementsUploadsGetRequest options(CreditBankStatementsUploadsGetRequestOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CreditBankStatementsUploadsGetRequestOptions getOptions() { return options; } public void setOptions(CreditBankStatementsUploadsGetRequestOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditBankStatementsUploadsGetRequest creditBankStatementsUploadsGetRequest = (CreditBankStatementsUploadsGetRequest) o; return Objects.equals(this.clientId, creditBankStatementsUploadsGetRequest.clientId) && Objects.equals(this.secret, creditBankStatementsUploadsGetRequest.secret) && Objects.equals(this.userToken, creditBankStatementsUploadsGetRequest.userToken) && Objects.equals(this.options, creditBankStatementsUploadsGetRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, secret, userToken, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditBankStatementsUploadsGetRequest {\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/TransferEvent.java
src/main/java/com/plaid/client/model/TransferEvent.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.OmittableTransferType; import com.plaid.client.model.TransferEventType; import com.plaid.client.model.TransferFailure; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * Represents an event in the Transfers API. */ @ApiModel(description = "Represents an event in the Transfers API.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferEvent { public static final String SERIALIZED_NAME_EVENT_ID = "event_id"; @SerializedName(SERIALIZED_NAME_EVENT_ID) private Integer eventId; public static final String SERIALIZED_NAME_TIMESTAMP = "timestamp"; @SerializedName(SERIALIZED_NAME_TIMESTAMP) private OffsetDateTime timestamp; public static final String SERIALIZED_NAME_EVENT_TYPE = "event_type"; @SerializedName(SERIALIZED_NAME_EVENT_TYPE) private TransferEventType eventType; public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) private String accountId; public static final String SERIALIZED_NAME_FUNDING_ACCOUNT_ID = "funding_account_id"; @SerializedName(SERIALIZED_NAME_FUNDING_ACCOUNT_ID) private String fundingAccountId; public static final String SERIALIZED_NAME_LEDGER_ID = "ledger_id"; @SerializedName(SERIALIZED_NAME_LEDGER_ID) private String ledgerId; public static final String SERIALIZED_NAME_TRANSFER_ID = "transfer_id"; @SerializedName(SERIALIZED_NAME_TRANSFER_ID) private String transferId; public static final String SERIALIZED_NAME_ORIGINATION_ACCOUNT_ID = "origination_account_id"; @SerializedName(SERIALIZED_NAME_ORIGINATION_ACCOUNT_ID) private String originationAccountId; public static final String SERIALIZED_NAME_TRANSFER_TYPE = "transfer_type"; @SerializedName(SERIALIZED_NAME_TRANSFER_TYPE) private OmittableTransferType transferType; public static final String SERIALIZED_NAME_TRANSFER_AMOUNT = "transfer_amount"; @SerializedName(SERIALIZED_NAME_TRANSFER_AMOUNT) private String transferAmount; public static final String SERIALIZED_NAME_FAILURE_REASON = "failure_reason"; @SerializedName(SERIALIZED_NAME_FAILURE_REASON) private TransferFailure failureReason; public static final String SERIALIZED_NAME_SWEEP_ID = "sweep_id"; @SerializedName(SERIALIZED_NAME_SWEEP_ID) private String sweepId; public static final String SERIALIZED_NAME_SWEEP_AMOUNT = "sweep_amount"; @SerializedName(SERIALIZED_NAME_SWEEP_AMOUNT) private String sweepAmount; public static final String SERIALIZED_NAME_REFUND_ID = "refund_id"; @SerializedName(SERIALIZED_NAME_REFUND_ID) private String refundId; 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_INTENT_ID = "intent_id"; @SerializedName(SERIALIZED_NAME_INTENT_ID) private String intentId; public static final String SERIALIZED_NAME_WIRE_RETURN_FEE = "wire_return_fee"; @SerializedName(SERIALIZED_NAME_WIRE_RETURN_FEE) private String wireReturnFee; public TransferEvent eventId(Integer eventId) { this.eventId = eventId; return this; } /** * Plaid’s unique identifier for this event. IDs are sequential unsigned 64-bit integers. * minimum: 0 * @return eventId **/ @ApiModelProperty(required = true, value = "Plaid’s unique identifier for this event. IDs are sequential unsigned 64-bit integers.") public Integer getEventId() { return eventId; } public void setEventId(Integer eventId) { this.eventId = eventId; } public TransferEvent timestamp(OffsetDateTime timestamp) { this.timestamp = timestamp; return this; } /** * The datetime when this event occurred. This will be of the form &#x60;2006-01-02T15:04:05Z&#x60;. * @return timestamp **/ @ApiModelProperty(required = true, value = "The datetime when this event occurred. This will be of the form `2006-01-02T15:04:05Z`.") public OffsetDateTime getTimestamp() { return timestamp; } public void setTimestamp(OffsetDateTime timestamp) { this.timestamp = timestamp; } public TransferEvent eventType(TransferEventType eventType) { this.eventType = eventType; return this; } /** * Get eventType * @return eventType **/ @ApiModelProperty(required = true, value = "") public TransferEventType getEventType() { return eventType; } public void setEventType(TransferEventType eventType) { this.eventType = eventType; } public TransferEvent accountId(String accountId) { this.accountId = accountId; return this; } /** * The account ID associated with the transfer. This field is omitted for Plaid Ledger Sweep events. * @return accountId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The account ID associated with the transfer. This field is omitted for Plaid Ledger Sweep events.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public TransferEvent fundingAccountId(String fundingAccountId) { this.fundingAccountId = fundingAccountId; return this; } /** * The id of the associated funding account, available in the Plaid Dashboard. If present, this indicates which of your business checking accounts will be credited or debited. * @return fundingAccountId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The id of the associated funding account, available in the Plaid Dashboard. If present, this indicates which of your business checking accounts will be credited or debited.") public String getFundingAccountId() { return fundingAccountId; } public void setFundingAccountId(String fundingAccountId) { this.fundingAccountId = fundingAccountId; } public TransferEvent ledgerId(String ledgerId) { this.ledgerId = ledgerId; return this; } /** * Plaid’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 TransferEvent transferId(String transferId) { this.transferId = transferId; return this; } /** * Plaid&#39;s unique identifier for a transfer. This field is an empty string for Plaid Ledger Sweep events. * @return transferId **/ @ApiModelProperty(required = true, value = "Plaid's unique identifier for a transfer. This field is an empty string for Plaid Ledger Sweep events.") public String getTransferId() { return transferId; } public void setTransferId(String transferId) { this.transferId = transferId; } public TransferEvent originationAccountId(String originationAccountId) { this.originationAccountId = originationAccountId; return this; } /** * The ID of the origination account that this balance belongs to. * @return originationAccountId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ID of the origination account that this balance belongs to.") public String getOriginationAccountId() { return originationAccountId; } public void setOriginationAccountId(String originationAccountId) { this.originationAccountId = originationAccountId; } public TransferEvent transferType(OmittableTransferType transferType) { this.transferType = transferType; return this; } /** * Get transferType * @return transferType **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public OmittableTransferType getTransferType() { return transferType; } public void setTransferType(OmittableTransferType transferType) { this.transferType = transferType; } public TransferEvent transferAmount(String transferAmount) { this.transferAmount = transferAmount; return this; } /** * The amount of the transfer (decimal string with two digits of precision e.g. \&quot;10.00\&quot;). This field is omitted for Plaid Ledger Sweep events. * @return transferAmount **/ @javax.annotation.Nullable @ApiModelProperty(value = "The amount of the transfer (decimal string with two digits of precision e.g. \"10.00\"). This field is omitted for Plaid Ledger Sweep events.") public String getTransferAmount() { return transferAmount; } public void setTransferAmount(String transferAmount) { this.transferAmount = transferAmount; } public TransferEvent failureReason(TransferFailure failureReason) { this.failureReason = failureReason; return this; } /** * Get failureReason * @return failureReason **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public TransferFailure getFailureReason() { return failureReason; } public void setFailureReason(TransferFailure failureReason) { this.failureReason = failureReason; } public TransferEvent sweepId(String sweepId) { this.sweepId = sweepId; return this; } /** * Plaid’s unique identifier for a sweep. * @return sweepId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Plaid’s unique identifier for a sweep.") public String getSweepId() { return sweepId; } public void setSweepId(String sweepId) { this.sweepId = sweepId; } public TransferEvent sweepAmount(String sweepAmount) { this.sweepAmount = sweepAmount; return this; } /** * A signed amount of how much was &#x60;swept&#x60; or &#x60;return_swept&#x60; for this transfer (decimal string with two digits of precision e.g. \&quot;-5.50\&quot;). * @return sweepAmount **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "A signed amount of how much was `swept` or `return_swept` for this transfer (decimal string with two digits of precision e.g. \"-5.50\").") public String getSweepAmount() { return sweepAmount; } public void setSweepAmount(String sweepAmount) { this.sweepAmount = sweepAmount; } public TransferEvent refundId(String refundId) { this.refundId = refundId; return this; } /** * Plaid’s unique identifier for a refund. A non-null value indicates the event is for the associated refund of the transfer. * @return refundId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "Plaid’s unique identifier for a refund. A non-null value indicates the event is for the associated refund of the transfer.") public String getRefundId() { return refundId; } public void setRefundId(String refundId) { this.refundId = refundId; } public TransferEvent originatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; return this; } /** * The Plaid client ID that is the originator of the transfer that this event applies to. Only present if the transfer was created on behalf of another client as a third-party sender (TPS). * @return originatorClientId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The Plaid client ID that is the originator of the transfer that this event applies to. Only present if the transfer was created on behalf of another client as a third-party sender (TPS).") public String getOriginatorClientId() { return originatorClientId; } public void setOriginatorClientId(String originatorClientId) { this.originatorClientId = originatorClientId; } public TransferEvent intentId(String intentId) { this.intentId = intentId; return this; } /** * The &#x60;id&#x60; returned by the /transfer/intent/create endpoint, for transfers created via Transfer UI. For transfers not created by Transfer UI, the value is &#x60;null&#x60;. This will currently only be populated for RfP transfers. * @return intentId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The `id` returned by the /transfer/intent/create endpoint, for transfers created via Transfer UI. For transfers not created by Transfer UI, the value is `null`. This will currently only be populated for RfP transfers.") public String getIntentId() { return intentId; } public void setIntentId(String intentId) { this.intentId = intentId; } public TransferEvent wireReturnFee(String wireReturnFee) { this.wireReturnFee = wireReturnFee; return this; } /** * The fee amount deducted from the original transfer during a wire return, if applicable. * @return wireReturnFee **/ @javax.annotation.Nullable @ApiModelProperty(value = "The fee amount deducted from the original transfer during a wire return, if applicable.") public String getWireReturnFee() { return wireReturnFee; } public void setWireReturnFee(String wireReturnFee) { this.wireReturnFee = wireReturnFee; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferEvent transferEvent = (TransferEvent) o; return Objects.equals(this.eventId, transferEvent.eventId) && Objects.equals(this.timestamp, transferEvent.timestamp) && Objects.equals(this.eventType, transferEvent.eventType) && Objects.equals(this.accountId, transferEvent.accountId) && Objects.equals(this.fundingAccountId, transferEvent.fundingAccountId) && Objects.equals(this.ledgerId, transferEvent.ledgerId) && Objects.equals(this.transferId, transferEvent.transferId) && Objects.equals(this.originationAccountId, transferEvent.originationAccountId) && Objects.equals(this.transferType, transferEvent.transferType) && Objects.equals(this.transferAmount, transferEvent.transferAmount) && Objects.equals(this.failureReason, transferEvent.failureReason) && Objects.equals(this.sweepId, transferEvent.sweepId) && Objects.equals(this.sweepAmount, transferEvent.sweepAmount) && Objects.equals(this.refundId, transferEvent.refundId) && Objects.equals(this.originatorClientId, transferEvent.originatorClientId) && Objects.equals(this.intentId, transferEvent.intentId) && Objects.equals(this.wireReturnFee, transferEvent.wireReturnFee); } @Override public int hashCode() { return Objects.hash(eventId, timestamp, eventType, accountId, fundingAccountId, ledgerId, transferId, originationAccountId, transferType, transferAmount, failureReason, sweepId, sweepAmount, refundId, originatorClientId, intentId, wireReturnFee); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferEvent {\n"); sb.append(" eventId: ").append(toIndentedString(eventId)).append("\n"); sb.append(" timestamp: ").append(toIndentedString(timestamp)).append("\n"); sb.append(" eventType: ").append(toIndentedString(eventType)).append("\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" fundingAccountId: ").append(toIndentedString(fundingAccountId)).append("\n"); sb.append(" ledgerId: ").append(toIndentedString(ledgerId)).append("\n"); sb.append(" transferId: ").append(toIndentedString(transferId)).append("\n"); sb.append(" originationAccountId: ").append(toIndentedString(originationAccountId)).append("\n"); sb.append(" transferType: ").append(toIndentedString(transferType)).append("\n"); sb.append(" transferAmount: ").append(toIndentedString(transferAmount)).append("\n"); sb.append(" failureReason: ").append(toIndentedString(failureReason)).append("\n"); sb.append(" sweepId: ").append(toIndentedString(sweepId)).append("\n"); sb.append(" sweepAmount: ").append(toIndentedString(sweepAmount)).append("\n"); sb.append(" refundId: ").append(toIndentedString(refundId)).append("\n"); sb.append(" originatorClientId: ").append(toIndentedString(originatorClientId)).append("\n"); sb.append(" intentId: ").append(toIndentedString(intentId)).append("\n"); sb.append(" wireReturnFee: ").append(toIndentedString(wireReturnFee)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/InvestmentsHoldingsGetResponse.java
src/main/java/com/plaid/client/model/InvestmentsHoldingsGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AccountBase; import com.plaid.client.model.Holding; import com.plaid.client.model.Item; import com.plaid.client.model.Security; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * InvestmentsHoldingsGetResponse defines the response schema for &#x60;/investments/holdings/get&#x60; */ @ApiModel(description = "InvestmentsHoldingsGetResponse defines the response schema for `/investments/holdings/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InvestmentsHoldingsGetResponse { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) private List<AccountBase> accounts = new ArrayList<>(); public static final String SERIALIZED_NAME_HOLDINGS = "holdings"; @SerializedName(SERIALIZED_NAME_HOLDINGS) private List<Holding> holdings = new ArrayList<>(); public static final String SERIALIZED_NAME_SECURITIES = "securities"; @SerializedName(SERIALIZED_NAME_SECURITIES) private List<Security> securities = new ArrayList<>(); public static final String SERIALIZED_NAME_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 static final String SERIALIZED_NAME_IS_INVESTMENTS_FALLBACK_ITEM = "is_investments_fallback_item"; @SerializedName(SERIALIZED_NAME_IS_INVESTMENTS_FALLBACK_ITEM) private Boolean isInvestmentsFallbackItem; public InvestmentsHoldingsGetResponse accounts(List<AccountBase> accounts) { this.accounts = accounts; return this; } public InvestmentsHoldingsGetResponse addAccountsItem(AccountBase accountsItem) { this.accounts.add(accountsItem); return this; } /** * The accounts associated with the Item * @return accounts **/ @ApiModelProperty(required = true, value = "The accounts associated with the Item") public List<AccountBase> getAccounts() { return accounts; } public void setAccounts(List<AccountBase> accounts) { this.accounts = accounts; } public InvestmentsHoldingsGetResponse holdings(List<Holding> holdings) { this.holdings = holdings; return this; } public InvestmentsHoldingsGetResponse addHoldingsItem(Holding holdingsItem) { this.holdings.add(holdingsItem); return this; } /** * The holdings belonging to investment accounts associated with the Item. Details of the securities in the holdings are provided in the &#x60;securities&#x60; field. * @return holdings **/ @ApiModelProperty(required = true, value = "The holdings belonging to investment accounts associated with the Item. Details of the securities in the holdings are provided in the `securities` field. ") public List<Holding> getHoldings() { return holdings; } public void setHoldings(List<Holding> holdings) { this.holdings = holdings; } public InvestmentsHoldingsGetResponse securities(List<Security> securities) { this.securities = securities; return this; } public InvestmentsHoldingsGetResponse addSecuritiesItem(Security securitiesItem) { this.securities.add(securitiesItem); return this; } /** * Objects describing the securities held in the accounts associated with the Item. * @return securities **/ @ApiModelProperty(required = true, value = "Objects describing the securities held in the accounts associated with the Item. ") public List<Security> getSecurities() { return securities; } public void setSecurities(List<Security> securities) { this.securities = securities; } public InvestmentsHoldingsGetResponse 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 InvestmentsHoldingsGetResponse 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 InvestmentsHoldingsGetResponse isInvestmentsFallbackItem(Boolean isInvestmentsFallbackItem) { this.isInvestmentsFallbackItem = isInvestmentsFallbackItem; return this; } /** * When true, this field indicates that the Item&#39;s portfolio was manually created with the Investments Fallback flow. * @return isInvestmentsFallbackItem **/ @javax.annotation.Nullable @ApiModelProperty(value = "When true, this field indicates that the Item's portfolio was manually created with the Investments Fallback flow.") public Boolean getIsInvestmentsFallbackItem() { return isInvestmentsFallbackItem; } public void setIsInvestmentsFallbackItem(Boolean isInvestmentsFallbackItem) { this.isInvestmentsFallbackItem = isInvestmentsFallbackItem; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } InvestmentsHoldingsGetResponse investmentsHoldingsGetResponse = (InvestmentsHoldingsGetResponse) o; return Objects.equals(this.accounts, investmentsHoldingsGetResponse.accounts) && Objects.equals(this.holdings, investmentsHoldingsGetResponse.holdings) && Objects.equals(this.securities, investmentsHoldingsGetResponse.securities) && Objects.equals(this.item, investmentsHoldingsGetResponse.item) && Objects.equals(this.requestId, investmentsHoldingsGetResponse.requestId) && Objects.equals(this.isInvestmentsFallbackItem, investmentsHoldingsGetResponse.isInvestmentsFallbackItem); } @Override public int hashCode() { return Objects.hash(accounts, holdings, securities, item, requestId, isInvestmentsFallbackItem); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InvestmentsHoldingsGetResponse {\n"); sb.append(" accounts: ").append(toIndentedString(accounts)).append("\n"); sb.append(" holdings: ").append(toIndentedString(holdings)).append("\n"); sb.append(" securities: ").append(toIndentedString(securities)).append("\n"); sb.append(" item: ").append(toIndentedString(item)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append(" isInvestmentsFallbackItem: ").append(toIndentedString(isInvestmentsFallbackItem)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferDiligenceStatus.java
src/main/java/com/plaid/client/model/TransferDiligenceStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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; /** * Originator’s diligence status. */ @JsonAdapter(TransferDiligenceStatus.Adapter.class) public enum TransferDiligenceStatus { NOT_SUBMITTED("not_submitted"), SUBMITTED("submitted"), UNDER_REVIEW("under_review"), APPROVED("approved"), DENIED("denied"), MORE_INFORMATION_REQUIRED("more_information_required"), // 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; TransferDiligenceStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransferDiligenceStatus fromValue(String value) { for (TransferDiligenceStatus b : TransferDiligenceStatus.values()) { if (b.value.equals(value)) { return b; } } return TransferDiligenceStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<TransferDiligenceStatus> { @Override public void write(final JsonWriter jsonWriter, final TransferDiligenceStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransferDiligenceStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransferDiligenceStatus.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/SandboxTransferLedgerSimulateAvailableResponse.java
src/main/java/com/plaid/client/model/SandboxTransferLedgerSimulateAvailableResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the response schema for &#x60;/sandbox/transfer/ledger/simulate_available&#x60; */ @ApiModel(description = "Defines the response schema for `/sandbox/transfer/ledger/simulate_available`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SandboxTransferLedgerSimulateAvailableResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public SandboxTransferLedgerSimulateAvailableResponse 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; } SandboxTransferLedgerSimulateAvailableResponse sandboxTransferLedgerSimulateAvailableResponse = (SandboxTransferLedgerSimulateAvailableResponse) o; return Objects.equals(this.requestId, sandboxTransferLedgerSimulateAvailableResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SandboxTransferLedgerSimulateAvailableResponse {\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/BeaconReportSyndicationGetRequest.java
src/main/java/com/plaid/client/model/BeaconReportSyndicationGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 getting a Beacon Report Syndication */ @ApiModel(description = "Request input for getting a Beacon Report Syndication") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconReportSyndicationGetRequest { public static final String SERIALIZED_NAME_BEACON_REPORT_SYNDICATION_ID = "beacon_report_syndication_id"; @SerializedName(SERIALIZED_NAME_BEACON_REPORT_SYNDICATION_ID) private String beaconReportSyndicationId; 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 BeaconReportSyndicationGetRequest beaconReportSyndicationId(String beaconReportSyndicationId) { this.beaconReportSyndicationId = beaconReportSyndicationId; return this; } /** * ID of the associated Beacon Report Syndication. * @return beaconReportSyndicationId **/ @ApiModelProperty(example = "becrsn_11111111111111", required = true, value = "ID of the associated Beacon Report Syndication.") public String getBeaconReportSyndicationId() { return beaconReportSyndicationId; } public void setBeaconReportSyndicationId(String beaconReportSyndicationId) { this.beaconReportSyndicationId = beaconReportSyndicationId; } public BeaconReportSyndicationGetRequest 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 BeaconReportSyndicationGetRequest 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; } BeaconReportSyndicationGetRequest beaconReportSyndicationGetRequest = (BeaconReportSyndicationGetRequest) o; return Objects.equals(this.beaconReportSyndicationId, beaconReportSyndicationGetRequest.beaconReportSyndicationId) && Objects.equals(this.clientId, beaconReportSyndicationGetRequest.clientId) && Objects.equals(this.secret, beaconReportSyndicationGetRequest.secret); } @Override public int hashCode() { return Objects.hash(beaconReportSyndicationId, clientId, secret); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconReportSyndicationGetRequest {\n"); sb.append(" beaconReportSyndicationId: ").append(toIndentedString(beaconReportSyndicationId)).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/ProtectEventSendRequest.java
src/main/java/com/plaid/client/model/ProtectEventSendRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.ProtectEvent; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * Request object for /protect/event/send */ @ApiModel(description = "Request object for /protect/event/send") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ProtectEventSendRequest { 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_TIMESTAMP = "timestamp"; @SerializedName(SERIALIZED_NAME_TIMESTAMP) private OffsetDateTime timestamp; public static final String SERIALIZED_NAME_EVENT = "event"; @SerializedName(SERIALIZED_NAME_EVENT) private ProtectEvent event; public static final String SERIALIZED_NAME_PROTECT_SESSION_ID = "protect_session_id"; @SerializedName(SERIALIZED_NAME_PROTECT_SESSION_ID) private String protectSessionId; public static final String SERIALIZED_NAME_REQUEST_TRUST_INDEX = "request_trust_index"; @SerializedName(SERIALIZED_NAME_REQUEST_TRUST_INDEX) private Boolean requestTrustIndex; public ProtectEventSendRequest 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 ProtectEventSendRequest 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 ProtectEventSendRequest timestamp(OffsetDateTime timestamp) { this.timestamp = timestamp; return this; } /** * Timestamp of the event. Might be the current moment or a time in the past. In [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format, e.g. &#x60;\&quot;2017-09-14T14:42:19.350Z\&quot;&#x60; * @return timestamp **/ @javax.annotation.Nullable @ApiModelProperty(value = "Timestamp of the event. Might be the current moment or a time in the past. In [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format, e.g. `\"2017-09-14T14:42:19.350Z\"`") public OffsetDateTime getTimestamp() { return timestamp; } public void setTimestamp(OffsetDateTime timestamp) { this.timestamp = timestamp; } public ProtectEventSendRequest event(ProtectEvent event) { this.event = event; return this; } /** * Get event * @return event **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public ProtectEvent getEvent() { return event; } public void setEvent(ProtectEvent event) { this.event = event; } public ProtectEventSendRequest protectSessionId(String protectSessionId) { this.protectSessionId = protectSessionId; return this; } /** * Protect Session ID should be provided for any event correlated with a frontend user session started via the Protect SDK. * @return protectSessionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "Protect Session ID should be provided for any event correlated with a frontend user session started via the Protect SDK.") public String getProtectSessionId() { return protectSessionId; } public void setProtectSessionId(String protectSessionId) { this.protectSessionId = protectSessionId; } public ProtectEventSendRequest requestTrustIndex(Boolean requestTrustIndex) { this.requestTrustIndex = requestTrustIndex; return this; } /** * Whether this event should be scored with Trust Index. The default is false. * @return requestTrustIndex **/ @javax.annotation.Nullable @ApiModelProperty(value = "Whether this event should be scored with Trust Index. The default is false.") public Boolean getRequestTrustIndex() { return requestTrustIndex; } public void setRequestTrustIndex(Boolean requestTrustIndex) { this.requestTrustIndex = requestTrustIndex; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ProtectEventSendRequest protectEventSendRequest = (ProtectEventSendRequest) o; return Objects.equals(this.clientId, protectEventSendRequest.clientId) && Objects.equals(this.secret, protectEventSendRequest.secret) && Objects.equals(this.timestamp, protectEventSendRequest.timestamp) && Objects.equals(this.event, protectEventSendRequest.event) && Objects.equals(this.protectSessionId, protectEventSendRequest.protectSessionId) && Objects.equals(this.requestTrustIndex, protectEventSendRequest.requestTrustIndex); } @Override public int hashCode() { return Objects.hash(clientId, secret, timestamp, event, protectSessionId, requestTrustIndex); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ProtectEventSendRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" timestamp: ").append(toIndentedString(timestamp)).append("\n"); sb.append(" event: ").append(toIndentedString(event)).append("\n"); sb.append(" protectSessionId: ").append(toIndentedString(protectSessionId)).append("\n"); sb.append(" requestTrustIndex: ").append(toIndentedString(requestTrustIndex)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IncomeSummaryFieldString.java
src/main/java/com/plaid/client/model/IncomeSummaryFieldString.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.VerificationStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Data about the income summary */ @ApiModel(description = "Data about the income summary") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IncomeSummaryFieldString { public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) private String value; public static final String SERIALIZED_NAME_VERIFICATION_STATUS = "verification_status"; @SerializedName(SERIALIZED_NAME_VERIFICATION_STATUS) private VerificationStatus verificationStatus; public IncomeSummaryFieldString value(String value) { this.value = value; return this; } /** * The value of the field. * @return value **/ @ApiModelProperty(required = true, value = "The value of the field.") public String getValue() { return value; } public void setValue(String value) { this.value = value; } public IncomeSummaryFieldString verificationStatus(VerificationStatus verificationStatus) { this.verificationStatus = verificationStatus; return this; } /** * Get verificationStatus * @return verificationStatus **/ @ApiModelProperty(required = true, value = "") public VerificationStatus getVerificationStatus() { return verificationStatus; } public void setVerificationStatus(VerificationStatus verificationStatus) { this.verificationStatus = verificationStatus; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IncomeSummaryFieldString incomeSummaryFieldString = (IncomeSummaryFieldString) o; return Objects.equals(this.value, incomeSummaryFieldString.value) && Objects.equals(this.verificationStatus, incomeSummaryFieldString.verificationStatus); } @Override public int hashCode() { return Objects.hash(value, verificationStatus); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IncomeSummaryFieldString {\n"); sb.append(" value: ").append(toIndentedString(value)).append("\n"); sb.append(" verificationStatus: ").append(toIndentedString(verificationStatus)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferRecurringNetwork.java
src/main/java/com/plaid/client/model/TransferRecurringNetwork.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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; /** * Networks eligible for recurring transfers. */ @JsonAdapter(TransferRecurringNetwork.Adapter.class) public enum TransferRecurringNetwork { ACH("ach"), SAME_DAY_ACH("same-day-ach"), RTP("rtp"), // 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; TransferRecurringNetwork(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransferRecurringNetwork fromValue(String value) { for (TransferRecurringNetwork b : TransferRecurringNetwork.values()) { if (b.value.equals(value)) { return b; } } return TransferRecurringNetwork.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<TransferRecurringNetwork> { @Override public void write(final JsonWriter jsonWriter, final TransferRecurringNetwork enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransferRecurringNetwork read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransferRecurringNetwork.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/CreditPayrollIncomeParsingConfigUpdateResponse.java
src/main/java/com/plaid/client/model/CreditPayrollIncomeParsingConfigUpdateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * CreditPayrollIncomeParsingConfigUpdateResponse defines the response schema for &#x60;/credit/payroll_income/documents/update&#x60;. */ @ApiModel(description = "CreditPayrollIncomeParsingConfigUpdateResponse defines the response schema for `/credit/payroll_income/documents/update`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditPayrollIncomeParsingConfigUpdateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public CreditPayrollIncomeParsingConfigUpdateResponse 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; } CreditPayrollIncomeParsingConfigUpdateResponse creditPayrollIncomeParsingConfigUpdateResponse = (CreditPayrollIncomeParsingConfigUpdateResponse) o; return Objects.equals(this.requestId, creditPayrollIncomeParsingConfigUpdateResponse.requestId); } @Override public int hashCode() { return Objects.hash(requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditPayrollIncomeParsingConfigUpdateResponse {\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/LinkDeliveryWebhookCallbackType.java
src/main/java/com/plaid/client/model/LinkDeliveryWebhookCallbackType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 Link callback event */ @JsonAdapter(LinkDeliveryWebhookCallbackType.Adapter.class) public enum LinkDeliveryWebhookCallbackType { SUCCESS("ON_SUCCESS"), EVENT("ON_EVENT"), EXIT("ON_EXIT"), // 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; LinkDeliveryWebhookCallbackType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static LinkDeliveryWebhookCallbackType fromValue(String value) { for (LinkDeliveryWebhookCallbackType b : LinkDeliveryWebhookCallbackType.values()) { if (b.value.equals(value)) { return b; } } return LinkDeliveryWebhookCallbackType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<LinkDeliveryWebhookCallbackType> { @Override public void write(final JsonWriter jsonWriter, final LinkDeliveryWebhookCallbackType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public LinkDeliveryWebhookCallbackType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return LinkDeliveryWebhookCallbackType.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/CounterpartyInsights.java
src/main/java/com/plaid/client/model/CounterpartyInsights.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.FinancialInstitutionInsights; import com.plaid.client.model.MerchantInsights; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Insights around a user&#39;s counterparties */ @ApiModel(description = "Insights around a user's counterparties") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CounterpartyInsights { public static final String SERIALIZED_NAME_FINANCIAL_INSTITUTION_INSIGHTS = "financial_institution_insights"; @SerializedName(SERIALIZED_NAME_FINANCIAL_INSTITUTION_INSIGHTS) private List<FinancialInstitutionInsights> financialInstitutionInsights = null; public static final String SERIALIZED_NAME_MERCHANT_INSIGHTS = "merchant_insights"; @SerializedName(SERIALIZED_NAME_MERCHANT_INSIGHTS) private List<MerchantInsights> merchantInsights = null; public CounterpartyInsights financialInstitutionInsights(List<FinancialInstitutionInsights> financialInstitutionInsights) { this.financialInstitutionInsights = financialInstitutionInsights; return this; } public CounterpartyInsights addFinancialInstitutionInsightsItem(FinancialInstitutionInsights financialInstitutionInsightsItem) { if (this.financialInstitutionInsights == null) { this.financialInstitutionInsights = new ArrayList<>(); } this.financialInstitutionInsights.add(financialInstitutionInsightsItem); return this; } /** * Insights related to a user’s transactions with other financial institutions, including detected account types. * @return financialInstitutionInsights **/ @javax.annotation.Nullable @ApiModelProperty(value = "Insights related to a user’s transactions with other financial institutions, including detected account types.") public List<FinancialInstitutionInsights> getFinancialInstitutionInsights() { return financialInstitutionInsights; } public void setFinancialInstitutionInsights(List<FinancialInstitutionInsights> financialInstitutionInsights) { this.financialInstitutionInsights = financialInstitutionInsights; } public CounterpartyInsights merchantInsights(List<MerchantInsights> merchantInsights) { this.merchantInsights = merchantInsights; return this; } public CounterpartyInsights addMerchantInsightsItem(MerchantInsights merchantInsightsItem) { if (this.merchantInsights == null) { this.merchantInsights = new ArrayList<>(); } this.merchantInsights.add(merchantInsightsItem); return this; } /** * Insights about a user’s top merchants, ranked by spend. * @return merchantInsights **/ @javax.annotation.Nullable @ApiModelProperty(value = "Insights about a user’s top merchants, ranked by spend.") public List<MerchantInsights> getMerchantInsights() { return merchantInsights; } public void setMerchantInsights(List<MerchantInsights> merchantInsights) { this.merchantInsights = merchantInsights; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CounterpartyInsights counterpartyInsights = (CounterpartyInsights) o; return Objects.equals(this.financialInstitutionInsights, counterpartyInsights.financialInstitutionInsights) && Objects.equals(this.merchantInsights, counterpartyInsights.merchantInsights); } @Override public int hashCode() { return Objects.hash(financialInstitutionInsights, merchantInsights); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CounterpartyInsights {\n"); sb.append(" financialInstitutionInsights: ").append(toIndentedString(financialInstitutionInsights)).append("\n"); sb.append(" merchantInsights: ").append(toIndentedString(merchantInsights)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetReportType.java
src/main/java/com/plaid/client/model/AssetReportType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 either a Fast Asset Report, which will contain only current identity and balance information, or a Full Asset Report, which will also contain historical balance information and transaction data. */ @JsonAdapter(AssetReportType.Adapter.class) public enum AssetReportType { FULL("FULL"), FAST("FAST"), // 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; AssetReportType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static AssetReportType fromValue(String value) { for (AssetReportType b : AssetReportType.values()) { if (b.value.equals(value)) { return b; } } return AssetReportType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<AssetReportType> { @Override public void write(final JsonWriter jsonWriter, final AssetReportType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public AssetReportType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return AssetReportType.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/StatementsListRequest.java
src/main/java/com/plaid/client/model/StatementsListRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * StatementsListRequest defines the request schema for &#x60;/statements/list&#x60; */ @ApiModel(description = "StatementsListRequest defines the request schema for `/statements/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class StatementsListRequest { 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 StatementsListRequest 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 StatementsListRequest 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 StatementsListRequest 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; } StatementsListRequest statementsListRequest = (StatementsListRequest) o; return Objects.equals(this.accessToken, statementsListRequest.accessToken) && Objects.equals(this.clientId, statementsListRequest.clientId) && Objects.equals(this.secret, statementsListRequest.secret); } @Override public int hashCode() { return Objects.hash(accessToken, clientId, secret); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class StatementsListRequest {\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/DocumentaryVerification.java
src/main/java/com/plaid/client/model/DocumentaryVerification.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.DocumentaryVerificationDocument; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Data, images, analysis, and results from the &#x60;documentary_verification&#x60; step. This field will be &#x60;null&#x60; unless &#x60;steps.documentary_verification&#x60; has reached a terminal state of either &#x60;success&#x60; or &#x60;failed&#x60;. */ @ApiModel(description = "Data, images, analysis, and results from the `documentary_verification` step. This field will be `null` unless `steps.documentary_verification` has reached a terminal state of either `success` or `failed`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class DocumentaryVerification { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private String status; public static final String SERIALIZED_NAME_DOCUMENTS = "documents"; @SerializedName(SERIALIZED_NAME_DOCUMENTS) private List<DocumentaryVerificationDocument> documents = new ArrayList<>(); public DocumentaryVerification status(String status) { this.status = status; return this; } /** * The outcome status for the associated Identity Verification attempt&#39;s &#x60;documentary_verification&#x60; step. This field will always have the same value as &#x60;steps.documentary_verification&#x60;. * @return status **/ @ApiModelProperty(example = "success", required = true, value = "The outcome status for the associated Identity Verification attempt's `documentary_verification` step. This field will always have the same value as `steps.documentary_verification`.") public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public DocumentaryVerification documents(List<DocumentaryVerificationDocument> documents) { this.documents = documents; return this; } public DocumentaryVerification addDocumentsItem(DocumentaryVerificationDocument documentsItem) { this.documents.add(documentsItem); return this; } /** * An array of documents submitted to the &#x60;documentary_verification&#x60; step. Each entry represents one user submission, where each submission will contain both a front and back image, or just a front image, depending on the document type. Note: Plaid will automatically let a user submit a new set of document images up to three times if we detect that a previous attempt might have failed due to user error. For example, if the first set of document images are blurry or obscured by glare, the user will be asked to capture their documents again, resulting in at least two separate entries within &#x60;documents&#x60;. If the overall &#x60;documentary_verification&#x60; is &#x60;failed&#x60;, the user has exhausted their retry attempts. * @return documents **/ @ApiModelProperty(required = true, value = "An array of documents submitted to the `documentary_verification` step. Each entry represents one user submission, where each submission will contain both a front and back image, or just a front image, depending on the document type. Note: Plaid will automatically let a user submit a new set of document images up to three times if we detect that a previous attempt might have failed due to user error. For example, if the first set of document images are blurry or obscured by glare, the user will be asked to capture their documents again, resulting in at least two separate entries within `documents`. If the overall `documentary_verification` is `failed`, the user has exhausted their retry attempts.") public List<DocumentaryVerificationDocument> getDocuments() { return documents; } public void setDocuments(List<DocumentaryVerificationDocument> documents) { this.documents = documents; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } DocumentaryVerification documentaryVerification = (DocumentaryVerification) o; return Objects.equals(this.status, documentaryVerification.status) && Objects.equals(this.documents, documentaryVerification.documents); } @Override public int hashCode() { return Objects.hash(status, documents); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class DocumentaryVerification {\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" documents: ").append(toIndentedString(documents)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/NetworkInsightsReport.java
src/main/java/com/plaid/client/model/NetworkInsightsReport.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.NetworkInsightsItem; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.List; /** * Contains data for the Network Insights Report. */ @ApiModel(description = "Contains data for the Network Insights Report.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class NetworkInsightsReport { public static final String SERIALIZED_NAME_REPORT_ID = "report_id"; @SerializedName(SERIALIZED_NAME_REPORT_ID) private String reportId; public static final String SERIALIZED_NAME_GENERATED_TIME = "generated_time"; @SerializedName(SERIALIZED_NAME_GENERATED_TIME) private OffsetDateTime generatedTime; public static final String SERIALIZED_NAME_NETWORK_ATTRIBUTES = "network_attributes"; @SerializedName(SERIALIZED_NAME_NETWORK_ATTRIBUTES) private Object networkAttributes; public static final String SERIALIZED_NAME_ITEMS = "items"; @SerializedName(SERIALIZED_NAME_ITEMS) private List<NetworkInsightsItem> items = new ArrayList<>(); public NetworkInsightsReport reportId(String reportId) { this.reportId = reportId; return this; } /** * The unique identifier associated with the Network Insights report object. * @return reportId **/ @ApiModelProperty(required = true, value = "The unique identifier associated with the Network Insights report object.") public String getReportId() { return reportId; } public void setReportId(String reportId) { this.reportId = reportId; } public NetworkInsightsReport generatedTime(OffsetDateTime generatedTime) { this.generatedTime = generatedTime; return this; } /** * The time when the Network Insights Report was generated. * @return generatedTime **/ @ApiModelProperty(required = true, value = "The time when the Network Insights Report was generated.") public OffsetDateTime getGeneratedTime() { return generatedTime; } public void setGeneratedTime(OffsetDateTime generatedTime) { this.generatedTime = generatedTime; } public NetworkInsightsReport networkAttributes(Object networkAttributes) { this.networkAttributes = networkAttributes; return this; } /** * A map of network attributes, where the key is a string, and the value is a float, int, or boolean. For a full list of attributes, contact your account manager. * @return networkAttributes **/ @ApiModelProperty(required = true, value = "A map of network attributes, where the key is a string, and the value is a float, int, or boolean. For a full list of attributes, contact your account manager.") public Object getNetworkAttributes() { return networkAttributes; } public void setNetworkAttributes(Object networkAttributes) { this.networkAttributes = networkAttributes; } public NetworkInsightsReport items(List<NetworkInsightsItem> items) { this.items = items; return this; } public NetworkInsightsReport addItemsItem(NetworkInsightsItem itemsItem) { this.items.add(itemsItem); return this; } /** * A list of Items associated with the provided &#x60;access_tokens&#x60;. * @return items **/ @ApiModelProperty(required = true, value = "A list of Items associated with the provided `access_tokens`.") public List<NetworkInsightsItem> getItems() { return items; } public void setItems(List<NetworkInsightsItem> items) { this.items = items; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } NetworkInsightsReport networkInsightsReport = (NetworkInsightsReport) o; return Objects.equals(this.reportId, networkInsightsReport.reportId) && Objects.equals(this.generatedTime, networkInsightsReport.generatedTime) && Objects.equals(this.networkAttributes, networkInsightsReport.networkAttributes) && Objects.equals(this.items, networkInsightsReport.items); } @Override public int hashCode() { return Objects.hash(reportId, generatedTime, networkAttributes, items); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class NetworkInsightsReport {\n"); sb.append(" reportId: ").append(toIndentedString(reportId)).append("\n"); sb.append(" generatedTime: ").append(toIndentedString(generatedTime)).append("\n"); sb.append(" networkAttributes: ").append(toIndentedString(networkAttributes)).append("\n"); sb.append(" items: ").append(toIndentedString(items)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ScopesContext.java
src/main/java/com/plaid/client/model/ScopesContext.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 indicator for when scopes are being updated. When scopes are updated via enrollment (i.e. OAuth), the partner must send &#x60;ENROLLMENT&#x60;. When scopes are updated in a post-enrollment view, the partner must send &#x60;PORTAL&#x60;. */ @JsonAdapter(ScopesContext.Adapter.class) public enum ScopesContext { ENROLLMENT("ENROLLMENT"), PORTAL("PORTAL"), // 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; ScopesContext(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static ScopesContext fromValue(String value) { for (ScopesContext b : ScopesContext.values()) { if (b.value.equals(value)) { return b; } } return ScopesContext.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<ScopesContext> { @Override public void write(final JsonWriter jsonWriter, final ScopesContext enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public ScopesContext read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return ScopesContext.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/TransferAuthorizationGuaranteeDecision.java
src/main/java/com/plaid/client/model/TransferAuthorizationGuaranteeDecision.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * Indicates whether the transfer is guaranteed by Plaid (Guarantee customers only). This field will contain either &#x60;GUARANTEED&#x60; or &#x60;NOT_GUARANTEED&#x60; indicating whether Plaid will guarantee the transfer. */ @JsonAdapter(TransferAuthorizationGuaranteeDecision.Adapter.class) public enum TransferAuthorizationGuaranteeDecision { GUARANTEED("GUARANTEED"), NOT_GUARANTEED("NOT_GUARANTEED"), 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; TransferAuthorizationGuaranteeDecision(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransferAuthorizationGuaranteeDecision fromValue(String value) { for (TransferAuthorizationGuaranteeDecision b : TransferAuthorizationGuaranteeDecision.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<TransferAuthorizationGuaranteeDecision> { @Override public void write(final JsonWriter jsonWriter, final TransferAuthorizationGuaranteeDecision enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransferAuthorizationGuaranteeDecision read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransferAuthorizationGuaranteeDecision.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/LinkDeliveryWebhookCommunicationMethod.java
src/main/java/com/plaid/client/model/LinkDeliveryWebhookCommunicationMethod.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 communication method used to deliver the Hosted Link session */ @JsonAdapter(LinkDeliveryWebhookCommunicationMethod.Adapter.class) public enum LinkDeliveryWebhookCommunicationMethod { SMS("SMS"), EMAIL("EMAIL"), // 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; LinkDeliveryWebhookCommunicationMethod(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static LinkDeliveryWebhookCommunicationMethod fromValue(String value) { for (LinkDeliveryWebhookCommunicationMethod b : LinkDeliveryWebhookCommunicationMethod.values()) { if (b.value.equals(value)) { return b; } } return LinkDeliveryWebhookCommunicationMethod.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<LinkDeliveryWebhookCommunicationMethod> { @Override public void write(final JsonWriter jsonWriter, final LinkDeliveryWebhookCommunicationMethod enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public LinkDeliveryWebhookCommunicationMethod read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return LinkDeliveryWebhookCommunicationMethod.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/SignalReturnReportRequest.java
src/main/java/com/plaid/client/model/SignalReturnReportRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * SignalReturnReportRequest defines the request schema for &#x60;/signal/return/report&#x60; */ @ApiModel(description = "SignalReturnReportRequest defines the request schema for `/signal/return/report`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SignalReturnReportRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_CLIENT_TRANSACTION_ID = "client_transaction_id"; @SerializedName(SERIALIZED_NAME_CLIENT_TRANSACTION_ID) private String clientTransactionId; public static final String SERIALIZED_NAME_RETURN_CODE = "return_code"; @SerializedName(SERIALIZED_NAME_RETURN_CODE) private String returnCode; public static final String SERIALIZED_NAME_RETURNED_AT = "returned_at"; @SerializedName(SERIALIZED_NAME_RETURNED_AT) private OffsetDateTime returnedAt; public SignalReturnReportRequest 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 SignalReturnReportRequest 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 SignalReturnReportRequest clientTransactionId(String clientTransactionId) { this.clientTransactionId = clientTransactionId; return this; } /** * Must be the same as the &#x60;client_transaction_id&#x60; supplied when calling &#x60;/signal/evaluate&#x60; or &#x60;/accounts/balance/get&#x60;. * @return clientTransactionId **/ @ApiModelProperty(required = true, value = "Must be the same as the `client_transaction_id` supplied when calling `/signal/evaluate` or `/accounts/balance/get`.") public String getClientTransactionId() { return clientTransactionId; } public void setClientTransactionId(String clientTransactionId) { this.clientTransactionId = clientTransactionId; } public SignalReturnReportRequest returnCode(String returnCode) { this.returnCode = returnCode; return this; } /** * Must be a valid ACH return code (e.g. \&quot;R01\&quot;) If formatted incorrectly, this will result in an [&#x60;INVALID_FIELD&#x60;](https://plaid.com/docs/errors/invalid-request/#invalid_field) error. * @return returnCode **/ @ApiModelProperty(required = true, value = "Must be a valid ACH return code (e.g. \"R01\") If formatted incorrectly, this will result in an [`INVALID_FIELD`](https://plaid.com/docs/errors/invalid-request/#invalid_field) error.") public String getReturnCode() { return returnCode; } public void setReturnCode(String returnCode) { this.returnCode = returnCode; } public SignalReturnReportRequest returnedAt(OffsetDateTime returnedAt) { this.returnedAt = returnedAt; return this; } /** * Date and time when you receive the returns from your payment processors, in ISO 8601 format (&#x60;YYYY-MM-DDTHH:mm:ssZ&#x60;). * @return returnedAt **/ @javax.annotation.Nullable @ApiModelProperty(value = "Date and time when you receive the returns from your payment processors, in ISO 8601 format (`YYYY-MM-DDTHH:mm:ssZ`).") public OffsetDateTime getReturnedAt() { return returnedAt; } public void setReturnedAt(OffsetDateTime returnedAt) { this.returnedAt = returnedAt; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SignalReturnReportRequest signalReturnReportRequest = (SignalReturnReportRequest) o; return Objects.equals(this.clientId, signalReturnReportRequest.clientId) && Objects.equals(this.secret, signalReturnReportRequest.secret) && Objects.equals(this.clientTransactionId, signalReturnReportRequest.clientTransactionId) && Objects.equals(this.returnCode, signalReturnReportRequest.returnCode) && Objects.equals(this.returnedAt, signalReturnReportRequest.returnedAt); } @Override public int hashCode() { return Objects.hash(clientId, secret, clientTransactionId, returnCode, returnedAt); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SignalReturnReportRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" clientTransactionId: ").append(toIndentedString(clientTransactionId)).append("\n"); sb.append(" returnCode: ").append(toIndentedString(returnCode)).append("\n"); sb.append(" returnedAt: ").append(toIndentedString(returnedAt)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CashflowReportTransactionsGetRequestOptions.java
src/main/java/com/plaid/client/model/CashflowReportTransactionsGetRequestOptions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * An optional object to be used with the request. If specified, &#x60;options&#x60; must not be &#x60;null&#x60;. */ @ApiModel(description = "An optional object to be used with the request. If specified, `options` must not be `null`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CashflowReportTransactionsGetRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) private List<String> accountIds = null; public CashflowReportTransactionsGetRequestOptions accountIds(List<String> accountIds) { this.accountIds = accountIds; return this; } public CashflowReportTransactionsGetRequestOptions addAccountIdsItem(String accountIdsItem) { if (this.accountIds == null) { this.accountIds = new ArrayList<>(); } this.accountIds.add(accountIdsItem); return this; } /** * A list of &#x60;account_ids&#x60; to retrieve for the Item Note: An error will be returned if a provided &#x60;account_id&#x60; is not associated with the Item. * @return accountIds **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of `account_ids` to retrieve for the Item Note: An error will be returned if a provided `account_id` is not associated with the Item.") public List<String> getAccountIds() { return accountIds; } public void setAccountIds(List<String> accountIds) { this.accountIds = accountIds; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CashflowReportTransactionsGetRequestOptions cashflowReportTransactionsGetRequestOptions = (CashflowReportTransactionsGetRequestOptions) o; return Objects.equals(this.accountIds, cashflowReportTransactionsGetRequestOptions.accountIds); } @Override public int hashCode() { return Objects.hash(accountIds); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CashflowReportTransactionsGetRequestOptions {\n"); sb.append(" accountIds: ").append(toIndentedString(accountIds)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/Meta.java
src/main/java/com/plaid/client/model/Meta.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Allows specifying the metadata of the test account */ @ApiModel(description = "Allows specifying the metadata of the test account") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Meta { 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_LIMIT = "limit"; @SerializedName(SERIALIZED_NAME_LIMIT) private Double limit; public static final String SERIALIZED_NAME_MASK = "mask"; @SerializedName(SERIALIZED_NAME_MASK) private String mask; public Meta name(String name) { this.name = name; return this; } /** * The account&#39;s name * @return name **/ @ApiModelProperty(required = true, value = "The account's name") public String getName() { return name; } public void setName(String name) { this.name = name; } public Meta officialName(String officialName) { this.officialName = officialName; return this; } /** * The account&#39;s official name * @return officialName **/ @ApiModelProperty(required = true, value = "The account's official name") public String getOfficialName() { return officialName; } public void setOfficialName(String officialName) { this.officialName = officialName; } public Meta limit(Double limit) { this.limit = limit; return this; } /** * The account&#39;s limit * @return limit **/ @ApiModelProperty(required = true, value = "The account's limit") public Double getLimit() { return limit; } public void setLimit(Double limit) { this.limit = limit; } public Meta mask(String mask) { this.mask = mask; return this; } /** * The account&#39;s mask. Should be an empty string or a string of 2-4 alphanumeric characters. This allows you to model a mask which does not match the account number (such as with a virtual account number). * @return mask **/ @ApiModelProperty(required = true, value = "The account's mask. Should be an empty string or a string of 2-4 alphanumeric characters. This allows you to model a mask which does not match the account number (such as with a virtual account number).") public String getMask() { return mask; } public void setMask(String mask) { this.mask = mask; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Meta meta = (Meta) o; return Objects.equals(this.name, meta.name) && Objects.equals(this.officialName, meta.officialName) && Objects.equals(this.limit, meta.limit) && Objects.equals(this.mask, meta.mask); } @Override public int hashCode() { return Objects.hash(name, officialName, limit, mask); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Meta {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" officialName: ").append(toIndentedString(officialName)).append("\n"); sb.append(" limit: ").append(toIndentedString(limit)).append("\n"); sb.append(" mask: ").append(toIndentedString(mask)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraCheckReportVerificationPdfGetRequest.java
src/main/java/com/plaid/client/model/CraCheckReportVerificationPdfGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CraCheckReportVerificationPdfReportType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * CraCheckReportVerificationPdfGetRequest defines the request schema for &#x60;/cra/check_report/verification/pdf/get&#x60;. */ @ApiModel(description = "CraCheckReportVerificationPdfGetRequest defines the request schema for `/cra/check_report/verification/pdf/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCheckReportVerificationPdfGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN = "third_party_user_token"; @SerializedName(SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN) private String thirdPartyUserToken; public static final String SERIALIZED_NAME_REPORT_TYPE = "report_type"; @SerializedName(SERIALIZED_NAME_REPORT_TYPE) private CraCheckReportVerificationPdfReportType reportType; public static final String SERIALIZED_NAME_USER_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) private String userToken; public CraCheckReportVerificationPdfGetRequest 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 CraCheckReportVerificationPdfGetRequest 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 CraCheckReportVerificationPdfGetRequest userId(String userId) { this.userId = userId; return this; } /** * A unique user identifier, created by &#x60;/user/create&#x60;. Integrations that began using &#x60;/user/create&#x60; after December 10, 2025 use this field to identify a user instead of the &#x60;user_token&#x60;. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis). * @return userId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique user identifier, created by `/user/create`. Integrations that began using `/user/create` after December 10, 2025 use this field to identify a user instead of the `user_token`. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis).") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public CraCheckReportVerificationPdfGetRequest thirdPartyUserToken(String thirdPartyUserToken) { this.thirdPartyUserToken = thirdPartyUserToken; return this; } /** * The third-party user token associated with the requested User data. * @return thirdPartyUserToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "The third-party user token associated with the requested User data.") public String getThirdPartyUserToken() { return thirdPartyUserToken; } public void setThirdPartyUserToken(String thirdPartyUserToken) { this.thirdPartyUserToken = thirdPartyUserToken; } public CraCheckReportVerificationPdfGetRequest reportType(CraCheckReportVerificationPdfReportType reportType) { this.reportType = reportType; return this; } /** * Get reportType * @return reportType **/ @ApiModelProperty(required = true, value = "") public CraCheckReportVerificationPdfReportType getReportType() { return reportType; } public void setReportType(CraCheckReportVerificationPdfReportType reportType) { this.reportType = reportType; } public CraCheckReportVerificationPdfGetRequest userToken(String userToken) { this.userToken = userToken; return this; } /** * The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the &#x60;user_token&#x60; field. All other customers should use the &#x60;user_id&#x60; instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis). * @return userToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the `user_token` field. All other customers should use the `user_id` instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis).") public String getUserToken() { return userToken; } public void setUserToken(String userToken) { this.userToken = userToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraCheckReportVerificationPdfGetRequest craCheckReportVerificationPdfGetRequest = (CraCheckReportVerificationPdfGetRequest) o; return Objects.equals(this.clientId, craCheckReportVerificationPdfGetRequest.clientId) && Objects.equals(this.secret, craCheckReportVerificationPdfGetRequest.secret) && Objects.equals(this.userId, craCheckReportVerificationPdfGetRequest.userId) && Objects.equals(this.thirdPartyUserToken, craCheckReportVerificationPdfGetRequest.thirdPartyUserToken) && Objects.equals(this.reportType, craCheckReportVerificationPdfGetRequest.reportType) && Objects.equals(this.userToken, craCheckReportVerificationPdfGetRequest.userToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, userId, thirdPartyUserToken, reportType, userToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportVerificationPdfGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" thirdPartyUserToken: ").append(toIndentedString(thirdPartyUserToken)).append("\n"); sb.append(" reportType: ").append(toIndentedString(reportType)).append("\n"); sb.append(" userToken: ").append(toIndentedString(userToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferScheduleIntervalUnit.java
src/main/java/com/plaid/client/model/TransferScheduleIntervalUnit.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 unit of the recurring interval. */ @JsonAdapter(TransferScheduleIntervalUnit.Adapter.class) public enum TransferScheduleIntervalUnit { WEEK("week"), MONTH("month"), // 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; TransferScheduleIntervalUnit(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static TransferScheduleIntervalUnit fromValue(String value) { for (TransferScheduleIntervalUnit b : TransferScheduleIntervalUnit.values()) { if (b.value.equals(value)) { return b; } } return TransferScheduleIntervalUnit.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<TransferScheduleIntervalUnit> { @Override public void write(final JsonWriter jsonWriter, final TransferScheduleIntervalUnit enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public TransferScheduleIntervalUnit read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return TransferScheduleIntervalUnit.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/TotalReportInflowAmount90d.java
src/main/java/com/plaid/client/model/TotalReportInflowAmount90d.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.math.BigDecimal; /** * Total amount of debit transactions into the report&#39;s account in the last 90 days. This field only takes into account USD transactions from the accounts. */ @ApiModel(description = "Total amount of debit transactions into the report's account in the last 90 days. This field only takes into account USD transactions from the accounts.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TotalReportInflowAmount90d { 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 TotalReportInflowAmount90d amount(Double amount) { this.amount = amount; return this; } /** * Value of amount with up to 2 decimal places. * @return amount **/ @ApiModelProperty(required = true, value = "Value of amount with up to 2 decimal places.") public Double getAmount() { return amount; } public void setAmount(Double amount) { this.amount = amount; } public TotalReportInflowAmount90d isoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * The ISO 4217 currency code of the amount or balance. * @return isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ISO 4217 currency code of the amount or balance.") public String getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(String isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public TotalReportInflowAmount90d unofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; return this; } /** * The unofficial currency code associated with the amount or balance. Always &#x60;null&#x60; if &#x60;iso_currency_code&#x60; is non-null. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries. * @return unofficialCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The unofficial currency code associated with the amount or balance. Always `null` if `iso_currency_code` is non-null. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries.") public String getUnofficialCurrencyCode() { return unofficialCurrencyCode; } public void setUnofficialCurrencyCode(String unofficialCurrencyCode) { this.unofficialCurrencyCode = unofficialCurrencyCode; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TotalReportInflowAmount90d totalReportInflowAmount90d = (TotalReportInflowAmount90d) o; return Objects.equals(this.amount, totalReportInflowAmount90d.amount) && Objects.equals(this.isoCurrencyCode, totalReportInflowAmount90d.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, totalReportInflowAmount90d.unofficialCurrencyCode); } @Override public int hashCode() { return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TotalReportInflowAmount90d {\n"); sb.append(" amount: ").append(toIndentedString(amount)).append("\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append(" unofficialCurrencyCode: ").append(toIndentedString(unofficialCurrencyCode)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferUserAddressInRequest.java
src/main/java/com/plaid/client/model/TransferUserAddressInRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 address associated with the account holder. */ @ApiModel(description = "The address associated with the account holder.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferUserAddressInRequest { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) private String street; public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) private String city; public static final String SERIALIZED_NAME_REGION = "region"; @SerializedName(SERIALIZED_NAME_REGION) private String region; public static final String SERIALIZED_NAME_POSTAL_CODE = "postal_code"; @SerializedName(SERIALIZED_NAME_POSTAL_CODE) private String postalCode; public static final String SERIALIZED_NAME_COUNTRY = "country"; @SerializedName(SERIALIZED_NAME_COUNTRY) private String country; public TransferUserAddressInRequest street(String street) { this.street = street; return this; } /** * The street number and name (i.e., \&quot;100 Market St.\&quot;). * @return street **/ @javax.annotation.Nullable @ApiModelProperty(value = "The street number and name (i.e., \"100 Market St.\").") public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } public TransferUserAddressInRequest city(String city) { this.city = city; return this; } /** * Ex. \&quot;San Francisco\&quot; * @return city **/ @javax.annotation.Nullable @ApiModelProperty(value = "Ex. \"San Francisco\"") public String getCity() { return city; } public void setCity(String city) { this.city = city; } public TransferUserAddressInRequest region(String region) { this.region = region; return this; } /** * The state or province (e.g., \&quot;CA\&quot;). * @return region **/ @javax.annotation.Nullable @ApiModelProperty(value = "The state or province (e.g., \"CA\").") public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public TransferUserAddressInRequest postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * The postal code (e.g., \&quot;94103\&quot;). * @return postalCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "The postal code (e.g., \"94103\").") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public TransferUserAddressInRequest country(String country) { this.country = country; return this; } /** * A two-letter country code (e.g., \&quot;US\&quot;). * @return country **/ @javax.annotation.Nullable @ApiModelProperty(value = "A two-letter country code (e.g., \"US\").") public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferUserAddressInRequest transferUserAddressInRequest = (TransferUserAddressInRequest) o; return Objects.equals(this.street, transferUserAddressInRequest.street) && Objects.equals(this.city, transferUserAddressInRequest.city) && Objects.equals(this.region, transferUserAddressInRequest.region) && Objects.equals(this.postalCode, transferUserAddressInRequest.postalCode) && Objects.equals(this.country, transferUserAddressInRequest.country); } @Override public int hashCode() { return Objects.hash(street, city, region, postalCode, country); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferUserAddressInRequest {\n"); sb.append(" street: ").append(toIndentedString(street)).append("\n"); sb.append(" city: ").append(toIndentedString(city)).append("\n"); sb.append(" region: ").append(toIndentedString(region)).append("\n"); sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n"); sb.append(" country: ").append(toIndentedString(country)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CashFlowUpdatesLargeDepositWebhook.java
src/main/java/com/plaid/client/model/CashFlowUpdatesLargeDepositWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.MonitoringInsightsStatus; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * For each user&#39;s item enabled for Cash Flow Updates, this webhook will fire when an update detects a deposit over $5,000. Upon receiving the webhook, call &#x60;/cra/monitoring_insights/get&#x60; to retrieve the updated insights. */ @ApiModel(description = "For each user's item enabled for Cash Flow Updates, this webhook will fire when an update detects a deposit over $5,000. Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CashFlowUpdatesLargeDepositWebhook { 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 CashFlowUpdatesLargeDepositWebhook 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 CashFlowUpdatesLargeDepositWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;LARGE_DEPOSIT_DETECTED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`LARGE_DEPOSIT_DETECTED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public CashFlowUpdatesLargeDepositWebhook 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 CashFlowUpdatesLargeDepositWebhook 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 CashFlowUpdatesLargeDepositWebhook 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; } CashFlowUpdatesLargeDepositWebhook cashFlowUpdatesLargeDepositWebhook = (CashFlowUpdatesLargeDepositWebhook) o; return Objects.equals(this.webhookType, cashFlowUpdatesLargeDepositWebhook.webhookType) && Objects.equals(this.webhookCode, cashFlowUpdatesLargeDepositWebhook.webhookCode) && Objects.equals(this.status, cashFlowUpdatesLargeDepositWebhook.status) && Objects.equals(this.userId, cashFlowUpdatesLargeDepositWebhook.userId) && Objects.equals(this.environment, cashFlowUpdatesLargeDepositWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, status, userId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CashFlowUpdatesLargeDepositWebhook {\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/TransferPlatformPersonCreateResponse.java
src/main/java/com/plaid/client/model/TransferPlatformPersonCreateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the response schema for &#x60;/transfer/platform/person/create&#x60; */ @ApiModel(description = "Defines the response schema for `/transfer/platform/person/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferPlatformPersonCreateResponse { public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public static final String SERIALIZED_NAME_PERSON_ID = "person_id"; @SerializedName(SERIALIZED_NAME_PERSON_ID) private String personId; public TransferPlatformPersonCreateResponse 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 TransferPlatformPersonCreateResponse personId(String personId) { this.personId = personId; return this; } /** * An ID that should be used when submitting additional requirements that are associated with this person. * @return personId **/ @ApiModelProperty(required = true, value = "An ID that should be used when submitting additional requirements that are associated with this person.") 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; } TransferPlatformPersonCreateResponse transferPlatformPersonCreateResponse = (TransferPlatformPersonCreateResponse) o; return Objects.equals(this.requestId, transferPlatformPersonCreateResponse.requestId) && Objects.equals(this.personId, transferPlatformPersonCreateResponse.personId); } @Override public int hashCode() { return Objects.hash(requestId, personId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferPlatformPersonCreateResponse {\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).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/Loan.java
src/main/java/com/plaid/client/model/Loan.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.LoanIdentifiers; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Information specific to a mortgage loan agreement between one or more borrowers and a mortgage lender. */ @ApiModel(description = "Information specific to a mortgage loan agreement between one or more borrowers and a mortgage lender.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Loan { public static final String SERIALIZED_NAME_L_O_A_N_I_D_E_N_T_I_F_I_E_R_S = "LOAN_IDENTIFIERS"; @SerializedName(SERIALIZED_NAME_L_O_A_N_I_D_E_N_T_I_F_I_E_R_S) private LoanIdentifiers LOAN_IDENTIFIERS; public Loan LOAN_IDENTIFIERS(LoanIdentifiers LOAN_IDENTIFIERS) { this.LOAN_IDENTIFIERS = LOAN_IDENTIFIERS; return this; } /** * Get LOAN_IDENTIFIERS * @return LOAN_IDENTIFIERS **/ @ApiModelProperty(required = true, value = "") public LoanIdentifiers getLOANIDENTIFIERS() { return LOAN_IDENTIFIERS; } public void setLOANIDENTIFIERS(LoanIdentifiers LOAN_IDENTIFIERS) { this.LOAN_IDENTIFIERS = LOAN_IDENTIFIERS; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Loan loan = (Loan) o; return Objects.equals(this.LOAN_IDENTIFIERS, loan.LOAN_IDENTIFIERS); } @Override public int hashCode() { return Objects.hash(LOAN_IDENTIFIERS); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Loan {\n"); sb.append(" LOAN_IDENTIFIERS: ").append(toIndentedString(LOAN_IDENTIFIERS)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BaseReportInvestments.java
src/main/java/com/plaid/client/model/BaseReportInvestments.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.BaseReportInvestmentHolding; import com.plaid.client.model.BaseReportInvestmentSecurity; import com.plaid.client.model.BaseReportInvestmentTransaction; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * A set of fields describing the investments data on an account. */ @ApiModel(description = "A set of fields describing the investments data on an account.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BaseReportInvestments { public static final String SERIALIZED_NAME_HOLDINGS = "holdings"; @SerializedName(SERIALIZED_NAME_HOLDINGS) private List<BaseReportInvestmentHolding> holdings = new ArrayList<>(); public static final String SERIALIZED_NAME_SECURITIES = "securities"; @SerializedName(SERIALIZED_NAME_SECURITIES) private List<BaseReportInvestmentSecurity> securities = new ArrayList<>(); public static final String SERIALIZED_NAME_INVESTMENT_TRANSACTIONS = "investment_transactions"; @SerializedName(SERIALIZED_NAME_INVESTMENT_TRANSACTIONS) private List<BaseReportInvestmentTransaction> investmentTransactions = new ArrayList<>(); public BaseReportInvestments holdings(List<BaseReportInvestmentHolding> holdings) { this.holdings = holdings; return this; } public BaseReportInvestments addHoldingsItem(BaseReportInvestmentHolding holdingsItem) { this.holdings.add(holdingsItem); return this; } /** * Quantities and values of securities held in the investment account. Map to the &#x60;securities&#x60; array for security details. * @return holdings **/ @ApiModelProperty(required = true, value = "Quantities and values of securities held in the investment account. Map to the `securities` array for security details.") public List<BaseReportInvestmentHolding> getHoldings() { return holdings; } public void setHoldings(List<BaseReportInvestmentHolding> holdings) { this.holdings = holdings; } public BaseReportInvestments securities(List<BaseReportInvestmentSecurity> securities) { this.securities = securities; return this; } public BaseReportInvestments addSecuritiesItem(BaseReportInvestmentSecurity securitiesItem) { this.securities.add(securitiesItem); return this; } /** * Details of specific securities held in the investment account. * @return securities **/ @ApiModelProperty(required = true, value = "Details of specific securities held in the investment account.") public List<BaseReportInvestmentSecurity> getSecurities() { return securities; } public void setSecurities(List<BaseReportInvestmentSecurity> securities) { this.securities = securities; } public BaseReportInvestments investmentTransactions(List<BaseReportInvestmentTransaction> investmentTransactions) { this.investmentTransactions = investmentTransactions; return this; } public BaseReportInvestments addInvestmentTransactionsItem(BaseReportInvestmentTransaction investmentTransactionsItem) { this.investmentTransactions.add(investmentTransactionsItem); return this; } /** * Transaction history on the investment account. * @return investmentTransactions **/ @ApiModelProperty(required = true, value = "Transaction history on the investment account.") public List<BaseReportInvestmentTransaction> getInvestmentTransactions() { return investmentTransactions; } public void setInvestmentTransactions(List<BaseReportInvestmentTransaction> investmentTransactions) { this.investmentTransactions = investmentTransactions; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BaseReportInvestments baseReportInvestments = (BaseReportInvestments) o; return Objects.equals(this.holdings, baseReportInvestments.holdings) && Objects.equals(this.securities, baseReportInvestments.securities) && Objects.equals(this.investmentTransactions, baseReportInvestments.investmentTransactions); } @Override public int hashCode() { return Objects.hash(holdings, securities, investmentTransactions); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BaseReportInvestments {\n"); sb.append(" holdings: ").append(toIndentedString(holdings)).append("\n"); sb.append(" securities: ").append(toIndentedString(securities)).append("\n"); sb.append(" investmentTransactions: ").append(toIndentedString(investmentTransactions)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IDNumberType.java
src/main/java/com/plaid/client/model/IDNumberType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 globally unique and human readable ID type, specific to the country and document category. For more context on this field, see [Input Validation Rules](https://cognitohq.com/docs/flow/flow-hybrid-input-validation#id-numbers). */ @JsonAdapter(IDNumberType.Adapter.class) public enum IDNumberType { AR_DNI("ar_dni"), AU_DRIVERS_LICENSE("au_drivers_license"), AU_PASSPORT("au_passport"), BR_CPF("br_cpf"), CA_SIN("ca_sin"), CL_RUN("cl_run"), CN_RESIDENT_CARD("cn_resident_card"), CO_NIT("co_nit"), DK_CPR("dk_cpr"), EG_NATIONAL_ID("eg_national_id"), ES_DNI("es_dni"), ES_NIE("es_nie"), HK_HKID("hk_hkid"), IN_PAN("in_pan"), IT_CF("it_cf"), JO_CIVIL_ID("jo_civil_id"), JP_MY_NUMBER("jp_my_number"), KE_HUDUMA_NAMBA("ke_huduma_namba"), KW_CIVIL_ID("kw_civil_id"), MX_CURP("mx_curp"), MX_RFC("mx_rfc"), MY_NRIC("my_nric"), NG_NIN("ng_nin"), NZ_DRIVERS_LICENSE("nz_drivers_license"), OM_CIVIL_ID("om_civil_id"), PH_PSN("ph_psn"), PL_PESEL("pl_pesel"), RO_CNP("ro_cnp"), SA_NATIONAL_ID("sa_national_id"), SE_PIN("se_pin"), SG_NRIC("sg_nric"), TR_TC_KIMLIK("tr_tc_kimlik"), US_SSN("us_ssn"), US_SSN_LAST_4("us_ssn_last_4"), ZA_SMART_ID("za_smart_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; IDNumberType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static IDNumberType fromValue(String value) { for (IDNumberType b : IDNumberType.values()) { if (b.value.equals(value)) { return b; } } return IDNumberType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<IDNumberType> { @Override public void write(final JsonWriter jsonWriter, final IDNumberType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public IDNumberType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return IDNumberType.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/IdentityVerificationGetRequest.java
src/main/java/com/plaid/client/model/IdentityVerificationGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 an Identity Verification */ @ApiModel(description = "Request input for fetching an Identity Verification") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityVerificationGetRequest { 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_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 IdentityVerificationGetRequest identityVerificationId(String identityVerificationId) { this.identityVerificationId = identityVerificationId; return this; } /** * ID of the associated Identity Verification attempt. * @return identityVerificationId **/ @ApiModelProperty(example = "idv_52xR9LKo77r1Np", required = true, value = "ID of the associated Identity Verification attempt.") public String getIdentityVerificationId() { return identityVerificationId; } public void setIdentityVerificationId(String identityVerificationId) { this.identityVerificationId = identityVerificationId; } public IdentityVerificationGetRequest 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 IdentityVerificationGetRequest 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; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IdentityVerificationGetRequest identityVerificationGetRequest = (IdentityVerificationGetRequest) o; return Objects.equals(this.identityVerificationId, identityVerificationGetRequest.identityVerificationId) && Objects.equals(this.secret, identityVerificationGetRequest.secret) && Objects.equals(this.clientId, identityVerificationGetRequest.clientId); } @Override public int hashCode() { return Objects.hash(identityVerificationId, secret, clientId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityVerificationGetRequest {\n"); sb.append(" identityVerificationId: ").append(toIndentedString(identityVerificationId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/InvestmentsAuthGetResponse.java
src/main/java/com/plaid/client/model/InvestmentsAuthGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AccountBase; import com.plaid.client.model.Holding; import com.plaid.client.model.InvestmentsAuthAccountDetails401k; import com.plaid.client.model.InvestmentsAuthDataSources; import com.plaid.client.model.InvestmentsAuthGetNumbers; import com.plaid.client.model.InvestmentsAuthOwner; import com.plaid.client.model.Item; import com.plaid.client.model.Security; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * InvestmentsAuthGetResponse defines the response schema for &#x60;/investments/auth/get&#x60; */ @ApiModel(description = "InvestmentsAuthGetResponse defines the response schema for `/investments/auth/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InvestmentsAuthGetResponse { public static final String SERIALIZED_NAME_ACCOUNTS = "accounts"; @SerializedName(SERIALIZED_NAME_ACCOUNTS) private List<AccountBase> accounts = new ArrayList<>(); public static final String SERIALIZED_NAME_HOLDINGS = "holdings"; @SerializedName(SERIALIZED_NAME_HOLDINGS) private List<Holding> holdings = new ArrayList<>(); public static final String SERIALIZED_NAME_SECURITIES = "securities"; @SerializedName(SERIALIZED_NAME_SECURITIES) private List<Security> securities = new ArrayList<>(); public static final String SERIALIZED_NAME_OWNERS = "owners"; @SerializedName(SERIALIZED_NAME_OWNERS) private List<InvestmentsAuthOwner> owners = new ArrayList<>(); public static final String SERIALIZED_NAME_NUMBERS = "numbers"; @SerializedName(SERIALIZED_NAME_NUMBERS) private InvestmentsAuthGetNumbers numbers; public static final String SERIALIZED_NAME_DATA_SOURCES = "data_sources"; @SerializedName(SERIALIZED_NAME_DATA_SOURCES) private InvestmentsAuthDataSources dataSources; public static final String SERIALIZED_NAME_ACCOUNT_DETAILS401K = "account_details_401k"; @SerializedName(SERIALIZED_NAME_ACCOUNT_DETAILS401K) private List<InvestmentsAuthAccountDetails401k> accountDetails401k = null; 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 InvestmentsAuthGetResponse accounts(List<AccountBase> accounts) { this.accounts = accounts; return this; } public InvestmentsAuthGetResponse addAccountsItem(AccountBase accountsItem) { this.accounts.add(accountsItem); return this; } /** * The accounts for which data is being retrieved * @return accounts **/ @ApiModelProperty(required = true, value = "The accounts for which data is being retrieved") public List<AccountBase> getAccounts() { return accounts; } public void setAccounts(List<AccountBase> accounts) { this.accounts = accounts; } public InvestmentsAuthGetResponse holdings(List<Holding> holdings) { this.holdings = holdings; return this; } public InvestmentsAuthGetResponse addHoldingsItem(Holding holdingsItem) { this.holdings.add(holdingsItem); return this; } /** * The holdings belonging to investment accounts associated with the Item. Details of the securities in the holdings are provided in the &#x60;securities&#x60; field. * @return holdings **/ @ApiModelProperty(required = true, value = "The holdings belonging to investment accounts associated with the Item. Details of the securities in the holdings are provided in the `securities` field. ") public List<Holding> getHoldings() { return holdings; } public void setHoldings(List<Holding> holdings) { this.holdings = holdings; } public InvestmentsAuthGetResponse securities(List<Security> securities) { this.securities = securities; return this; } public InvestmentsAuthGetResponse addSecuritiesItem(Security securitiesItem) { this.securities.add(securitiesItem); return this; } /** * Objects describing the securities held in the accounts associated with the Item. * @return securities **/ @ApiModelProperty(required = true, value = "Objects describing the securities held in the accounts associated with the Item. ") public List<Security> getSecurities() { return securities; } public void setSecurities(List<Security> securities) { this.securities = securities; } public InvestmentsAuthGetResponse owners(List<InvestmentsAuthOwner> owners) { this.owners = owners; return this; } public InvestmentsAuthGetResponse addOwnersItem(InvestmentsAuthOwner ownersItem) { this.owners.add(ownersItem); return this; } /** * Information about the account owners for the accounts associated with the Item. * @return owners **/ @ApiModelProperty(required = true, value = "Information about the account owners for the accounts associated with the Item. ") public List<InvestmentsAuthOwner> getOwners() { return owners; } public void setOwners(List<InvestmentsAuthOwner> owners) { this.owners = owners; } public InvestmentsAuthGetResponse numbers(InvestmentsAuthGetNumbers numbers) { this.numbers = numbers; return this; } /** * Get numbers * @return numbers **/ @ApiModelProperty(required = true, value = "") public InvestmentsAuthGetNumbers getNumbers() { return numbers; } public void setNumbers(InvestmentsAuthGetNumbers numbers) { this.numbers = numbers; } public InvestmentsAuthGetResponse dataSources(InvestmentsAuthDataSources dataSources) { this.dataSources = dataSources; return this; } /** * Get dataSources * @return dataSources **/ @ApiModelProperty(required = true, value = "") public InvestmentsAuthDataSources getDataSources() { return dataSources; } public void setDataSources(InvestmentsAuthDataSources dataSources) { this.dataSources = dataSources; } public InvestmentsAuthGetResponse accountDetails401k(List<InvestmentsAuthAccountDetails401k> accountDetails401k) { this.accountDetails401k = accountDetails401k; return this; } public InvestmentsAuthGetResponse addAccountDetails401kItem(InvestmentsAuthAccountDetails401k accountDetails401kItem) { if (this.accountDetails401k == null) { this.accountDetails401k = new ArrayList<>(); } this.accountDetails401k.add(accountDetails401kItem); return this; } /** * Additional information for accounts of 401k subtype. * @return accountDetails401k **/ @javax.annotation.Nullable @ApiModelProperty(value = "Additional information for accounts of 401k subtype.") public List<InvestmentsAuthAccountDetails401k> getAccountDetails401k() { return accountDetails401k; } public void setAccountDetails401k(List<InvestmentsAuthAccountDetails401k> accountDetails401k) { this.accountDetails401k = accountDetails401k; } public InvestmentsAuthGetResponse 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 InvestmentsAuthGetResponse 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; } InvestmentsAuthGetResponse investmentsAuthGetResponse = (InvestmentsAuthGetResponse) o; return Objects.equals(this.accounts, investmentsAuthGetResponse.accounts) && Objects.equals(this.holdings, investmentsAuthGetResponse.holdings) && Objects.equals(this.securities, investmentsAuthGetResponse.securities) && Objects.equals(this.owners, investmentsAuthGetResponse.owners) && Objects.equals(this.numbers, investmentsAuthGetResponse.numbers) && Objects.equals(this.dataSources, investmentsAuthGetResponse.dataSources) && Objects.equals(this.accountDetails401k, investmentsAuthGetResponse.accountDetails401k) && Objects.equals(this.item, investmentsAuthGetResponse.item) && Objects.equals(this.requestId, investmentsAuthGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(accounts, holdings, securities, owners, numbers, dataSources, accountDetails401k, item, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InvestmentsAuthGetResponse {\n"); sb.append(" accounts: ").append(toIndentedString(accounts)).append("\n"); sb.append(" holdings: ").append(toIndentedString(holdings)).append("\n"); sb.append(" securities: ").append(toIndentedString(securities)).append("\n"); sb.append(" owners: ").append(toIndentedString(owners)).append("\n"); sb.append(" numbers: ").append(toIndentedString(numbers)).append("\n"); sb.append(" dataSources: ").append(toIndentedString(dataSources)).append("\n"); sb.append(" accountDetails401k: ").append(toIndentedString(accountDetails401k)).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/CreditBankIncomeWarning.java
src/main/java/com/plaid/client/model/CreditBankIncomeWarning.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CreditBankIncomeCause; import com.plaid.client.model.CreditBankIncomeWarningCode; import com.plaid.client.model.CreditBankIncomeWarningType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The warning associated with the data that was unavailable for the Bank Income Report. */ @ApiModel(description = "The warning associated with the data that was unavailable for the Bank Income Report.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditBankIncomeWarning { public static final String SERIALIZED_NAME_WARNING_TYPE = "warning_type"; @SerializedName(SERIALIZED_NAME_WARNING_TYPE) private CreditBankIncomeWarningType warningType; public static final String SERIALIZED_NAME_WARNING_CODE = "warning_code"; @SerializedName(SERIALIZED_NAME_WARNING_CODE) private CreditBankIncomeWarningCode warningCode; public static final String SERIALIZED_NAME_CAUSE = "cause"; @SerializedName(SERIALIZED_NAME_CAUSE) private CreditBankIncomeCause cause; public CreditBankIncomeWarning warningType(CreditBankIncomeWarningType warningType) { this.warningType = warningType; return this; } /** * Get warningType * @return warningType **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CreditBankIncomeWarningType getWarningType() { return warningType; } public void setWarningType(CreditBankIncomeWarningType warningType) { this.warningType = warningType; } public CreditBankIncomeWarning warningCode(CreditBankIncomeWarningCode warningCode) { this.warningCode = warningCode; return this; } /** * Get warningCode * @return warningCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CreditBankIncomeWarningCode getWarningCode() { return warningCode; } public void setWarningCode(CreditBankIncomeWarningCode warningCode) { this.warningCode = warningCode; } public CreditBankIncomeWarning cause(CreditBankIncomeCause cause) { this.cause = cause; return this; } /** * Get cause * @return cause **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CreditBankIncomeCause getCause() { return cause; } public void setCause(CreditBankIncomeCause cause) { this.cause = cause; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditBankIncomeWarning creditBankIncomeWarning = (CreditBankIncomeWarning) o; return Objects.equals(this.warningType, creditBankIncomeWarning.warningType) && Objects.equals(this.warningCode, creditBankIncomeWarning.warningCode) && Objects.equals(this.cause, creditBankIncomeWarning.cause); } @Override public int hashCode() { return Objects.hash(warningType, warningCode, cause); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditBankIncomeWarning {\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/PhysicalDocumentExtractedDataAnalysis.java
src/main/java/com/plaid/client/model/PhysicalDocumentExtractedDataAnalysis.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.DocumentDateOfBirthMatchCode; import com.plaid.client.model.DocumentNameMatchCode; import com.plaid.client.model.ExpirationDate; import com.plaid.client.model.IssuingCountry; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Analysis of the data extracted from the submitted document. */ @ApiModel(description = "Analysis of the data extracted from the submitted document.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PhysicalDocumentExtractedDataAnalysis { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private DocumentNameMatchCode name; public static final String SERIALIZED_NAME_DATE_OF_BIRTH = "date_of_birth"; @SerializedName(SERIALIZED_NAME_DATE_OF_BIRTH) private DocumentDateOfBirthMatchCode dateOfBirth; public static final String SERIALIZED_NAME_EXPIRATION_DATE = "expiration_date"; @SerializedName(SERIALIZED_NAME_EXPIRATION_DATE) private ExpirationDate expirationDate; public static final String SERIALIZED_NAME_ISSUING_COUNTRY = "issuing_country"; @SerializedName(SERIALIZED_NAME_ISSUING_COUNTRY) private IssuingCountry issuingCountry; public PhysicalDocumentExtractedDataAnalysis name(DocumentNameMatchCode name) { this.name = name; return this; } /** * Get name * @return name **/ @ApiModelProperty(required = true, value = "") public DocumentNameMatchCode getName() { return name; } public void setName(DocumentNameMatchCode name) { this.name = name; } public PhysicalDocumentExtractedDataAnalysis dateOfBirth(DocumentDateOfBirthMatchCode dateOfBirth) { this.dateOfBirth = dateOfBirth; return this; } /** * Get dateOfBirth * @return dateOfBirth **/ @ApiModelProperty(required = true, value = "") public DocumentDateOfBirthMatchCode getDateOfBirth() { return dateOfBirth; } public void setDateOfBirth(DocumentDateOfBirthMatchCode dateOfBirth) { this.dateOfBirth = dateOfBirth; } public PhysicalDocumentExtractedDataAnalysis expirationDate(ExpirationDate expirationDate) { this.expirationDate = expirationDate; return this; } /** * Get expirationDate * @return expirationDate **/ @ApiModelProperty(required = true, value = "") public ExpirationDate getExpirationDate() { return expirationDate; } public void setExpirationDate(ExpirationDate expirationDate) { this.expirationDate = expirationDate; } public PhysicalDocumentExtractedDataAnalysis issuingCountry(IssuingCountry issuingCountry) { this.issuingCountry = issuingCountry; return this; } /** * Get issuingCountry * @return issuingCountry **/ @ApiModelProperty(required = true, value = "") public IssuingCountry getIssuingCountry() { return issuingCountry; } public void setIssuingCountry(IssuingCountry issuingCountry) { this.issuingCountry = issuingCountry; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PhysicalDocumentExtractedDataAnalysis physicalDocumentExtractedDataAnalysis = (PhysicalDocumentExtractedDataAnalysis) o; return Objects.equals(this.name, physicalDocumentExtractedDataAnalysis.name) && Objects.equals(this.dateOfBirth, physicalDocumentExtractedDataAnalysis.dateOfBirth) && Objects.equals(this.expirationDate, physicalDocumentExtractedDataAnalysis.expirationDate) && Objects.equals(this.issuingCountry, physicalDocumentExtractedDataAnalysis.issuingCountry); } @Override public int hashCode() { return Objects.hash(name, dateOfBirth, expirationDate, issuingCountry); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PhysicalDocumentExtractedDataAnalysis {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" dateOfBirth: ").append(toIndentedString(dateOfBirth)).append("\n"); sb.append(" expirationDate: ").append(toIndentedString(expirationDate)).append("\n"); sb.append(" issuingCountry: ").append(toIndentedString(issuingCountry)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkOAuthCorrelationIdExchangeRequest.java
src/main/java/com/plaid/client/model/LinkOAuthCorrelationIdExchangeRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * LinkOAuthCorrelationIdExchangeRequest defines the request schema for &#x60;/link/oauth/correlation_id/exchange&#x60; */ @ApiModel(description = "LinkOAuthCorrelationIdExchangeRequest defines the request schema for `/link/oauth/correlation_id/exchange`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkOAuthCorrelationIdExchangeRequest { 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_LINK_CORRELATION_ID = "link_correlation_id"; @SerializedName(SERIALIZED_NAME_LINK_CORRELATION_ID) private String linkCorrelationId; public LinkOAuthCorrelationIdExchangeRequest 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 LinkOAuthCorrelationIdExchangeRequest 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 LinkOAuthCorrelationIdExchangeRequest linkCorrelationId(String linkCorrelationId) { this.linkCorrelationId = linkCorrelationId; return this; } /** * A &#x60;link_correlation_id&#x60; from a received OAuth redirect URI callback * @return linkCorrelationId **/ @ApiModelProperty(required = true, value = "A `link_correlation_id` from a received OAuth redirect URI callback") public String getLinkCorrelationId() { return linkCorrelationId; } public void setLinkCorrelationId(String linkCorrelationId) { this.linkCorrelationId = linkCorrelationId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkOAuthCorrelationIdExchangeRequest linkOAuthCorrelationIdExchangeRequest = (LinkOAuthCorrelationIdExchangeRequest) o; return Objects.equals(this.clientId, linkOAuthCorrelationIdExchangeRequest.clientId) && Objects.equals(this.secret, linkOAuthCorrelationIdExchangeRequest.secret) && Objects.equals(this.linkCorrelationId, linkOAuthCorrelationIdExchangeRequest.linkCorrelationId); } @Override public int hashCode() { return Objects.hash(clientId, secret, linkCorrelationId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkOAuthCorrelationIdExchangeRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" linkCorrelationId: ").append(toIndentedString(linkCorrelationId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/DetailedOriginator.java
src/main/java/com/plaid/client/model/DetailedOriginator.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.TransferDiligenceStatus; import com.plaid.client.model.TransferPlatformRequirement; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * Originator and their status. */ @ApiModel(description = "Originator and their status.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class DetailedOriginator { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_TRANSFER_DILIGENCE_STATUS = "transfer_diligence_status"; @SerializedName(SERIALIZED_NAME_TRANSFER_DILIGENCE_STATUS) private TransferDiligenceStatus transferDiligenceStatus; public static final String SERIALIZED_NAME_COMPANY_NAME = "company_name"; @SerializedName(SERIALIZED_NAME_COMPANY_NAME) private String companyName; public static final String SERIALIZED_NAME_OUTSTANDING_REQUIREMENTS = "outstanding_requirements"; @SerializedName(SERIALIZED_NAME_OUTSTANDING_REQUIREMENTS) private List<TransferPlatformRequirement> outstandingRequirements = null; public DetailedOriginator clientId(String clientId) { this.clientId = clientId; return this; } /** * Originator’s client ID. * @return clientId **/ @ApiModelProperty(required = true, value = "Originator’s client ID.") public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public DetailedOriginator transferDiligenceStatus(TransferDiligenceStatus transferDiligenceStatus) { this.transferDiligenceStatus = transferDiligenceStatus; return this; } /** * Get transferDiligenceStatus * @return transferDiligenceStatus **/ @ApiModelProperty(required = true, value = "") public TransferDiligenceStatus getTransferDiligenceStatus() { return transferDiligenceStatus; } public void setTransferDiligenceStatus(TransferDiligenceStatus transferDiligenceStatus) { this.transferDiligenceStatus = transferDiligenceStatus; } public DetailedOriginator companyName(String companyName) { this.companyName = companyName; return this; } /** * The company name of the end customer. * @return companyName **/ @ApiModelProperty(required = true, value = "The company name of the end customer.") public String getCompanyName() { return companyName; } public void setCompanyName(String companyName) { this.companyName = companyName; } public DetailedOriginator outstandingRequirements(List<TransferPlatformRequirement> outstandingRequirements) { this.outstandingRequirements = outstandingRequirements; return this; } public DetailedOriginator addOutstandingRequirementsItem(TransferPlatformRequirement outstandingRequirementsItem) { if (this.outstandingRequirements == null) { this.outstandingRequirements = new ArrayList<>(); } this.outstandingRequirements.add(outstandingRequirementsItem); return this; } /** * List of outstanding requirements that must be submitted before Plaid can approve the originator. Only populated when &#x60;transfer_diligence_status&#x60; is &#x60;more_information_required&#x60;. * @return outstandingRequirements **/ @javax.annotation.Nullable @ApiModelProperty(value = "List of outstanding requirements that must be submitted before Plaid can approve the originator. Only populated when `transfer_diligence_status` is `more_information_required`.") public List<TransferPlatformRequirement> getOutstandingRequirements() { return outstandingRequirements; } public void setOutstandingRequirements(List<TransferPlatformRequirement> outstandingRequirements) { this.outstandingRequirements = outstandingRequirements; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } DetailedOriginator detailedOriginator = (DetailedOriginator) o; return Objects.equals(this.clientId, detailedOriginator.clientId) && Objects.equals(this.transferDiligenceStatus, detailedOriginator.transferDiligenceStatus) && Objects.equals(this.companyName, detailedOriginator.companyName) && Objects.equals(this.outstandingRequirements, detailedOriginator.outstandingRequirements); } @Override public int hashCode() { return Objects.hash(clientId, transferDiligenceStatus, companyName, outstandingRequirements); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class DetailedOriginator {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" transferDiligenceStatus: ").append(toIndentedString(transferDiligenceStatus)).append("\n"); sb.append(" companyName: ").append(toIndentedString(companyName)).append("\n"); sb.append(" outstandingRequirements: ").append(toIndentedString(outstandingRequirements)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraCheckReportIncomeInsightsGetResponse.java
src/main/java/com/plaid/client/model/CraCheckReportIncomeInsightsGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CheckReportWarning; import com.plaid.client.model.CraIncomeInsights; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * CraCheckReportIncomeInsightsGetResponse defines the response schema for &#x60;/cra/check_report/income_insights/get&#x60;. */ @ApiModel(description = "CraCheckReportIncomeInsightsGetResponse defines the response schema for `/cra/check_report/income_insights/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCheckReportIncomeInsightsGetResponse { public static final String SERIALIZED_NAME_REPORT = "report"; @SerializedName(SERIALIZED_NAME_REPORT) private CraIncomeInsights report; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public static final String SERIALIZED_NAME_WARNINGS = "warnings"; @SerializedName(SERIALIZED_NAME_WARNINGS) private List<CheckReportWarning> warnings = null; public CraCheckReportIncomeInsightsGetResponse report(CraIncomeInsights report) { this.report = report; return this; } /** * Get report * @return report **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CraIncomeInsights getReport() { return report; } public void setReport(CraIncomeInsights report) { this.report = report; } public CraCheckReportIncomeInsightsGetResponse 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 CraCheckReportIncomeInsightsGetResponse warnings(List<CheckReportWarning> warnings) { this.warnings = warnings; return this; } public CraCheckReportIncomeInsightsGetResponse addWarningsItem(CheckReportWarning warningsItem) { if (this.warnings == null) { this.warnings = new ArrayList<>(); } this.warnings.add(warningsItem); return this; } /** * If the Income Insights generation was successful but a subset of data could not be retrieved, this array will contain information about the errors causing information to be missing * @return warnings **/ @javax.annotation.Nullable @ApiModelProperty(value = "If the Income Insights generation was successful but a subset of data could not be retrieved, this array will contain information about the errors causing information to be missing") public List<CheckReportWarning> getWarnings() { return warnings; } public void setWarnings(List<CheckReportWarning> warnings) { this.warnings = warnings; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraCheckReportIncomeInsightsGetResponse craCheckReportIncomeInsightsGetResponse = (CraCheckReportIncomeInsightsGetResponse) o; return Objects.equals(this.report, craCheckReportIncomeInsightsGetResponse.report) && Objects.equals(this.requestId, craCheckReportIncomeInsightsGetResponse.requestId) && Objects.equals(this.warnings, craCheckReportIncomeInsightsGetResponse.warnings); } @Override public int hashCode() { return Objects.hash(report, requestId, warnings); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportIncomeInsightsGetResponse {\n"); sb.append(" report: ").append(toIndentedString(report)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append(" warnings: ").append(toIndentedString(warnings)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IncomeVerificationRiskSignalsStatusWebhook.java
src/main/java/com/plaid/client/model/IncomeVerificationRiskSignalsStatusWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.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 risk signals have been processed for documents uploaded via Document Income. It will typically take a minute or two for this webhook to fire after the end user has uploaded their documents in the Document Income flow. Once this webhook has fired, &#x60;/credit/payroll_income/risk_signals/get&#x60; may then be called to determine whether the documents were successfully processed and to retrieve risk data. */ @ApiModel(description = "Fired when risk signals have been processed for documents uploaded via Document Income. It will typically take a minute or two for this webhook to fire after the end user has uploaded their documents in the Document Income flow. Once this webhook has fired, `/credit/payroll_income/risk_signals/get` may then be called to determine whether the documents were successfully processed and to retrieve risk data.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IncomeVerificationRiskSignalsStatusWebhook { 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_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_RISK_SIGNALS_STATUS = "risk_signals_status"; @SerializedName(SERIALIZED_NAME_RISK_SIGNALS_STATUS) private String riskSignalsStatus; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public IncomeVerificationRiskSignalsStatusWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;\&quot;INCOME\&quot;&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`\"INCOME\"`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public IncomeVerificationRiskSignalsStatusWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;INCOME_VERIFICATION_RISK_SIGNALS&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`INCOME_VERIFICATION_RISK_SIGNALS`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public IncomeVerificationRiskSignalsStatusWebhook itemId(String itemId) { this.itemId = itemId; return this; } /** * The Item ID associated with the verification. * @return itemId **/ @ApiModelProperty(required = true, value = "The Item ID associated with the verification.") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public IncomeVerificationRiskSignalsStatusWebhook userId(String userId) { this.userId = userId; return this; } /** * The Plaid &#x60;user_id&#x60; of the User associated with this webhook, warning, or error. * @return userId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The Plaid `user_id` of the User associated with this webhook, warning, or error.") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public IncomeVerificationRiskSignalsStatusWebhook riskSignalsStatus(String riskSignalsStatus) { this.riskSignalsStatus = riskSignalsStatus; return this; } /** * &#x60;RISK_SIGNALS_PROCESSING_COMPLETE&#x60;: The income verification fraud detection processing has completed. If the user uploaded multiple documents, this webhook will fire when all documents have finished processing. Call the &#x60;/credit/payroll_income/risk_signals/get&#x60; endpoint to get all risk signal data. * @return riskSignalsStatus **/ @javax.annotation.Nullable @ApiModelProperty(value = "`RISK_SIGNALS_PROCESSING_COMPLETE`: The income verification fraud detection processing has completed. If the user uploaded multiple documents, this webhook will fire when all documents have finished processing. Call the `/credit/payroll_income/risk_signals/get` endpoint to get all risk signal data.") public String getRiskSignalsStatus() { return riskSignalsStatus; } public void setRiskSignalsStatus(String riskSignalsStatus) { this.riskSignalsStatus = riskSignalsStatus; } public IncomeVerificationRiskSignalsStatusWebhook 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; } IncomeVerificationRiskSignalsStatusWebhook incomeVerificationRiskSignalsStatusWebhook = (IncomeVerificationRiskSignalsStatusWebhook) o; return Objects.equals(this.webhookType, incomeVerificationRiskSignalsStatusWebhook.webhookType) && Objects.equals(this.webhookCode, incomeVerificationRiskSignalsStatusWebhook.webhookCode) && Objects.equals(this.itemId, incomeVerificationRiskSignalsStatusWebhook.itemId) && Objects.equals(this.userId, incomeVerificationRiskSignalsStatusWebhook.userId) && Objects.equals(this.riskSignalsStatus, incomeVerificationRiskSignalsStatusWebhook.riskSignalsStatus) && Objects.equals(this.environment, incomeVerificationRiskSignalsStatusWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, itemId, userId, riskSignalsStatus, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IncomeVerificationRiskSignalsStatusWebhook {\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(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" riskSignalsStatus: ").append(toIndentedString(riskSignalsStatus)).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/LinkSessionExitMetadata.java
src/main/java/com/plaid/client/model/LinkSessionExitMetadata.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.LinkSessionExitMetadataInstitution; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Displayed if a user exits Link without successfully linking an Item. */ @ApiModel(description = "Displayed if a user exits Link without successfully linking an Item.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkSessionExitMetadata { public static final String SERIALIZED_NAME_INSTITUTION = "institution"; @SerializedName(SERIALIZED_NAME_INSTITUTION) private LinkSessionExitMetadataInstitution institution; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private String status; public static final String SERIALIZED_NAME_LINK_SESSION_ID = "link_session_id"; @SerializedName(SERIALIZED_NAME_LINK_SESSION_ID) private String linkSessionId; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public LinkSessionExitMetadata institution(LinkSessionExitMetadataInstitution institution) { this.institution = institution; return this; } /** * Get institution * @return institution **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public LinkSessionExitMetadataInstitution getInstitution() { return institution; } public void setInstitution(LinkSessionExitMetadataInstitution institution) { this.institution = institution; } public LinkSessionExitMetadata status(String status) { this.status = status; return this; } /** * The point at which the user exited the Link flow. One of the following values. * @return status **/ @javax.annotation.Nullable @ApiModelProperty(value = "The point at which the user exited the Link flow. One of the following values.") public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public LinkSessionExitMetadata linkSessionId(String linkSessionId) { this.linkSessionId = linkSessionId; return this; } /** * A unique identifier associated with a user&#39;s actions and events through the Link flow. Include this identifier when opening a support ticket for faster turnaround. * @return linkSessionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique identifier associated with a user's actions and events through the Link flow. Include this identifier when opening a support ticket for faster turnaround.") public String getLinkSessionId() { return linkSessionId; } public void setLinkSessionId(String linkSessionId) { this.linkSessionId = linkSessionId; } public LinkSessionExitMetadata requestId(String requestId) { this.requestId = requestId; return this; } /** * The request ID for the last request made by Link. This can be shared with Plaid Support to expedite investigation. * @return requestId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The request ID for the last request made by Link. This can be shared with Plaid Support to expedite investigation.") 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; } LinkSessionExitMetadata linkSessionExitMetadata = (LinkSessionExitMetadata) o; return Objects.equals(this.institution, linkSessionExitMetadata.institution) && Objects.equals(this.status, linkSessionExitMetadata.status) && Objects.equals(this.linkSessionId, linkSessionExitMetadata.linkSessionId) && Objects.equals(this.requestId, linkSessionExitMetadata.requestId); } @Override public int hashCode() { return Objects.hash(institution, status, linkSessionId, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkSessionExitMetadata {\n"); sb.append(" institution: ").append(toIndentedString(institution)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" linkSessionId: ").append(toIndentedString(linkSessionId)).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/FDXNotificationType.java
src/main/java/com/plaid/client/model/FDXNotificationType.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * Type of Notification */ @JsonAdapter(FDXNotificationType.Adapter.class) public enum FDXNotificationType { CONSENT_REVOKED("CONSENT_REVOKED"), CONSENT_UPDATED("CONSENT_UPDATED"), CUSTOM("CUSTOM"), SERVICE("SERVICE"), BALANCE("BALANCE"), PLANNED_OUTAGE("PLANNED_OUTAGE"), TAN_REVOKED("TAN_REVOKED"), // 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; FDXNotificationType(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static FDXNotificationType fromValue(String value) { for (FDXNotificationType b : FDXNotificationType.values()) { if (b.value.equals(value)) { return b; } } return FDXNotificationType.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<FDXNotificationType> { @Override public void write(final JsonWriter jsonWriter, final FDXNotificationType enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public FDXNotificationType read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return FDXNotificationType.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/StudentLoan.java
src/main/java/com/plaid/client/model/StudentLoan.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.PSLFStatus; import com.plaid.client.model.ServicerAddressData; import com.plaid.client.model.StudentLoanStatus; import com.plaid.client.model.StudentRepaymentPlan; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; import java.util.ArrayList; import java.util.List; /** * Contains details about a student loan account */ @ApiModel(description = "Contains details about a student loan account") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class StudentLoan { 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_NUMBER = "account_number"; @SerializedName(SERIALIZED_NAME_ACCOUNT_NUMBER) private String accountNumber; public static final String SERIALIZED_NAME_DISBURSEMENT_DATES = "disbursement_dates"; @SerializedName(SERIALIZED_NAME_DISBURSEMENT_DATES) private List<LocalDate> disbursementDates = new ArrayList<>(); public static final String SERIALIZED_NAME_EXPECTED_PAYOFF_DATE = "expected_payoff_date"; @SerializedName(SERIALIZED_NAME_EXPECTED_PAYOFF_DATE) private LocalDate expectedPayoffDate; public static final String SERIALIZED_NAME_GUARANTOR = "guarantor"; @SerializedName(SERIALIZED_NAME_GUARANTOR) private String guarantor; public static final String SERIALIZED_NAME_INTEREST_RATE_PERCENTAGE = "interest_rate_percentage"; @SerializedName(SERIALIZED_NAME_INTEREST_RATE_PERCENTAGE) private Double interestRatePercentage; public static final String SERIALIZED_NAME_IS_OVERDUE = "is_overdue"; @SerializedName(SERIALIZED_NAME_IS_OVERDUE) private Boolean isOverdue; public static final String SERIALIZED_NAME_LAST_PAYMENT_AMOUNT = "last_payment_amount"; @SerializedName(SERIALIZED_NAME_LAST_PAYMENT_AMOUNT) private Double lastPaymentAmount; public static final String SERIALIZED_NAME_LAST_PAYMENT_DATE = "last_payment_date"; @SerializedName(SERIALIZED_NAME_LAST_PAYMENT_DATE) private LocalDate lastPaymentDate; public static final String SERIALIZED_NAME_LAST_STATEMENT_BALANCE = "last_statement_balance"; @SerializedName(SERIALIZED_NAME_LAST_STATEMENT_BALANCE) private Double lastStatementBalance; public static final String SERIALIZED_NAME_LAST_STATEMENT_ISSUE_DATE = "last_statement_issue_date"; @SerializedName(SERIALIZED_NAME_LAST_STATEMENT_ISSUE_DATE) private LocalDate lastStatementIssueDate; public static final String SERIALIZED_NAME_LOAN_NAME = "loan_name"; @SerializedName(SERIALIZED_NAME_LOAN_NAME) private String loanName; public static final String SERIALIZED_NAME_LOAN_STATUS = "loan_status"; @SerializedName(SERIALIZED_NAME_LOAN_STATUS) private StudentLoanStatus loanStatus; public static final String SERIALIZED_NAME_MINIMUM_PAYMENT_AMOUNT = "minimum_payment_amount"; @SerializedName(SERIALIZED_NAME_MINIMUM_PAYMENT_AMOUNT) private Double minimumPaymentAmount; public static final String SERIALIZED_NAME_NEXT_PAYMENT_DUE_DATE = "next_payment_due_date"; @SerializedName(SERIALIZED_NAME_NEXT_PAYMENT_DUE_DATE) private LocalDate nextPaymentDueDate; public static final String SERIALIZED_NAME_ORIGINATION_DATE = "origination_date"; @SerializedName(SERIALIZED_NAME_ORIGINATION_DATE) private LocalDate originationDate; public static final String SERIALIZED_NAME_ORIGINATION_PRINCIPAL_AMOUNT = "origination_principal_amount"; @SerializedName(SERIALIZED_NAME_ORIGINATION_PRINCIPAL_AMOUNT) private Double originationPrincipalAmount; public static final String SERIALIZED_NAME_OUTSTANDING_INTEREST_AMOUNT = "outstanding_interest_amount"; @SerializedName(SERIALIZED_NAME_OUTSTANDING_INTEREST_AMOUNT) private Double outstandingInterestAmount; public static final String SERIALIZED_NAME_PAYMENT_REFERENCE_NUMBER = "payment_reference_number"; @SerializedName(SERIALIZED_NAME_PAYMENT_REFERENCE_NUMBER) private String paymentReferenceNumber; public static final String SERIALIZED_NAME_PSLF_STATUS = "pslf_status"; @SerializedName(SERIALIZED_NAME_PSLF_STATUS) private PSLFStatus pslfStatus; public static final String SERIALIZED_NAME_REPAYMENT_PLAN = "repayment_plan"; @SerializedName(SERIALIZED_NAME_REPAYMENT_PLAN) private StudentRepaymentPlan repaymentPlan; public static final String SERIALIZED_NAME_SEQUENCE_NUMBER = "sequence_number"; @SerializedName(SERIALIZED_NAME_SEQUENCE_NUMBER) private String sequenceNumber; public static final String SERIALIZED_NAME_SERVICER_ADDRESS = "servicer_address"; @SerializedName(SERIALIZED_NAME_SERVICER_ADDRESS) private ServicerAddressData servicerAddress; public static final String SERIALIZED_NAME_YTD_INTEREST_PAID = "ytd_interest_paid"; @SerializedName(SERIALIZED_NAME_YTD_INTEREST_PAID) private Double ytdInterestPaid; public static final String SERIALIZED_NAME_YTD_PRINCIPAL_PAID = "ytd_principal_paid"; @SerializedName(SERIALIZED_NAME_YTD_PRINCIPAL_PAID) private Double ytdPrincipalPaid; public StudentLoan accountId(String accountId) { this.accountId = accountId; return this; } /** * The ID of the account that this liability belongs to. Each account can only contain one liability. * @return accountId **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The ID of the account that this liability belongs to. Each account can only contain one liability.") public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public StudentLoan accountNumber(String accountNumber) { this.accountNumber = accountNumber; return this; } /** * The account number of the loan. For some institutions, this may be a masked version of the number (e.g., the last 4 digits instead of the entire number). * @return accountNumber **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The account number of the loan. For some institutions, this may be a masked version of the number (e.g., the last 4 digits instead of the entire number).") public String getAccountNumber() { return accountNumber; } public void setAccountNumber(String accountNumber) { this.accountNumber = accountNumber; } public StudentLoan disbursementDates(List<LocalDate> disbursementDates) { this.disbursementDates = disbursementDates; return this; } public StudentLoan addDisbursementDatesItem(LocalDate disbursementDatesItem) { this.disbursementDates.add(disbursementDatesItem); return this; } /** * The dates on which loaned funds were disbursed or will be disbursed. These are often in the past. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). * @return disbursementDates **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The dates on which loaned funds were disbursed or will be disbursed. These are often in the past. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD).") public List<LocalDate> getDisbursementDates() { return disbursementDates; } public void setDisbursementDates(List<LocalDate> disbursementDates) { this.disbursementDates = disbursementDates; } public StudentLoan expectedPayoffDate(LocalDate expectedPayoffDate) { this.expectedPayoffDate = expectedPayoffDate; return this; } /** * The date when the student loan is expected to be paid off. Availability for this field is limited. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). * @return expectedPayoffDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The date when the student loan is expected to be paid off. Availability for this field is limited. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD).") public LocalDate getExpectedPayoffDate() { return expectedPayoffDate; } public void setExpectedPayoffDate(LocalDate expectedPayoffDate) { this.expectedPayoffDate = expectedPayoffDate; } public StudentLoan guarantor(String guarantor) { this.guarantor = guarantor; return this; } /** * The guarantor of the student loan. * @return guarantor **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The guarantor of the student loan.") public String getGuarantor() { return guarantor; } public void setGuarantor(String guarantor) { this.guarantor = guarantor; } public StudentLoan interestRatePercentage(Double interestRatePercentage) { this.interestRatePercentage = interestRatePercentage; return this; } /** * The interest rate on the loan as a percentage. * @return interestRatePercentage **/ @ApiModelProperty(required = true, value = "The interest rate on the loan as a percentage.") public Double getInterestRatePercentage() { return interestRatePercentage; } public void setInterestRatePercentage(Double interestRatePercentage) { this.interestRatePercentage = interestRatePercentage; } public StudentLoan isOverdue(Boolean isOverdue) { this.isOverdue = isOverdue; return this; } /** * &#x60;true&#x60; if a payment is currently overdue. Availability for this field is limited. * @return isOverdue **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "`true` if a payment is currently overdue. Availability for this field is limited.") public Boolean getIsOverdue() { return isOverdue; } public void setIsOverdue(Boolean isOverdue) { this.isOverdue = isOverdue; } public StudentLoan lastPaymentAmount(Double lastPaymentAmount) { this.lastPaymentAmount = lastPaymentAmount; return this; } /** * The amount of the last payment. * @return lastPaymentAmount **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The amount of the last payment.") public Double getLastPaymentAmount() { return lastPaymentAmount; } public void setLastPaymentAmount(Double lastPaymentAmount) { this.lastPaymentAmount = lastPaymentAmount; } public StudentLoan lastPaymentDate(LocalDate lastPaymentDate) { this.lastPaymentDate = lastPaymentDate; return this; } /** * The date of the last payment. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). * @return lastPaymentDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The date of the last payment. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD).") public LocalDate getLastPaymentDate() { return lastPaymentDate; } public void setLastPaymentDate(LocalDate lastPaymentDate) { this.lastPaymentDate = lastPaymentDate; } public StudentLoan lastStatementBalance(Double lastStatementBalance) { this.lastStatementBalance = lastStatementBalance; return this; } /** * The total amount owed as of the last statement issued * @return lastStatementBalance **/ @javax.annotation.Nullable @ApiModelProperty(value = "The total amount owed as of the last statement issued") public Double getLastStatementBalance() { return lastStatementBalance; } public void setLastStatementBalance(Double lastStatementBalance) { this.lastStatementBalance = lastStatementBalance; } public StudentLoan lastStatementIssueDate(LocalDate lastStatementIssueDate) { this.lastStatementIssueDate = lastStatementIssueDate; return this; } /** * The date of the last statement. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). * @return lastStatementIssueDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The date of the last statement. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD).") public LocalDate getLastStatementIssueDate() { return lastStatementIssueDate; } public void setLastStatementIssueDate(LocalDate lastStatementIssueDate) { this.lastStatementIssueDate = lastStatementIssueDate; } public StudentLoan loanName(String loanName) { this.loanName = loanName; return this; } /** * The type of loan, e.g., \&quot;Consolidation Loans\&quot;. * @return loanName **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The type of loan, e.g., \"Consolidation Loans\".") public String getLoanName() { return loanName; } public void setLoanName(String loanName) { this.loanName = loanName; } public StudentLoan loanStatus(StudentLoanStatus loanStatus) { this.loanStatus = loanStatus; return this; } /** * Get loanStatus * @return loanStatus **/ @ApiModelProperty(required = true, value = "") public StudentLoanStatus getLoanStatus() { return loanStatus; } public void setLoanStatus(StudentLoanStatus loanStatus) { this.loanStatus = loanStatus; } public StudentLoan minimumPaymentAmount(Double minimumPaymentAmount) { this.minimumPaymentAmount = minimumPaymentAmount; return this; } /** * The minimum payment due for the next billing cycle. There are some exceptions: Some institutions require a minimum payment across all loans associated with an account number. Our API presents that same minimum payment amount on each loan. The institutions that do this are: Great Lakes ( &#x60;ins_116861&#x60;), Firstmark (&#x60;ins_116295&#x60;), Commonbond Firstmark Services (&#x60;ins_116950&#x60;), Granite State (&#x60;ins_116308&#x60;), and Oklahoma Student Loan Authority (&#x60;ins_116945&#x60;). Firstmark (&#x60;ins_116295&#x60; ) and Navient (&#x60;ins_116248&#x60;) will display as $0 if there is an autopay program in effect. * @return minimumPaymentAmount **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The minimum payment due for the next billing cycle. There are some exceptions: Some institutions require a minimum payment across all loans associated with an account number. Our API presents that same minimum payment amount on each loan. The institutions that do this are: Great Lakes ( `ins_116861`), Firstmark (`ins_116295`), Commonbond Firstmark Services (`ins_116950`), Granite State (`ins_116308`), and Oklahoma Student Loan Authority (`ins_116945`). Firstmark (`ins_116295` ) and Navient (`ins_116248`) will display as $0 if there is an autopay program in effect.") public Double getMinimumPaymentAmount() { return minimumPaymentAmount; } public void setMinimumPaymentAmount(Double minimumPaymentAmount) { this.minimumPaymentAmount = minimumPaymentAmount; } public StudentLoan nextPaymentDueDate(LocalDate nextPaymentDueDate) { this.nextPaymentDueDate = nextPaymentDueDate; return this; } /** * The due date for the next payment. The due date is &#x60;null&#x60; if a payment is not expected. A payment is not expected if &#x60;loan_status.type&#x60; is &#x60;deferment&#x60;, &#x60;in_school&#x60;, &#x60;consolidated&#x60;, &#x60;paid in full&#x60;, or &#x60;transferred&#x60;. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). * @return nextPaymentDueDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The due date for the next payment. The due date is `null` if a payment is not expected. A payment is not expected if `loan_status.type` is `deferment`, `in_school`, `consolidated`, `paid in full`, or `transferred`. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD).") public LocalDate getNextPaymentDueDate() { return nextPaymentDueDate; } public void setNextPaymentDueDate(LocalDate nextPaymentDueDate) { this.nextPaymentDueDate = nextPaymentDueDate; } public StudentLoan originationDate(LocalDate originationDate) { this.originationDate = originationDate; return this; } /** * The date on which the loan was initially lent. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). * @return originationDate **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The date on which the loan was initially lent. Dates are returned in an [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DD). ") public LocalDate getOriginationDate() { return originationDate; } public void setOriginationDate(LocalDate originationDate) { this.originationDate = originationDate; } public StudentLoan originationPrincipalAmount(Double originationPrincipalAmount) { this.originationPrincipalAmount = originationPrincipalAmount; return this; } /** * The original principal balance of the loan. * @return originationPrincipalAmount **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The original principal balance of the loan.") public Double getOriginationPrincipalAmount() { return originationPrincipalAmount; } public void setOriginationPrincipalAmount(Double originationPrincipalAmount) { this.originationPrincipalAmount = originationPrincipalAmount; } public StudentLoan outstandingInterestAmount(Double outstandingInterestAmount) { this.outstandingInterestAmount = outstandingInterestAmount; return this; } /** * The total dollar amount of the accrued interest balance. For Sallie Mae ( &#x60;ins_116944&#x60;), this amount is included in the current balance of the loan, so this field will return as &#x60;null&#x60;. * @return outstandingInterestAmount **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The total dollar amount of the accrued interest balance. For Sallie Mae ( `ins_116944`), this amount is included in the current balance of the loan, so this field will return as `null`.") public Double getOutstandingInterestAmount() { return outstandingInterestAmount; } public void setOutstandingInterestAmount(Double outstandingInterestAmount) { this.outstandingInterestAmount = outstandingInterestAmount; } public StudentLoan paymentReferenceNumber(String paymentReferenceNumber) { this.paymentReferenceNumber = paymentReferenceNumber; return this; } /** * The relevant account number that should be used to reference this loan for payments. In the majority of cases, &#x60;payment_reference_number&#x60; will match &#x60;account_number,&#x60; but in some institutions, such as Great Lakes (&#x60;ins_116861&#x60;), it will be different. * @return paymentReferenceNumber **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The relevant account number that should be used to reference this loan for payments. In the majority of cases, `payment_reference_number` will match `account_number,` but in some institutions, such as Great Lakes (`ins_116861`), it will be different.") public String getPaymentReferenceNumber() { return paymentReferenceNumber; } public void setPaymentReferenceNumber(String paymentReferenceNumber) { this.paymentReferenceNumber = paymentReferenceNumber; } public StudentLoan pslfStatus(PSLFStatus pslfStatus) { this.pslfStatus = pslfStatus; return this; } /** * Get pslfStatus * @return pslfStatus **/ @ApiModelProperty(required = true, value = "") public PSLFStatus getPslfStatus() { return pslfStatus; } public void setPslfStatus(PSLFStatus pslfStatus) { this.pslfStatus = pslfStatus; } public StudentLoan repaymentPlan(StudentRepaymentPlan repaymentPlan) { this.repaymentPlan = repaymentPlan; return this; } /** * Get repaymentPlan * @return repaymentPlan **/ @ApiModelProperty(required = true, value = "") public StudentRepaymentPlan getRepaymentPlan() { return repaymentPlan; } public void setRepaymentPlan(StudentRepaymentPlan repaymentPlan) { this.repaymentPlan = repaymentPlan; } public StudentLoan sequenceNumber(String sequenceNumber) { this.sequenceNumber = sequenceNumber; return this; } /** * The sequence number of the student loan. Heartland ECSI (&#x60;ins_116948&#x60;) does not make this field available. * @return sequenceNumber **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The sequence number of the student loan. Heartland ECSI (`ins_116948`) does not make this field available.") public String getSequenceNumber() { return sequenceNumber; } public void setSequenceNumber(String sequenceNumber) { this.sequenceNumber = sequenceNumber; } public StudentLoan servicerAddress(ServicerAddressData servicerAddress) { this.servicerAddress = servicerAddress; return this; } /** * Get servicerAddress * @return servicerAddress **/ @ApiModelProperty(required = true, value = "") public ServicerAddressData getServicerAddress() { return servicerAddress; } public void setServicerAddress(ServicerAddressData servicerAddress) { this.servicerAddress = servicerAddress; } public StudentLoan ytdInterestPaid(Double ytdInterestPaid) { this.ytdInterestPaid = ytdInterestPaid; return this; } /** * The year to date (YTD) interest paid. Availability for this field is limited. * @return ytdInterestPaid **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The year to date (YTD) interest paid. Availability for this field is limited.") public Double getYtdInterestPaid() { return ytdInterestPaid; } public void setYtdInterestPaid(Double ytdInterestPaid) { this.ytdInterestPaid = ytdInterestPaid; } public StudentLoan ytdPrincipalPaid(Double ytdPrincipalPaid) { this.ytdPrincipalPaid = ytdPrincipalPaid; return this; } /** * The year to date (YTD) principal paid. Availability for this field is limited. * @return ytdPrincipalPaid **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "The year to date (YTD) principal paid. Availability for this field is limited.") public Double getYtdPrincipalPaid() { return ytdPrincipalPaid; } public void setYtdPrincipalPaid(Double ytdPrincipalPaid) { this.ytdPrincipalPaid = ytdPrincipalPaid; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } StudentLoan studentLoan = (StudentLoan) o; return Objects.equals(this.accountId, studentLoan.accountId) && Objects.equals(this.accountNumber, studentLoan.accountNumber) && Objects.equals(this.disbursementDates, studentLoan.disbursementDates) && Objects.equals(this.expectedPayoffDate, studentLoan.expectedPayoffDate) && Objects.equals(this.guarantor, studentLoan.guarantor) && Objects.equals(this.interestRatePercentage, studentLoan.interestRatePercentage) && Objects.equals(this.isOverdue, studentLoan.isOverdue) && Objects.equals(this.lastPaymentAmount, studentLoan.lastPaymentAmount) && Objects.equals(this.lastPaymentDate, studentLoan.lastPaymentDate) && Objects.equals(this.lastStatementBalance, studentLoan.lastStatementBalance) && Objects.equals(this.lastStatementIssueDate, studentLoan.lastStatementIssueDate) && Objects.equals(this.loanName, studentLoan.loanName) && Objects.equals(this.loanStatus, studentLoan.loanStatus) && Objects.equals(this.minimumPaymentAmount, studentLoan.minimumPaymentAmount) && Objects.equals(this.nextPaymentDueDate, studentLoan.nextPaymentDueDate) && Objects.equals(this.originationDate, studentLoan.originationDate) && Objects.equals(this.originationPrincipalAmount, studentLoan.originationPrincipalAmount) && Objects.equals(this.outstandingInterestAmount, studentLoan.outstandingInterestAmount) && Objects.equals(this.paymentReferenceNumber, studentLoan.paymentReferenceNumber) && Objects.equals(this.pslfStatus, studentLoan.pslfStatus) && Objects.equals(this.repaymentPlan, studentLoan.repaymentPlan) && Objects.equals(this.sequenceNumber, studentLoan.sequenceNumber) && Objects.equals(this.servicerAddress, studentLoan.servicerAddress) && Objects.equals(this.ytdInterestPaid, studentLoan.ytdInterestPaid) && Objects.equals(this.ytdPrincipalPaid, studentLoan.ytdPrincipalPaid); } @Override public int hashCode() { return Objects.hash(accountId, accountNumber, disbursementDates, expectedPayoffDate, guarantor, interestRatePercentage, isOverdue, lastPaymentAmount, lastPaymentDate, lastStatementBalance, lastStatementIssueDate, loanName, loanStatus, minimumPaymentAmount, nextPaymentDueDate, originationDate, originationPrincipalAmount, outstandingInterestAmount, paymentReferenceNumber, pslfStatus, repaymentPlan, sequenceNumber, servicerAddress, ytdInterestPaid, ytdPrincipalPaid); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class StudentLoan {\n"); sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); sb.append(" accountNumber: ").append(toIndentedString(accountNumber)).append("\n"); sb.append(" disbursementDates: ").append(toIndentedString(disbursementDates)).append("\n"); sb.append(" expectedPayoffDate: ").append(toIndentedString(expectedPayoffDate)).append("\n"); sb.append(" guarantor: ").append(toIndentedString(guarantor)).append("\n"); sb.append(" interestRatePercentage: ").append(toIndentedString(interestRatePercentage)).append("\n"); sb.append(" isOverdue: ").append(toIndentedString(isOverdue)).append("\n"); sb.append(" lastPaymentAmount: ").append(toIndentedString(lastPaymentAmount)).append("\n"); sb.append(" lastPaymentDate: ").append(toIndentedString(lastPaymentDate)).append("\n"); sb.append(" lastStatementBalance: ").append(toIndentedString(lastStatementBalance)).append("\n"); sb.append(" lastStatementIssueDate: ").append(toIndentedString(lastStatementIssueDate)).append("\n"); sb.append(" loanName: ").append(toIndentedString(loanName)).append("\n"); sb.append(" loanStatus: ").append(toIndentedString(loanStatus)).append("\n"); sb.append(" minimumPaymentAmount: ").append(toIndentedString(minimumPaymentAmount)).append("\n"); sb.append(" nextPaymentDueDate: ").append(toIndentedString(nextPaymentDueDate)).append("\n"); sb.append(" originationDate: ").append(toIndentedString(originationDate)).append("\n"); sb.append(" originationPrincipalAmount: ").append(toIndentedString(originationPrincipalAmount)).append("\n"); sb.append(" outstandingInterestAmount: ").append(toIndentedString(outstandingInterestAmount)).append("\n"); sb.append(" paymentReferenceNumber: ").append(toIndentedString(paymentReferenceNumber)).append("\n"); sb.append(" pslfStatus: ").append(toIndentedString(pslfStatus)).append("\n"); sb.append(" repaymentPlan: ").append(toIndentedString(repaymentPlan)).append("\n"); sb.append(" sequenceNumber: ").append(toIndentedString(sequenceNumber)).append("\n"); sb.append(" servicerAddress: ").append(toIndentedString(servicerAddress)).append("\n"); sb.append(" ytdInterestPaid: ").append(toIndentedString(ytdInterestPaid)).append("\n"); sb.append(" ytdPrincipalPaid: ").append(toIndentedString(ytdPrincipalPaid)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditPayrollIncomeRiskSignalsGetRequest.java
src/main/java/com/plaid/client/model/CreditPayrollIncomeRiskSignalsGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * CreditPayrollIncomeRiskSignalsGetRequest defines the request schema for &#x60;/credit/payroll_income/risk_signals/get&#x60; */ @ApiModel(description = "CreditPayrollIncomeRiskSignalsGetRequest defines the request schema for `/credit/payroll_income/risk_signals/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditPayrollIncomeRiskSignalsGetRequest { 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 CreditPayrollIncomeRiskSignalsGetRequest 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 CreditPayrollIncomeRiskSignalsGetRequest 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 CreditPayrollIncomeRiskSignalsGetRequest userToken(String userToken) { this.userToken = userToken; return this; } /** * The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the &#x60;user_token&#x60; field. All other customers should use the &#x60;user_id&#x60; instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis). * @return userToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the `user_token` field. All other customers should use the `user_id` instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis).") public String getUserToken() { return userToken; } public void setUserToken(String userToken) { this.userToken = userToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditPayrollIncomeRiskSignalsGetRequest creditPayrollIncomeRiskSignalsGetRequest = (CreditPayrollIncomeRiskSignalsGetRequest) o; return Objects.equals(this.clientId, creditPayrollIncomeRiskSignalsGetRequest.clientId) && Objects.equals(this.secret, creditPayrollIncomeRiskSignalsGetRequest.secret) && Objects.equals(this.userToken, creditPayrollIncomeRiskSignalsGetRequest.userToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, userToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditPayrollIncomeRiskSignalsGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" userToken: ").append(toIndentedString(userToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraUserCheckReportReadyWebhook.java
src/main/java/com/plaid/client/model/CraUserCheckReportReadyWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.Products; 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 the Check Report are ready to be retrieved. Once this webhook has fired, the report will be available to retrieve for 24 hours. */ @ApiModel(description = "Fired when the Check Report are ready to be retrieved. Once this webhook has fired, the report will be available to retrieve for 24 hours.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraUserCheckReportReadyWebhook { public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type"; @SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE) private String webhookType; public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code"; @SerializedName(SERIALIZED_NAME_WEBHOOK_CODE) private String webhookCode; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_SUCCESSFUL_PRODUCTS = "successful_products"; @SerializedName(SERIALIZED_NAME_SUCCESSFUL_PRODUCTS) private List<Products> successfulProducts = null; public static final String SERIALIZED_NAME_FAILED_PRODUCTS = "failed_products"; @SerializedName(SERIALIZED_NAME_FAILED_PRODUCTS) private List<Products> failedProducts = null; public static final String SERIALIZED_NAME_ITEM_IDS = "item_ids"; @SerializedName(SERIALIZED_NAME_ITEM_IDS) private List<String> itemIds = null; public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public CraUserCheckReportReadyWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;CHECK_REPORT&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`CHECK_REPORT`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public CraUserCheckReportReadyWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;USER_CHECK_REPORT_READY&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`USER_CHECK_REPORT_READY`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public CraUserCheckReportReadyWebhook userId(String userId) { this.userId = userId; return this; } /** * The &#x60;user_id&#x60; associated with the user whose data is being requested. This is received by calling &#x60;user/create&#x60;. * @return userId **/ @ApiModelProperty(required = true, value = "The `user_id` associated with the user whose data is being requested. This is received by calling `user/create`.") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public CraUserCheckReportReadyWebhook successfulProducts(List<Products> successfulProducts) { this.successfulProducts = successfulProducts; return this; } public CraUserCheckReportReadyWebhook addSuccessfulProductsItem(Products successfulProductsItem) { if (this.successfulProducts == null) { this.successfulProducts = new ArrayList<>(); } this.successfulProducts.add(successfulProductsItem); return this; } /** * Specifies a list of products that have successfully been generated for the report. * @return successfulProducts **/ @javax.annotation.Nullable @ApiModelProperty(value = "Specifies a list of products that have successfully been generated for the report.") public List<Products> getSuccessfulProducts() { return successfulProducts; } public void setSuccessfulProducts(List<Products> successfulProducts) { this.successfulProducts = successfulProducts; } public CraUserCheckReportReadyWebhook failedProducts(List<Products> failedProducts) { this.failedProducts = failedProducts; return this; } public CraUserCheckReportReadyWebhook addFailedProductsItem(Products failedProductsItem) { if (this.failedProducts == null) { this.failedProducts = new ArrayList<>(); } this.failedProducts.add(failedProductsItem); return this; } /** * Specifies a list of products that have failed to generate for the report. Additional detail on what caused the failure can be found by calling the product /get endpoint. * @return failedProducts **/ @javax.annotation.Nullable @ApiModelProperty(value = "Specifies a list of products that have failed to generate for the report. Additional detail on what caused the failure can be found by calling the product /get endpoint.") public List<Products> getFailedProducts() { return failedProducts; } public void setFailedProducts(List<Products> failedProducts) { this.failedProducts = failedProducts; } public CraUserCheckReportReadyWebhook itemIds(List<String> itemIds) { this.itemIds = itemIds; return this; } public CraUserCheckReportReadyWebhook addItemIdsItem(String itemIdsItem) { if (this.itemIds == null) { this.itemIds = new ArrayList<>(); } this.itemIds.add(itemIdsItem); return this; } /** * A list of &#x60;item_ids&#x60; that is included in the Check Report. * @return itemIds **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of `item_ids` that is included in the Check Report.") public List<String> getItemIds() { return itemIds; } public void setItemIds(List<String> itemIds) { this.itemIds = itemIds; } public CraUserCheckReportReadyWebhook 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; } CraUserCheckReportReadyWebhook craUserCheckReportReadyWebhook = (CraUserCheckReportReadyWebhook) o; return Objects.equals(this.webhookType, craUserCheckReportReadyWebhook.webhookType) && Objects.equals(this.webhookCode, craUserCheckReportReadyWebhook.webhookCode) && Objects.equals(this.userId, craUserCheckReportReadyWebhook.userId) && Objects.equals(this.successfulProducts, craUserCheckReportReadyWebhook.successfulProducts) && Objects.equals(this.failedProducts, craUserCheckReportReadyWebhook.failedProducts) && Objects.equals(this.itemIds, craUserCheckReportReadyWebhook.itemIds) && Objects.equals(this.environment, craUserCheckReportReadyWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, userId, successfulProducts, failedProducts, itemIds, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraUserCheckReportReadyWebhook {\n"); sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n"); sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" successfulProducts: ").append(toIndentedString(successfulProducts)).append("\n"); sb.append(" failedProducts: ").append(toIndentedString(failedProducts)).append("\n"); sb.append(" itemIds: ").append(toIndentedString(itemIds)).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/WalletPaymentScheme.java
src/main/java/com/plaid/client/model/WalletPaymentScheme.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 payment scheme used to execute this transaction. This is present only for transaction types &#x60;PAYOUT&#x60; and &#x60;REFUND&#x60;. &#x60;FASTER_PAYMENTS&#x60;: The standard payment scheme within the UK. &#x60;SEPA_CREDIT_TRANSFER&#x60;: The standard payment to a beneficiary within the SEPA area. &#x60;SEPA_CREDIT_TRANSFER_INSTANT&#x60;: Instant payment to a beneficiary within the SEPA area. */ @JsonAdapter(WalletPaymentScheme.Adapter.class) public enum WalletPaymentScheme { NULL("null"), FASTER_PAYMENTS("FASTER_PAYMENTS"), SEPA_CREDIT_TRANSFER("SEPA_CREDIT_TRANSFER"), SEPA_CREDIT_TRANSFER_INSTANT("SEPA_CREDIT_TRANSFER_INSTANT"), // 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; WalletPaymentScheme(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static WalletPaymentScheme fromValue(String value) { for (WalletPaymentScheme b : WalletPaymentScheme.values()) { if (b.value.equals(value)) { return b; } } return null; } public static class Adapter extends TypeAdapter<WalletPaymentScheme> { @Override public void write(final JsonWriter jsonWriter, final WalletPaymentScheme enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public WalletPaymentScheme read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return WalletPaymentScheme.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/PartnerEndCustomerFlowdownStatus.java
src/main/java/com/plaid/client/model/PartnerEndCustomerFlowdownStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 addendum to the Plaid MSA (\&quot;flowdown\&quot;) for the end customer. */ @JsonAdapter(PartnerEndCustomerFlowdownStatus.Adapter.class) public enum PartnerEndCustomerFlowdownStatus { NOT_STARTED("NOT_STARTED"), IN_REVIEW("IN_REVIEW"), NEGOTIATION("NEGOTIATION"), COMPLETE("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; PartnerEndCustomerFlowdownStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static PartnerEndCustomerFlowdownStatus fromValue(String value) { for (PartnerEndCustomerFlowdownStatus b : PartnerEndCustomerFlowdownStatus.values()) { if (b.value.equals(value)) { return b; } } return PartnerEndCustomerFlowdownStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<PartnerEndCustomerFlowdownStatus> { @Override public void write(final JsonWriter jsonWriter, final PartnerEndCustomerFlowdownStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public PartnerEndCustomerFlowdownStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return PartnerEndCustomerFlowdownStatus.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/CraCheckReportBaseReportGetRequest.java
src/main/java/com/plaid/client/model/CraCheckReportBaseReportGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * BaseReportGetRequest defines the request schema for &#x60;/cra/check_report/base_report/get&#x60; */ @ApiModel(description = "BaseReportGetRequest defines the request schema for `/cra/check_report/base_report/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCheckReportBaseReportGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN = "third_party_user_token"; @SerializedName(SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN) private String thirdPartyUserToken; public static final String SERIALIZED_NAME_ITEM_IDS = "item_ids"; @SerializedName(SERIALIZED_NAME_ITEM_IDS) private List<String> itemIds = null; public static final String SERIALIZED_NAME_USER_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) private String userToken; public CraCheckReportBaseReportGetRequest 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 CraCheckReportBaseReportGetRequest 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 CraCheckReportBaseReportGetRequest userId(String userId) { this.userId = userId; return this; } /** * A unique user identifier, created by &#x60;/user/create&#x60;. Integrations that began using &#x60;/user/create&#x60; after December 10, 2025 use this field to identify a user instead of the &#x60;user_token&#x60;. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis). * @return userId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique user identifier, created by `/user/create`. Integrations that began using `/user/create` after December 10, 2025 use this field to identify a user instead of the `user_token`. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis).") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public CraCheckReportBaseReportGetRequest thirdPartyUserToken(String thirdPartyUserToken) { this.thirdPartyUserToken = thirdPartyUserToken; return this; } /** * The third-party user token associated with the requested User data. * @return thirdPartyUserToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "The third-party user token associated with the requested User data.") public String getThirdPartyUserToken() { return thirdPartyUserToken; } public void setThirdPartyUserToken(String thirdPartyUserToken) { this.thirdPartyUserToken = thirdPartyUserToken; } public CraCheckReportBaseReportGetRequest itemIds(List<String> itemIds) { this.itemIds = itemIds; return this; } public CraCheckReportBaseReportGetRequest addItemIdsItem(String itemIdsItem) { if (this.itemIds == null) { this.itemIds = new ArrayList<>(); } this.itemIds.add(itemIdsItem); return this; } /** * The item IDs to include in the Base Report. If not provided, all items associated with the user will be included. * @return itemIds **/ @javax.annotation.Nullable @ApiModelProperty(value = "The item IDs to include in the Base Report. If not provided, all items associated with the user will be included.") public List<String> getItemIds() { return itemIds; } public void setItemIds(List<String> itemIds) { this.itemIds = itemIds; } public CraCheckReportBaseReportGetRequest userToken(String userToken) { this.userToken = userToken; return this; } /** * The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the &#x60;user_token&#x60; field. All other customers should use the &#x60;user_id&#x60; instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis). * @return userToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "The user token associated with the User data is being requested for. This field is used only by customers with pre-existing integrations that already use the `user_token` field. All other customers should use the `user_id` instead. For more details, see [New User APIs](https://plaid.com/docs/api/users/user-apis).") public String getUserToken() { return userToken; } public void setUserToken(String userToken) { this.userToken = userToken; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraCheckReportBaseReportGetRequest craCheckReportBaseReportGetRequest = (CraCheckReportBaseReportGetRequest) o; return Objects.equals(this.clientId, craCheckReportBaseReportGetRequest.clientId) && Objects.equals(this.secret, craCheckReportBaseReportGetRequest.secret) && Objects.equals(this.userId, craCheckReportBaseReportGetRequest.userId) && Objects.equals(this.thirdPartyUserToken, craCheckReportBaseReportGetRequest.thirdPartyUserToken) && Objects.equals(this.itemIds, craCheckReportBaseReportGetRequest.itemIds) && Objects.equals(this.userToken, craCheckReportBaseReportGetRequest.userToken); } @Override public int hashCode() { return Objects.hash(clientId, secret, userId, thirdPartyUserToken, itemIds, userToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportBaseReportGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" thirdPartyUserToken: ").append(toIndentedString(thirdPartyUserToken)).append("\n"); sb.append(" itemIds: ").append(toIndentedString(itemIds)).append("\n"); sb.append(" userToken: ").append(toIndentedString(userToken)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WebhookVerificationKeyGetRequest.java
src/main/java/com/plaid/client/model/WebhookVerificationKeyGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * WebhookVerificationKeyGetRequest defines the request schema for &#x60;/webhook_verification_key/get&#x60; */ @ApiModel(description = "WebhookVerificationKeyGetRequest defines the request schema for `/webhook_verification_key/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WebhookVerificationKeyGetRequest { 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_KEY_ID = "key_id"; @SerializedName(SERIALIZED_NAME_KEY_ID) private String keyId; public WebhookVerificationKeyGetRequest 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 WebhookVerificationKeyGetRequest 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 WebhookVerificationKeyGetRequest keyId(String keyId) { this.keyId = keyId; return this; } /** * The key ID ( &#x60;kid&#x60; ) from the JWT header. * @return keyId **/ @ApiModelProperty(required = true, value = "The key ID ( `kid` ) from the JWT header.") public String getKeyId() { return keyId; } public void setKeyId(String keyId) { this.keyId = keyId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } WebhookVerificationKeyGetRequest webhookVerificationKeyGetRequest = (WebhookVerificationKeyGetRequest) o; return Objects.equals(this.clientId, webhookVerificationKeyGetRequest.clientId) && Objects.equals(this.secret, webhookVerificationKeyGetRequest.secret) && Objects.equals(this.keyId, webhookVerificationKeyGetRequest.keyId); } @Override public int hashCode() { return Objects.hash(clientId, secret, keyId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WebhookVerificationKeyGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" keyId: ").append(toIndentedString(keyId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TaxpayerID.java
src/main/java/com/plaid/client/model/TaxpayerID.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Taxpayer ID of the individual receiving the paystub. */ @ApiModel(description = "Taxpayer ID of the individual receiving the paystub.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TaxpayerID { public static final String SERIALIZED_NAME_ID_TYPE = "id_type"; @SerializedName(SERIALIZED_NAME_ID_TYPE) private String idType; public static final String SERIALIZED_NAME_ID_MASK = "id_mask"; @SerializedName(SERIALIZED_NAME_ID_MASK) private String idMask; public static final String SERIALIZED_NAME_LAST4_DIGITS = "last_4_digits"; @SerializedName(SERIALIZED_NAME_LAST4_DIGITS) private String last4Digits; public TaxpayerID idType(String idType) { this.idType = idType; return this; } /** * Type of ID, e.g. &#39;SSN&#39; * @return idType **/ @javax.annotation.Nullable @ApiModelProperty(value = "Type of ID, e.g. 'SSN'") public String getIdType() { return idType; } public void setIdType(String idType) { this.idType = idType; } public TaxpayerID idMask(String idMask) { this.idMask = idMask; return this; } /** * ID mask; i.e. last 4 digits of the taxpayer ID * @return idMask **/ @javax.annotation.Nullable @ApiModelProperty(value = "ID mask; i.e. last 4 digits of the taxpayer ID") public String getIdMask() { return idMask; } public void setIdMask(String idMask) { this.idMask = idMask; } public TaxpayerID last4Digits(String last4Digits) { this.last4Digits = last4Digits; return this; } /** * Last 4 digits of unique number of ID. * @return last4Digits **/ @javax.annotation.Nullable @ApiModelProperty(value = "Last 4 digits of unique number of ID.") public String getLast4Digits() { return last4Digits; } public void setLast4Digits(String last4Digits) { this.last4Digits = last4Digits; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TaxpayerID taxpayerID = (TaxpayerID) o; return Objects.equals(this.idType, taxpayerID.idType) && Objects.equals(this.idMask, taxpayerID.idMask) && Objects.equals(this.last4Digits, taxpayerID.last4Digits); } @Override public int hashCode() { return Objects.hash(idType, idMask, last4Digits); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TaxpayerID {\n"); sb.append(" idType: ").append(toIndentedString(idType)).append("\n"); sb.append(" idMask: ").append(toIndentedString(idMask)).append("\n"); sb.append(" last4Digits: ").append(toIndentedString(last4Digits)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IdentityVerificationRequestUser.java
src/main/java/com/plaid/client/model/IdentityVerificationRequestUser.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.IdentityVerificationRequestUserName; import com.plaid.client.model.UserAddress; import com.plaid.client.model.UserIDNumber; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.LocalDate; /** * User information collected outside of Link, most likely via your own onboarding process. Each of the following identity fields are optional: &#x60;email_address&#x60; &#x60;phone_number&#x60; &#x60;date_of_birth&#x60; &#x60;name&#x60; &#x60;address&#x60; &#x60;id_number&#x60; Specifically, these fields are optional in that they can either be fully provided (satisfying every required field in their subschema) or omitted from the request entirely by not providing the key or value. Providing these fields via the API will result in Link skipping the data collection process for the associated user. All verification steps enabled in the associated Identity Verification Template will still be run. Verification steps will either be run immediately, or once the user completes the &#x60;accept_tos&#x60; step, depending on the value provided to the &#x60;gave_consent&#x60; field. */ @ApiModel(description = "User information collected outside of Link, most likely via your own onboarding process. Each of the following identity fields are optional: `email_address` `phone_number` `date_of_birth` `name` `address` `id_number` Specifically, these fields are optional in that they can either be fully provided (satisfying every required field in their subschema) or omitted from the request entirely by not providing the key or value. Providing these fields via the API will result in Link skipping the data collection process for the associated user. All verification steps enabled in the associated Identity Verification Template will still be run. Verification steps will either be run immediately, or once the user completes the `accept_tos` step, depending on the value provided to the `gave_consent` field.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityVerificationRequestUser { public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "email_address"; @SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS) private String emailAddress; public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number"; @SerializedName(SERIALIZED_NAME_PHONE_NUMBER) private String phoneNumber; public static final String SERIALIZED_NAME_DATE_OF_BIRTH = "date_of_birth"; @SerializedName(SERIALIZED_NAME_DATE_OF_BIRTH) private LocalDate dateOfBirth; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private IdentityVerificationRequestUserName name; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private UserAddress address; public static final String SERIALIZED_NAME_ID_NUMBER = "id_number"; @SerializedName(SERIALIZED_NAME_ID_NUMBER) private UserIDNumber idNumber; public IdentityVerificationRequestUser emailAddress(String emailAddress) { this.emailAddress = emailAddress; return this; } /** * A valid email address. Must not have leading or trailing spaces and address must be RFC compliant. For more information, see [RFC 3696](https://datatracker.ietf.org/doc/html/rfc3696). * @return emailAddress **/ @javax.annotation.Nullable @ApiModelProperty(example = "user@example.com", value = "A valid email address. Must not have leading or trailing spaces and address must be RFC compliant. For more information, see [RFC 3696](https://datatracker.ietf.org/doc/html/rfc3696).") public String getEmailAddress() { return emailAddress; } public void setEmailAddress(String emailAddress) { this.emailAddress = emailAddress; } public IdentityVerificationRequestUser phoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; return this; } /** * A valid phone number in E.164 format. * @return phoneNumber **/ @javax.annotation.Nullable @ApiModelProperty(example = "+12345678909", value = "A valid phone number in E.164 format.") public String getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } public IdentityVerificationRequestUser dateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; return this; } /** * A date in the format YYYY-MM-DD (RFC 3339 Section 5.6). * @return dateOfBirth **/ @javax.annotation.Nullable @ApiModelProperty(example = "Tue May 29 00:00:00 UTC 1990", value = "A date in the format YYYY-MM-DD (RFC 3339 Section 5.6).") public LocalDate getDateOfBirth() { return dateOfBirth; } public void setDateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; } public IdentityVerificationRequestUser name(IdentityVerificationRequestUserName name) { this.name = name; return this; } /** * Get name * @return name **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public IdentityVerificationRequestUserName getName() { return name; } public void setName(IdentityVerificationRequestUserName name) { this.name = name; } public IdentityVerificationRequestUser address(UserAddress address) { this.address = address; return this; } /** * Get address * @return address **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public UserAddress getAddress() { return address; } public void setAddress(UserAddress address) { this.address = address; } public IdentityVerificationRequestUser idNumber(UserIDNumber idNumber) { this.idNumber = idNumber; return this; } /** * Get idNumber * @return idNumber **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public UserIDNumber getIdNumber() { return idNumber; } public void setIdNumber(UserIDNumber idNumber) { this.idNumber = idNumber; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IdentityVerificationRequestUser identityVerificationRequestUser = (IdentityVerificationRequestUser) o; return Objects.equals(this.emailAddress, identityVerificationRequestUser.emailAddress) && Objects.equals(this.phoneNumber, identityVerificationRequestUser.phoneNumber) && Objects.equals(this.dateOfBirth, identityVerificationRequestUser.dateOfBirth) && Objects.equals(this.name, identityVerificationRequestUser.name) && Objects.equals(this.address, identityVerificationRequestUser.address) && Objects.equals(this.idNumber, identityVerificationRequestUser.idNumber); } @Override public int hashCode() { return Objects.hash(emailAddress, phoneNumber, dateOfBirth, name, address, idNumber); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityVerificationRequestUser {\n"); sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n"); sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n"); sb.append(" dateOfBirth: ").append(toIndentedString(dateOfBirth)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" idNumber: ").append(toIndentedString(idNumber)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualHitListRequest.java
src/main/java/com/plaid/client/model/WatchlistScreeningIndividualHitListRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 hits for an individual watchlist screening */ @ApiModel(description = "Request input for listing hits 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 WatchlistScreeningIndividualHitListRequest { 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 WatchlistScreeningIndividualHitListRequest 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 WatchlistScreeningIndividualHitListRequest 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 WatchlistScreeningIndividualHitListRequest 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 WatchlistScreeningIndividualHitListRequest 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; } WatchlistScreeningIndividualHitListRequest watchlistScreeningIndividualHitListRequest = (WatchlistScreeningIndividualHitListRequest) o; return Objects.equals(this.secret, watchlistScreeningIndividualHitListRequest.secret) && Objects.equals(this.clientId, watchlistScreeningIndividualHitListRequest.clientId) && Objects.equals(this.watchlistScreeningId, watchlistScreeningIndividualHitListRequest.watchlistScreeningId) && Objects.equals(this.cursor, watchlistScreeningIndividualHitListRequest.cursor); } @Override public int hashCode() { return Objects.hash(secret, clientId, watchlistScreeningId, cursor); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WatchlistScreeningIndividualHitListRequest {\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/BeaconReportSyndicationGetResponse.java
src/main/java/com/plaid/client/model/BeaconReportSyndicationGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.BeaconReportSyndicationAnalysis; import com.plaid.client.model.BeaconReportSyndicationOriginalReport; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * A Beacon Report Syndication represents a Beacon Report created either by your organization or another Beacon customer that matches a specific Beacon User you&#39;ve created. The &#x60;analysis&#x60; field in the response indicates which fields matched between the originally reported Beacon User and the Beacon User that the report was syndicated to. The &#x60;report&#x60; field in the response contains a subset of information from the original report. */ @ApiModel(description = "A Beacon Report Syndication represents a Beacon Report created either by your organization or another Beacon customer that matches a specific Beacon User you've created. The `analysis` field in the response indicates which fields matched between the originally reported Beacon User and the Beacon User that the report was syndicated to. The `report` field in the response contains a subset of information from the original report.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconReportSyndicationGetResponse { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) private String id; 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_REPORT = "report"; @SerializedName(SERIALIZED_NAME_REPORT) private BeaconReportSyndicationOriginalReport report; public static final String SERIALIZED_NAME_ANALYSIS = "analysis"; @SerializedName(SERIALIZED_NAME_ANALYSIS) private BeaconReportSyndicationAnalysis analysis; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public BeaconReportSyndicationGetResponse id(String id) { this.id = id; return this; } /** * ID of the associated Beacon Report Syndication. * @return id **/ @ApiModelProperty(example = "becrsn_11111111111111", required = true, value = "ID of the associated Beacon Report Syndication.") public String getId() { return id; } public void setId(String id) { this.id = id; } public BeaconReportSyndicationGetResponse 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 BeaconReportSyndicationGetResponse report(BeaconReportSyndicationOriginalReport report) { this.report = report; return this; } /** * Get report * @return report **/ @ApiModelProperty(required = true, value = "") public BeaconReportSyndicationOriginalReport getReport() { return report; } public void setReport(BeaconReportSyndicationOriginalReport report) { this.report = report; } public BeaconReportSyndicationGetResponse analysis(BeaconReportSyndicationAnalysis analysis) { this.analysis = analysis; return this; } /** * Get analysis * @return analysis **/ @ApiModelProperty(required = true, value = "") public BeaconReportSyndicationAnalysis getAnalysis() { return analysis; } public void setAnalysis(BeaconReportSyndicationAnalysis analysis) { this.analysis = analysis; } public BeaconReportSyndicationGetResponse 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; } BeaconReportSyndicationGetResponse beaconReportSyndicationGetResponse = (BeaconReportSyndicationGetResponse) o; return Objects.equals(this.id, beaconReportSyndicationGetResponse.id) && Objects.equals(this.beaconUserId, beaconReportSyndicationGetResponse.beaconUserId) && Objects.equals(this.report, beaconReportSyndicationGetResponse.report) && Objects.equals(this.analysis, beaconReportSyndicationGetResponse.analysis) && Objects.equals(this.requestId, beaconReportSyndicationGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(id, beaconUserId, report, analysis, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconReportSyndicationGetResponse {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" beaconUserId: ").append(toIndentedString(beaconUserId)).append("\n"); sb.append(" report: ").append(toIndentedString(report)).append("\n"); sb.append(" analysis: ").append(toIndentedString(analysis)).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/WatchlistScreeningStatus.java
src/main/java/com/plaid/client/model/WatchlistScreeningStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * A status enum indicating whether a screening is still pending review, has been rejected, or has been cleared. */ @JsonAdapter(WatchlistScreeningStatus.Adapter.class) public enum WatchlistScreeningStatus { REJECTED("rejected"), PENDING_REVIEW("pending_review"), CLEARED("cleared"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; WatchlistScreeningStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static WatchlistScreeningStatus fromValue(String value) { for (WatchlistScreeningStatus b : WatchlistScreeningStatus.values()) { if (b.value.equals(value)) { return b; } } return WatchlistScreeningStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<WatchlistScreeningStatus> { @Override public void write(final JsonWriter jsonWriter, final WatchlistScreeningStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public WatchlistScreeningStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return WatchlistScreeningStatus.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/BeaconUserAddress.java
src/main/java/com/plaid/client/model/BeaconUserAddress.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Even if an address has been collected, some fields may be null depending on the region&#39;s addressing system. For example: Addresses from the United Kingdom will not include a region Addresses from Hong Kong will not include a postal code */ @ApiModel(description = "Even if an address has been collected, some fields may be null depending on the region's addressing system. For example: Addresses from the United Kingdom will not include a region Addresses from Hong Kong will not include a postal code") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconUserAddress { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) private String street; public static final String SERIALIZED_NAME_STREET2 = "street2"; @SerializedName(SERIALIZED_NAME_STREET2) private String street2; public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) private String city; public static final String SERIALIZED_NAME_REGION = "region"; @SerializedName(SERIALIZED_NAME_REGION) private String region; public static final String SERIALIZED_NAME_POSTAL_CODE = "postal_code"; @SerializedName(SERIALIZED_NAME_POSTAL_CODE) private String postalCode; public static final String SERIALIZED_NAME_COUNTRY = "country"; @SerializedName(SERIALIZED_NAME_COUNTRY) private String country; public BeaconUserAddress street(String street) { this.street = street; return this; } /** * The primary street portion of an address. If an address is provided, this field will always be filled. A string with at least one non-whitespace alphabetical character, with a max length of 80 characters. * @return street **/ @ApiModelProperty(example = "123 Main St.", required = true, value = "The primary street portion of an address. If an address is provided, this field will always be filled. A string with at least one non-whitespace alphabetical character, with a max length of 80 characters.") public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } public BeaconUserAddress street2(String street2) { this.street2 = street2; return this; } /** * Extra street information, like an apartment or suite number. If provided, a string with at least one non-whitespace character, with a max length of 50 characters. * @return street2 **/ @javax.annotation.Nullable @ApiModelProperty(example = "Unit 42", required = true, value = "Extra street information, like an apartment or suite number. If provided, a string with at least one non-whitespace character, with a max length of 50 characters.") public String getStreet2() { return street2; } public void setStreet2(String street2) { this.street2 = street2; } public BeaconUserAddress city(String city) { this.city = city; return this; } /** * City from the address. A string with at least one non-whitespace alphabetical character, with a max length of 100 characters. * @return city **/ @ApiModelProperty(example = "Pawnee", required = true, value = "City from the address. A string with at least one non-whitespace alphabetical character, with a max length of 100 characters.") public String getCity() { return city; } public void setCity(String city) { this.city = city; } public BeaconUserAddress region(String region) { this.region = region; return this; } /** * A subdivision code. \&quot;Subdivision\&quot; is a generic term for \&quot;state\&quot;, \&quot;province\&quot;, \&quot;prefecture\&quot;, \&quot;zone\&quot;, etc. For the list of valid codes, see [country subdivision codes](https://plaid.com/documents/country_subdivision_codes.json). Country prefixes are omitted, since they are inferred from the &#x60;country&#x60; field. * @return region **/ @javax.annotation.Nullable @ApiModelProperty(example = "IN", required = true, value = "A subdivision code. \"Subdivision\" is a generic term for \"state\", \"province\", \"prefecture\", \"zone\", etc. For the list of valid codes, see [country subdivision codes](https://plaid.com/documents/country_subdivision_codes.json). Country prefixes are omitted, since they are inferred from the `country` field.") public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public BeaconUserAddress postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * The postal code for the associated address. Between 2 and 10 alphanumeric characters. For US-based addresses this must be 5 numeric digits. * @return postalCode **/ @javax.annotation.Nullable @ApiModelProperty(example = "46001", required = true, value = "The postal code for the associated address. Between 2 and 10 alphanumeric characters. For US-based addresses this must be 5 numeric digits.") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public BeaconUserAddress country(String country) { this.country = country; return this; } /** * Valid, capitalized, two-letter ISO code representing the country of this object. Must be in ISO 3166-1 alpha-2 form. * @return country **/ @ApiModelProperty(example = "US", required = true, value = "Valid, capitalized, two-letter ISO code representing the country of this object. Must be in ISO 3166-1 alpha-2 form.") public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BeaconUserAddress beaconUserAddress = (BeaconUserAddress) o; return Objects.equals(this.street, beaconUserAddress.street) && Objects.equals(this.street2, beaconUserAddress.street2) && Objects.equals(this.city, beaconUserAddress.city) && Objects.equals(this.region, beaconUserAddress.region) && Objects.equals(this.postalCode, beaconUserAddress.postalCode) && Objects.equals(this.country, beaconUserAddress.country); } @Override public int hashCode() { return Objects.hash(street, street2, city, region, postalCode, country); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconUserAddress {\n"); sb.append(" street: ").append(toIndentedString(street)).append("\n"); sb.append(" street2: ").append(toIndentedString(street2)).append("\n"); sb.append(" city: ").append(toIndentedString(city)).append("\n"); sb.append(" region: ").append(toIndentedString(region)).append("\n"); sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n"); sb.append(" country: ").append(toIndentedString(country)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CashFlowUpdatesNewIncomeStreamWebhook.java
src/main/java/com/plaid/client/model/CashFlowUpdatesNewIncomeStreamWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.MonitoringInsightsStatus; import com.plaid.client.model.WebhookEnvironmentValues; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * For each user&#39;s item enabled for Cash Flow Updates, this webhook will fire when an update includes a new income stream. Upon receiving the webhook, call &#x60;/cra/monitoring_insights/get&#x60; to retrieve the updated insights. */ @ApiModel(description = "For each user's item enabled for Cash Flow Updates, this webhook will fire when an update includes a new income stream. Upon receiving the webhook, call `/cra/monitoring_insights/get` to retrieve the updated insights.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CashFlowUpdatesNewIncomeStreamWebhook { 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 CashFlowUpdatesNewIncomeStreamWebhook 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 CashFlowUpdatesNewIncomeStreamWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;NEW_INCOME_STREAM_DETECTED&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`NEW_INCOME_STREAM_DETECTED`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public CashFlowUpdatesNewIncomeStreamWebhook 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 CashFlowUpdatesNewIncomeStreamWebhook 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 CashFlowUpdatesNewIncomeStreamWebhook 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; } CashFlowUpdatesNewIncomeStreamWebhook cashFlowUpdatesNewIncomeStreamWebhook = (CashFlowUpdatesNewIncomeStreamWebhook) o; return Objects.equals(this.webhookType, cashFlowUpdatesNewIncomeStreamWebhook.webhookType) && Objects.equals(this.webhookCode, cashFlowUpdatesNewIncomeStreamWebhook.webhookCode) && Objects.equals(this.status, cashFlowUpdatesNewIncomeStreamWebhook.status) && Objects.equals(this.userId, cashFlowUpdatesNewIncomeStreamWebhook.userId) && Objects.equals(this.environment, cashFlowUpdatesNewIncomeStreamWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, status, userId, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CashFlowUpdatesNewIncomeStreamWebhook {\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/InstitutionsSearchAccountFilter.java
src/main/java/com/plaid/client/model/InstitutionsSearchAccountFilter.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.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 io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * An account filter to apply to institutions search requests */ @ApiModel(description = "An account filter to apply to institutions search requests") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class InstitutionsSearchAccountFilter { public static final String SERIALIZED_NAME_LOAN = "loan"; @SerializedName(SERIALIZED_NAME_LOAN) private List<AccountSubtype> loan = null; public static final String SERIALIZED_NAME_DEPOSITORY = "depository"; @SerializedName(SERIALIZED_NAME_DEPOSITORY) private List<AccountSubtype> depository = null; public static final String SERIALIZED_NAME_CREDIT = "credit"; @SerializedName(SERIALIZED_NAME_CREDIT) private List<AccountSubtype> credit = null; public static final String SERIALIZED_NAME_INVESTMENT = "investment"; @SerializedName(SERIALIZED_NAME_INVESTMENT) private List<AccountSubtype> investment = null; public InstitutionsSearchAccountFilter loan(List<AccountSubtype> loan) { this.loan = loan; return this; } public InstitutionsSearchAccountFilter addLoanItem(AccountSubtype loanItem) { if (this.loan == null) { this.loan = new ArrayList<>(); } this.loan.add(loanItem); return this; } /** * Get loan * @return loan **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public List<AccountSubtype> getLoan() { return loan; } public void setLoan(List<AccountSubtype> loan) { this.loan = loan; } public InstitutionsSearchAccountFilter depository(List<AccountSubtype> depository) { this.depository = depository; return this; } public InstitutionsSearchAccountFilter addDepositoryItem(AccountSubtype depositoryItem) { if (this.depository == null) { this.depository = new ArrayList<>(); } this.depository.add(depositoryItem); return this; } /** * Get depository * @return depository **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public List<AccountSubtype> getDepository() { return depository; } public void setDepository(List<AccountSubtype> depository) { this.depository = depository; } public InstitutionsSearchAccountFilter credit(List<AccountSubtype> credit) { this.credit = credit; return this; } public InstitutionsSearchAccountFilter addCreditItem(AccountSubtype creditItem) { if (this.credit == null) { this.credit = new ArrayList<>(); } this.credit.add(creditItem); return this; } /** * Get credit * @return credit **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public List<AccountSubtype> getCredit() { return credit; } public void setCredit(List<AccountSubtype> credit) { this.credit = credit; } public InstitutionsSearchAccountFilter investment(List<AccountSubtype> investment) { this.investment = investment; return this; } public InstitutionsSearchAccountFilter addInvestmentItem(AccountSubtype investmentItem) { if (this.investment == null) { this.investment = new ArrayList<>(); } this.investment.add(investmentItem); return this; } /** * Get investment * @return investment **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public List<AccountSubtype> getInvestment() { return investment; } public void setInvestment(List<AccountSubtype> investment) { this.investment = investment; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } InstitutionsSearchAccountFilter institutionsSearchAccountFilter = (InstitutionsSearchAccountFilter) o; return Objects.equals(this.loan, institutionsSearchAccountFilter.loan) && Objects.equals(this.depository, institutionsSearchAccountFilter.depository) && Objects.equals(this.credit, institutionsSearchAccountFilter.credit) && Objects.equals(this.investment, institutionsSearchAccountFilter.investment); } @Override public int hashCode() { return Objects.hash(loan, depository, credit, investment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class InstitutionsSearchAccountFilter {\n"); sb.append(" loan: ").append(toIndentedString(loan)).append("\n"); sb.append(" depository: ").append(toIndentedString(depository)).append("\n"); sb.append(" credit: ").append(toIndentedString(credit)).append("\n"); sb.append(" investment: ").append(toIndentedString(investment)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/OtherAccountSubtype.java
src/main/java/com/plaid/client/model/OtherAccountSubtype.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * Valid account subtypes for other accounts. For a list containing descriptions of each subtype, see [Account schemas](https://plaid.com/docs/api/accounts/#StandaloneAccountType-other). */ @JsonAdapter(OtherAccountSubtype.Adapter.class) public enum OtherAccountSubtype { OTHER("other"), 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; OtherAccountSubtype(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static OtherAccountSubtype fromValue(String value) { for (OtherAccountSubtype b : OtherAccountSubtype.values()) { if (b.value.equals(value)) { return b; } } return OtherAccountSubtype.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<OtherAccountSubtype> { @Override public void write(final JsonWriter jsonWriter, final OtherAccountSubtype enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public OtherAccountSubtype read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return OtherAccountSubtype.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/TransferOriginatorFundingAccountCreateResponse.java
src/main/java/com/plaid/client/model/TransferOriginatorFundingAccountCreateResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the response schema for &#x60;/transfer/originator/funding_account/create&#x60; */ @ApiModel(description = "Defines the response schema for `/transfer/originator/funding_account/create`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferOriginatorFundingAccountCreateResponse { public static final String SERIALIZED_NAME_FUNDING_ACCOUNT_ID = "funding_account_id"; @SerializedName(SERIALIZED_NAME_FUNDING_ACCOUNT_ID) private String fundingAccountId; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public TransferOriginatorFundingAccountCreateResponse fundingAccountId(String fundingAccountId) { this.fundingAccountId = fundingAccountId; return this; } /** * The id of the funding account to use, available in the Plaid Dashboard. This determines which of your business checking accounts will be credited or debited. * @return fundingAccountId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The id of the funding account to use, available in the Plaid Dashboard. This determines which of your business checking accounts will be credited or debited.") public String getFundingAccountId() { return fundingAccountId; } public void setFundingAccountId(String fundingAccountId) { this.fundingAccountId = fundingAccountId; } public TransferOriginatorFundingAccountCreateResponse 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; } TransferOriginatorFundingAccountCreateResponse transferOriginatorFundingAccountCreateResponse = (TransferOriginatorFundingAccountCreateResponse) o; return Objects.equals(this.fundingAccountId, transferOriginatorFundingAccountCreateResponse.fundingAccountId) && Objects.equals(this.requestId, transferOriginatorFundingAccountCreateResponse.requestId); } @Override public int hashCode() { return Objects.hash(fundingAccountId, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferOriginatorFundingAccountCreateResponse {\n"); sb.append(" fundingAccountId: ").append(toIndentedString(fundingAccountId)).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/ItemStatusTransactions.java
src/main/java/com/plaid/client/model/ItemStatusTransactions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * Information about the last successful and failed transactions update for the Item. */ @ApiModel(description = "Information about the last successful and failed transactions update for the Item.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class ItemStatusTransactions { public static final String SERIALIZED_NAME_LAST_SUCCESSFUL_UPDATE = "last_successful_update"; @SerializedName(SERIALIZED_NAME_LAST_SUCCESSFUL_UPDATE) private OffsetDateTime lastSuccessfulUpdate; public static final String SERIALIZED_NAME_LAST_FAILED_UPDATE = "last_failed_update"; @SerializedName(SERIALIZED_NAME_LAST_FAILED_UPDATE) private OffsetDateTime lastFailedUpdate; public ItemStatusTransactions lastSuccessfulUpdate(OffsetDateTime lastSuccessfulUpdate) { this.lastSuccessfulUpdate = lastSuccessfulUpdate; return this; } /** * [ISO 8601](https://wikipedia.org/wiki/ISO_8601) timestamp of the last successful transactions update for the Item. The status will update each time Plaid successfully connects with the institution, regardless of whether any new data is available in the update. This field does not reflect transactions updates performed by non-Transactions products (e.g. Signal). * @return lastSuccessfulUpdate **/ @javax.annotation.Nullable @ApiModelProperty(value = "[ISO 8601](https://wikipedia.org/wiki/ISO_8601) timestamp of the last successful transactions update for the Item. The status will update each time Plaid successfully connects with the institution, regardless of whether any new data is available in the update. This field does not reflect transactions updates performed by non-Transactions products (e.g. Signal). ") public OffsetDateTime getLastSuccessfulUpdate() { return lastSuccessfulUpdate; } public void setLastSuccessfulUpdate(OffsetDateTime lastSuccessfulUpdate) { this.lastSuccessfulUpdate = lastSuccessfulUpdate; } public ItemStatusTransactions lastFailedUpdate(OffsetDateTime lastFailedUpdate) { this.lastFailedUpdate = lastFailedUpdate; return this; } /** * [ISO 8601](https://wikipedia.org/wiki/ISO_8601) timestamp of the last failed transactions update for the Item. The status will update each time Plaid fails an attempt to connect with the institution, regardless of whether any new data is available in the update. This field does not reflect transactions updates performed by non-Transactions products (e.g. Signal). * @return lastFailedUpdate **/ @javax.annotation.Nullable @ApiModelProperty(value = "[ISO 8601](https://wikipedia.org/wiki/ISO_8601) timestamp of the last failed transactions update for the Item. The status will update each time Plaid fails an attempt to connect with the institution, regardless of whether any new data is available in the update. This field does not reflect transactions updates performed by non-Transactions products (e.g. Signal).") public OffsetDateTime getLastFailedUpdate() { return lastFailedUpdate; } public void setLastFailedUpdate(OffsetDateTime lastFailedUpdate) { this.lastFailedUpdate = lastFailedUpdate; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ItemStatusTransactions itemStatusTransactions = (ItemStatusTransactions) o; return Objects.equals(this.lastSuccessfulUpdate, itemStatusTransactions.lastSuccessfulUpdate) && Objects.equals(this.lastFailedUpdate, itemStatusTransactions.lastFailedUpdate); } @Override public int hashCode() { return Objects.hash(lastSuccessfulUpdate, lastFailedUpdate); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ItemStatusTransactions {\n"); sb.append(" lastSuccessfulUpdate: ").append(toIndentedString(lastSuccessfulUpdate)).append("\n"); sb.append(" lastFailedUpdate: ").append(toIndentedString(lastFailedUpdate)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/Services.java
src/main/java/com/plaid/client/model/Services.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.Service; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * A collection of objects that describe requests and responses for services. */ @ApiModel(description = "A collection of objects that describe requests and responses for services.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class Services { public static final String SERIALIZED_NAME_S_E_R_V_I_C_E = "SERVICE"; @SerializedName(SERIALIZED_NAME_S_E_R_V_I_C_E) private Service SERVICE; public Services SERVICE(Service SERVICE) { this.SERVICE = SERVICE; return this; } /** * Get SERVICE * @return SERVICE **/ @ApiModelProperty(required = true, value = "") public Service getSERVICE() { return SERVICE; } public void setSERVICE(Service SERVICE) { this.SERVICE = SERVICE; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Services services = (Services) o; return Objects.equals(this.SERVICE, services.SERVICE); } @Override public int hashCode() { return Objects.hash(SERVICE); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Services {\n"); sb.append(" SERVICE: ").append(toIndentedString(SERVICE)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaymentInitiationOptionalRestrictionBacs.java
src/main/java/com/plaid/client/model/PaymentInitiationOptionalRestrictionBacs.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.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 optional object used to restrict the accounts used for payments. If provided, the end user will be able to send payments only from the specified bank account. */ @ApiModel(description = "An optional object used to restrict the accounts used for payments. If provided, the end user will be able to send payments only from the specified bank account.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class PaymentInitiationOptionalRestrictionBacs { 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 PaymentInitiationOptionalRestrictionBacs 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 PaymentInitiationOptionalRestrictionBacs 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; } PaymentInitiationOptionalRestrictionBacs paymentInitiationOptionalRestrictionBacs = (PaymentInitiationOptionalRestrictionBacs) o; return Objects.equals(this.account, paymentInitiationOptionalRestrictionBacs.account) && Objects.equals(this.sortCode, paymentInitiationOptionalRestrictionBacs.sortCode); } @Override public int hashCode() { return Objects.hash(account, sortCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PaymentInitiationOptionalRestrictionBacs {\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/WatchlistScreeningEntityReviewListRequest.java
src/main/java/com/plaid/client/model/WatchlistScreeningEntityReviewListRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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 entity watchlist screening */ @ApiModel(description = "Request input for listing reviews for an entity watchlist screening") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WatchlistScreeningEntityReviewListRequest { public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENING_ID = "entity_watchlist_screening_id"; @SerializedName(SERIALIZED_NAME_ENTITY_WATCHLIST_SCREENING_ID) private String entityWatchlistScreeningId; public static final String SERIALIZED_NAME_CURSOR = "cursor"; @SerializedName(SERIALIZED_NAME_CURSOR) private String cursor; public WatchlistScreeningEntityReviewListRequest 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 WatchlistScreeningEntityReviewListRequest 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 WatchlistScreeningEntityReviewListRequest entityWatchlistScreeningId(String entityWatchlistScreeningId) { this.entityWatchlistScreeningId = entityWatchlistScreeningId; return this; } /** * ID of the associated entity screening. * @return entityWatchlistScreeningId **/ @ApiModelProperty(example = "entscr_52xR9LKo77r1Np", required = true, value = "ID of the associated entity screening.") public String getEntityWatchlistScreeningId() { return entityWatchlistScreeningId; } public void setEntityWatchlistScreeningId(String entityWatchlistScreeningId) { this.entityWatchlistScreeningId = entityWatchlistScreeningId; } public WatchlistScreeningEntityReviewListRequest 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; } WatchlistScreeningEntityReviewListRequest watchlistScreeningEntityReviewListRequest = (WatchlistScreeningEntityReviewListRequest) o; return Objects.equals(this.secret, watchlistScreeningEntityReviewListRequest.secret) && Objects.equals(this.clientId, watchlistScreeningEntityReviewListRequest.clientId) && Objects.equals(this.entityWatchlistScreeningId, watchlistScreeningEntityReviewListRequest.entityWatchlistScreeningId) && Objects.equals(this.cursor, watchlistScreeningEntityReviewListRequest.cursor); } @Override public int hashCode() { return Objects.hash(secret, clientId, entityWatchlistScreeningId, cursor); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WatchlistScreeningEntityReviewListRequest {\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" entityWatchlistScreeningId: ").append(toIndentedString(entityWatchlistScreeningId)).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/CraCheckReportLendScoreGetRequest.java
src/main/java/com/plaid/client/model/CraCheckReportLendScoreGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CraCheckReportLendScoreGetOptions; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * CraCheckReportLendScoreGetRequest defines the request schema for &#x60;/cra/check_report/lend_score/get&#x60;. */ @ApiModel(description = "CraCheckReportLendScoreGetRequest defines the request schema for `/cra/check_report/lend_score/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCheckReportLendScoreGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public static final String SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN = "third_party_user_token"; @SerializedName(SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN) private String thirdPartyUserToken; public static final String SERIALIZED_NAME_USER_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) private String userToken; public static final String SERIALIZED_NAME_OPTIONS = "options"; @SerializedName(SERIALIZED_NAME_OPTIONS) private CraCheckReportLendScoreGetOptions options; public CraCheckReportLendScoreGetRequest 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 CraCheckReportLendScoreGetRequest 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 CraCheckReportLendScoreGetRequest userId(String userId) { this.userId = userId; return this; } /** * A unique user identifier, created by &#x60;/user/create&#x60;. Integrations that began using &#x60;/user/create&#x60; after December 10, 2025 use this field to identify a user instead of the &#x60;user_token&#x60;. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis). * @return userId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique user identifier, created by `/user/create`. Integrations that began using `/user/create` after December 10, 2025 use this field to identify a user instead of the `user_token`. For more details, see [new user APIs](https://plaid.com/docs/api/users/user-apis).") public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public CraCheckReportLendScoreGetRequest thirdPartyUserToken(String thirdPartyUserToken) { this.thirdPartyUserToken = thirdPartyUserToken; return this; } /** * The third-party user token associated with the requested User data. * @return thirdPartyUserToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "The third-party user token associated with the requested User data.") public String getThirdPartyUserToken() { return thirdPartyUserToken; } public void setThirdPartyUserToken(String thirdPartyUserToken) { this.thirdPartyUserToken = thirdPartyUserToken; } public CraCheckReportLendScoreGetRequest 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 CraCheckReportLendScoreGetRequest options(CraCheckReportLendScoreGetOptions options) { this.options = options; return this; } /** * Get options * @return options **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public CraCheckReportLendScoreGetOptions getOptions() { return options; } public void setOptions(CraCheckReportLendScoreGetOptions options) { this.options = options; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraCheckReportLendScoreGetRequest craCheckReportLendScoreGetRequest = (CraCheckReportLendScoreGetRequest) o; return Objects.equals(this.clientId, craCheckReportLendScoreGetRequest.clientId) && Objects.equals(this.secret, craCheckReportLendScoreGetRequest.secret) && Objects.equals(this.userId, craCheckReportLendScoreGetRequest.userId) && Objects.equals(this.thirdPartyUserToken, craCheckReportLendScoreGetRequest.thirdPartyUserToken) && Objects.equals(this.userToken, craCheckReportLendScoreGetRequest.userToken) && Objects.equals(this.options, craCheckReportLendScoreGetRequest.options); } @Override public int hashCode() { return Objects.hash(clientId, secret, userId, thirdPartyUserToken, userToken, options); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportLendScoreGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); sb.append(" thirdPartyUserToken: ").append(toIndentedString(thirdPartyUserToken)).append("\n"); sb.append(" userToken: ").append(toIndentedString(userToken)).append("\n"); sb.append(" 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/LinkTokenCreateRequestCraOptions.java
src/main/java/com/plaid/client/model/LinkTokenCreateRequestCraOptions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.LinkTokenCreateRequestCraOptionsBaseReport; import com.plaid.client.model.LinkTokenCreateRequestCraOptionsCashflowInsights; import com.plaid.client.model.LinkTokenCreateRequestCraOptionsLendScore; import com.plaid.client.model.LinkTokenCreateRequestCraOptionsNetworkInsights; import com.plaid.client.model.LinkTokenCreateRequestCraOptionsPartnerInsights; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Specifies options for initializing Link for use with Plaid Check products */ @ApiModel(description = "Specifies options for initializing Link for use with Plaid Check products") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkTokenCreateRequestCraOptions { public static final String SERIALIZED_NAME_DAYS_REQUESTED = "days_requested"; @SerializedName(SERIALIZED_NAME_DAYS_REQUESTED) private Integer daysRequested; public static final String SERIALIZED_NAME_DAYS_REQUIRED = "days_required"; @SerializedName(SERIALIZED_NAME_DAYS_REQUIRED) private Integer daysRequired; 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_PARTNER_INSIGHTS = "partner_insights"; @SerializedName(SERIALIZED_NAME_PARTNER_INSIGHTS) private LinkTokenCreateRequestCraOptionsPartnerInsights partnerInsights; public static final String SERIALIZED_NAME_BASE_REPORT = "base_report"; @SerializedName(SERIALIZED_NAME_BASE_REPORT) private LinkTokenCreateRequestCraOptionsBaseReport baseReport; public static final String SERIALIZED_NAME_CASHFLOW_INSIGHTS = "cashflow_insights"; @SerializedName(SERIALIZED_NAME_CASHFLOW_INSIGHTS) private LinkTokenCreateRequestCraOptionsCashflowInsights cashflowInsights; public static final String SERIALIZED_NAME_LEND_SCORE = "lend_score"; @SerializedName(SERIALIZED_NAME_LEND_SCORE) private LinkTokenCreateRequestCraOptionsLendScore lendScore; public static final String SERIALIZED_NAME_NETWORK_INSIGHTS = "network_insights"; @SerializedName(SERIALIZED_NAME_NETWORK_INSIGHTS) private LinkTokenCreateRequestCraOptionsNetworkInsights networkInsights; public static final String SERIALIZED_NAME_INCLUDE_INVESTMENTS = "include_investments"; @SerializedName(SERIALIZED_NAME_INCLUDE_INVESTMENTS) private Boolean includeInvestments; public LinkTokenCreateRequestCraOptions daysRequested(Integer daysRequested) { this.daysRequested = daysRequested; return this; } /** * The number of days of history to include in Plaid Check products. Maximum is 731; minimum is 180. If a value lower than 180 is provided, a minimum of 180 days of history will be requested. * maximum: 731 * @return daysRequested **/ @ApiModelProperty(required = true, value = "The number of days of history to include in Plaid Check products. Maximum is 731; minimum is 180. If a value lower than 180 is provided, a minimum of 180 days of history will be requested.") public Integer getDaysRequested() { return daysRequested; } public void setDaysRequested(Integer daysRequested) { this.daysRequested = daysRequested; } public LinkTokenCreateRequestCraOptions daysRequired(Integer daysRequired) { this.daysRequired = daysRequired; return this; } /** * The minimum number of days of data required for the report to be successfully generated. * maximum: 184 * @return daysRequired **/ @javax.annotation.Nullable @ApiModelProperty(value = "The minimum number of days of data required for the report to be successfully generated.") public Integer getDaysRequired() { return daysRequired; } public void setDaysRequired(Integer daysRequired) { this.daysRequired = daysRequired; } public LinkTokenCreateRequestCraOptions 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 LinkTokenCreateRequestCraOptions partnerInsights(LinkTokenCreateRequestCraOptionsPartnerInsights partnerInsights) { this.partnerInsights = partnerInsights; return this; } /** * Get partnerInsights * @return partnerInsights **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public LinkTokenCreateRequestCraOptionsPartnerInsights getPartnerInsights() { return partnerInsights; } public void setPartnerInsights(LinkTokenCreateRequestCraOptionsPartnerInsights partnerInsights) { this.partnerInsights = partnerInsights; } public LinkTokenCreateRequestCraOptions baseReport(LinkTokenCreateRequestCraOptionsBaseReport baseReport) { this.baseReport = baseReport; return this; } /** * Get baseReport * @return baseReport **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public LinkTokenCreateRequestCraOptionsBaseReport getBaseReport() { return baseReport; } public void setBaseReport(LinkTokenCreateRequestCraOptionsBaseReport baseReport) { this.baseReport = baseReport; } public LinkTokenCreateRequestCraOptions cashflowInsights(LinkTokenCreateRequestCraOptionsCashflowInsights cashflowInsights) { this.cashflowInsights = cashflowInsights; return this; } /** * Get cashflowInsights * @return cashflowInsights **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public LinkTokenCreateRequestCraOptionsCashflowInsights getCashflowInsights() { return cashflowInsights; } public void setCashflowInsights(LinkTokenCreateRequestCraOptionsCashflowInsights cashflowInsights) { this.cashflowInsights = cashflowInsights; } public LinkTokenCreateRequestCraOptions lendScore(LinkTokenCreateRequestCraOptionsLendScore lendScore) { this.lendScore = lendScore; return this; } /** * Get lendScore * @return lendScore **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public LinkTokenCreateRequestCraOptionsLendScore getLendScore() { return lendScore; } public void setLendScore(LinkTokenCreateRequestCraOptionsLendScore lendScore) { this.lendScore = lendScore; } public LinkTokenCreateRequestCraOptions networkInsights(LinkTokenCreateRequestCraOptionsNetworkInsights networkInsights) { this.networkInsights = networkInsights; return this; } /** * Get networkInsights * @return networkInsights **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public LinkTokenCreateRequestCraOptionsNetworkInsights getNetworkInsights() { return networkInsights; } public void setNetworkInsights(LinkTokenCreateRequestCraOptionsNetworkInsights networkInsights) { this.networkInsights = networkInsights; } public LinkTokenCreateRequestCraOptions includeInvestments(Boolean includeInvestments) { this.includeInvestments = includeInvestments; return this; } /** * Indicates that investment data should be extracted from the linked account(s). * @return includeInvestments **/ @javax.annotation.Nullable @ApiModelProperty(value = "Indicates that investment data should be extracted from the linked account(s).") public Boolean getIncludeInvestments() { return includeInvestments; } public void setIncludeInvestments(Boolean includeInvestments) { this.includeInvestments = includeInvestments; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkTokenCreateRequestCraOptions linkTokenCreateRequestCraOptions = (LinkTokenCreateRequestCraOptions) o; return Objects.equals(this.daysRequested, linkTokenCreateRequestCraOptions.daysRequested) && Objects.equals(this.daysRequired, linkTokenCreateRequestCraOptions.daysRequired) && Objects.equals(this.clientReportId, linkTokenCreateRequestCraOptions.clientReportId) && Objects.equals(this.partnerInsights, linkTokenCreateRequestCraOptions.partnerInsights) && Objects.equals(this.baseReport, linkTokenCreateRequestCraOptions.baseReport) && Objects.equals(this.cashflowInsights, linkTokenCreateRequestCraOptions.cashflowInsights) && Objects.equals(this.lendScore, linkTokenCreateRequestCraOptions.lendScore) && Objects.equals(this.networkInsights, linkTokenCreateRequestCraOptions.networkInsights) && Objects.equals(this.includeInvestments, linkTokenCreateRequestCraOptions.includeInvestments); } @Override public int hashCode() { return Objects.hash(daysRequested, daysRequired, clientReportId, partnerInsights, baseReport, cashflowInsights, lendScore, networkInsights, includeInvestments); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkTokenCreateRequestCraOptions {\n"); sb.append(" daysRequested: ").append(toIndentedString(daysRequested)).append("\n"); sb.append(" daysRequired: ").append(toIndentedString(daysRequired)).append("\n"); sb.append(" clientReportId: ").append(toIndentedString(clientReportId)).append("\n"); sb.append(" partnerInsights: ").append(toIndentedString(partnerInsights)).append("\n"); sb.append(" baseReport: ").append(toIndentedString(baseReport)).append("\n"); sb.append(" cashflowInsights: ").append(toIndentedString(cashflowInsights)).append("\n"); sb.append(" lendScore: ").append(toIndentedString(lendScore)).append("\n"); sb.append(" networkInsights: ").append(toIndentedString(networkInsights)).append("\n"); sb.append(" includeInvestments: ").append(toIndentedString(includeInvestments)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SandboxPaymentSimulateRequest.java
src/main/java/com/plaid/client/model/SandboxPaymentSimulateRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * SandboxPaymentSimulateRequest defines the request schema for &#x60;/sandbox/payment/simulate&#x60; */ @ApiModel(description = "SandboxPaymentSimulateRequest defines the request schema for `/sandbox/payment/simulate`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SandboxPaymentSimulateRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_PAYMENT_ID = "payment_id"; @SerializedName(SERIALIZED_NAME_PAYMENT_ID) private String paymentId; public static final String SERIALIZED_NAME_WEBHOOK = "webhook"; @SerializedName(SERIALIZED_NAME_WEBHOOK) private String webhook; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private String status; public SandboxPaymentSimulateRequest 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 SandboxPaymentSimulateRequest 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 SandboxPaymentSimulateRequest paymentId(String paymentId) { this.paymentId = paymentId; return this; } /** * The ID of the payment to simulate * @return paymentId **/ @ApiModelProperty(required = true, value = "The ID of the payment to simulate") public String getPaymentId() { return paymentId; } public void setPaymentId(String paymentId) { this.paymentId = paymentId; } public SandboxPaymentSimulateRequest webhook(String webhook) { this.webhook = webhook; return this; } /** * The webhook url to use for any payment events triggered by the simulated status change. * @return webhook **/ @ApiModelProperty(required = true, value = "The webhook url to use for any payment events triggered by the simulated status change.") public String getWebhook() { return webhook; } public void setWebhook(String webhook) { this.webhook = webhook; } public SandboxPaymentSimulateRequest status(String status) { this.status = status; return this; } /** * The status to set the payment to. Valid statuses include: - &#x60;PAYMENT_STATUS_INITIATED&#x60; - &#x60;PAYMENT_STATUS_INSUFFICIENT_FUNDS&#x60; - &#x60;PAYMENT_STATUS_FAILED&#x60; - &#x60;PAYMENT_STATUS_EXECUTED&#x60; - &#x60;PAYMENT_STATUS_SETTLED&#x60; - &#x60;PAYMENT_STATUS_CANCELLED&#x60; - &#x60;PAYMENT_STATUS_REJECTED&#x60; * @return status **/ @ApiModelProperty(required = true, value = "The status to set the payment to. Valid statuses include: - `PAYMENT_STATUS_INITIATED` - `PAYMENT_STATUS_INSUFFICIENT_FUNDS` - `PAYMENT_STATUS_FAILED` - `PAYMENT_STATUS_EXECUTED` - `PAYMENT_STATUS_SETTLED` - `PAYMENT_STATUS_CANCELLED` - `PAYMENT_STATUS_REJECTED`") public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SandboxPaymentSimulateRequest sandboxPaymentSimulateRequest = (SandboxPaymentSimulateRequest) o; return Objects.equals(this.clientId, sandboxPaymentSimulateRequest.clientId) && Objects.equals(this.secret, sandboxPaymentSimulateRequest.secret) && Objects.equals(this.paymentId, sandboxPaymentSimulateRequest.paymentId) && Objects.equals(this.webhook, sandboxPaymentSimulateRequest.webhook) && Objects.equals(this.status, sandboxPaymentSimulateRequest.status); } @Override public int hashCode() { return Objects.hash(clientId, secret, paymentId, webhook, status); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SandboxPaymentSimulateRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" paymentId: ").append(toIndentedString(paymentId)).append("\n"); sb.append(" webhook: ").append(toIndentedString(webhook)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/DocumentMetadata.java
src/main/java/com/plaid/client/model/DocumentMetadata.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.DocType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * An object representing metadata from the end user&#39;s uploaded document. */ @ApiModel(description = "An object representing metadata from the end user's uploaded document.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class DocumentMetadata { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private String name; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private String status; public static final String SERIALIZED_NAME_DOC_ID = "doc_id"; @SerializedName(SERIALIZED_NAME_DOC_ID) private String docId; public static final String SERIALIZED_NAME_DOC_TYPE = "doc_type"; @SerializedName(SERIALIZED_NAME_DOC_TYPE) private DocType docType; public DocumentMetadata name(String name) { this.name = name; return this; } /** * The name of the document. * @return name **/ @javax.annotation.Nullable @ApiModelProperty(value = "The name of the document.") public String getName() { return name; } public void setName(String name) { this.name = name; } public DocumentMetadata status(String status) { this.status = status; return this; } /** * The processing status of the document. &#x60;PROCESSING_COMPLETE&#x60;: The document was successfully processed. &#x60;DOCUMENT_ERROR&#x60;: The document could not be processed. Possible causes include: The document was an unacceptable document type such as an offer letter or bank statement, the document image was cropped or blurry, or the document was corrupted. &#x60;UNKNOWN&#x60; or &#x60;null&#x60;: An internal error occurred. If this happens repeatedly, contact support or your Plaid account manager. * @return status **/ @javax.annotation.Nullable @ApiModelProperty(value = "The processing status of the document. `PROCESSING_COMPLETE`: The document was successfully processed. `DOCUMENT_ERROR`: The document could not be processed. Possible causes include: The document was an unacceptable document type such as an offer letter or bank statement, the document image was cropped or blurry, or the document was corrupted. `UNKNOWN` or `null`: An internal error occurred. If this happens repeatedly, contact support or your Plaid account manager.") public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public DocumentMetadata docId(String docId) { this.docId = docId; return this; } /** * An identifier of the document that is also present in the paystub response. * @return docId **/ @javax.annotation.Nullable @ApiModelProperty(value = "An identifier of the document that is also present in the paystub response.") public String getDocId() { return docId; } public void setDocId(String docId) { this.docId = docId; } public DocumentMetadata docType(DocType docType) { this.docType = docType; return this; } /** * Get docType * @return docType **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public DocType getDocType() { return docType; } public void setDocType(DocType docType) { this.docType = docType; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } DocumentMetadata documentMetadata = (DocumentMetadata) o; return Objects.equals(this.name, documentMetadata.name) && Objects.equals(this.status, documentMetadata.status) && Objects.equals(this.docId, documentMetadata.docId) && Objects.equals(this.docType, documentMetadata.docType); } @Override public int hashCode() { return Objects.hash(name, status, docId, docType); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class DocumentMetadata {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" docId: ").append(toIndentedString(docId)).append("\n"); sb.append(" docType: ").append(toIndentedString(docType)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferEventSyncResponse.java
src/main/java/com/plaid/client/model/TransferEventSyncResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.TransferEvent; 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;/transfer/event/sync&#x60; */ @ApiModel(description = "Defines the response schema for `/transfer/event/sync`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferEventSyncResponse { public static final String SERIALIZED_NAME_TRANSFER_EVENTS = "transfer_events"; @SerializedName(SERIALIZED_NAME_TRANSFER_EVENTS) private List<TransferEvent> transferEvents = new ArrayList<>(); public static final String SERIALIZED_NAME_HAS_MORE = "has_more"; @SerializedName(SERIALIZED_NAME_HAS_MORE) private Boolean hasMore; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public TransferEventSyncResponse transferEvents(List<TransferEvent> transferEvents) { this.transferEvents = transferEvents; return this; } public TransferEventSyncResponse addTransferEventsItem(TransferEvent transferEventsItem) { this.transferEvents.add(transferEventsItem); return this; } /** * Get transferEvents * @return transferEvents **/ @ApiModelProperty(required = true, value = "") public List<TransferEvent> getTransferEvents() { return transferEvents; } public void setTransferEvents(List<TransferEvent> transferEvents) { this.transferEvents = transferEvents; } public TransferEventSyncResponse hasMore(Boolean hasMore) { this.hasMore = hasMore; return this; } /** * Whether there are more events to be pulled from the endpoint that have not already been returned * @return hasMore **/ @ApiModelProperty(required = true, value = "Whether there are more events to be pulled from the endpoint that have not already been returned") public Boolean getHasMore() { return hasMore; } public void setHasMore(Boolean hasMore) { this.hasMore = hasMore; } public TransferEventSyncResponse 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; } TransferEventSyncResponse transferEventSyncResponse = (TransferEventSyncResponse) o; return Objects.equals(this.transferEvents, transferEventSyncResponse.transferEvents) && Objects.equals(this.hasMore, transferEventSyncResponse.hasMore) && Objects.equals(this.requestId, transferEventSyncResponse.requestId); } @Override public int hashCode() { return Objects.hash(transferEvents, hasMore, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferEventSyncResponse {\n"); sb.append(" transferEvents: ").append(toIndentedString(transferEvents)).append("\n"); sb.append(" hasMore: ").append(toIndentedString(hasMore)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkTokenCreateRequestUserStatedIncomeSource.java
src/main/java/com/plaid/client/model/LinkTokenCreateRequestUserStatedIncomeSource.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.UserStatedIncomeSourceCategory; import com.plaid.client.model.UserStatedIncomeSourceFrequency; import com.plaid.client.model.UserStatedIncomeSourcePayType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Specifies user stated income sources for the Income product */ @ApiModel(description = "Specifies user stated income sources for the Income product") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LinkTokenCreateRequestUserStatedIncomeSource { public static final String SERIALIZED_NAME_EMPLOYER = "employer"; @SerializedName(SERIALIZED_NAME_EMPLOYER) private String employer; public static final String SERIALIZED_NAME_CATEGORY = "category"; @SerializedName(SERIALIZED_NAME_CATEGORY) private UserStatedIncomeSourceCategory category; public static final String SERIALIZED_NAME_PAY_PER_CYCLE = "pay_per_cycle"; @SerializedName(SERIALIZED_NAME_PAY_PER_CYCLE) private Double payPerCycle; public static final String SERIALIZED_NAME_PAY_ANNUAL = "pay_annual"; @SerializedName(SERIALIZED_NAME_PAY_ANNUAL) private Double payAnnual; public static final String SERIALIZED_NAME_PAY_TYPE = "pay_type"; @SerializedName(SERIALIZED_NAME_PAY_TYPE) private UserStatedIncomeSourcePayType payType; public static final String SERIALIZED_NAME_PAY_FREQUENCY = "pay_frequency"; @SerializedName(SERIALIZED_NAME_PAY_FREQUENCY) private UserStatedIncomeSourceFrequency payFrequency; public LinkTokenCreateRequestUserStatedIncomeSource employer(String employer) { this.employer = employer; return this; } /** * The employer corresponding to an income source specified by the user * @return employer **/ @javax.annotation.Nullable @ApiModelProperty(value = "The employer corresponding to an income source specified by the user") public String getEmployer() { return employer; } public void setEmployer(String employer) { this.employer = employer; } public LinkTokenCreateRequestUserStatedIncomeSource category(UserStatedIncomeSourceCategory category) { this.category = category; return this; } /** * Get category * @return category **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public UserStatedIncomeSourceCategory getCategory() { return category; } public void setCategory(UserStatedIncomeSourceCategory category) { this.category = category; } public LinkTokenCreateRequestUserStatedIncomeSource payPerCycle(Double payPerCycle) { this.payPerCycle = payPerCycle; return this; } /** * The income amount paid per cycle for a specified income source * @return payPerCycle **/ @javax.annotation.Nullable @ApiModelProperty(value = "The income amount paid per cycle for a specified income source") public Double getPayPerCycle() { return payPerCycle; } public void setPayPerCycle(Double payPerCycle) { this.payPerCycle = payPerCycle; } public LinkTokenCreateRequestUserStatedIncomeSource payAnnual(Double payAnnual) { this.payAnnual = payAnnual; return this; } /** * The income amount paid annually for a specified income source * @return payAnnual **/ @javax.annotation.Nullable @ApiModelProperty(value = "The income amount paid annually for a specified income source") public Double getPayAnnual() { return payAnnual; } public void setPayAnnual(Double payAnnual) { this.payAnnual = payAnnual; } public LinkTokenCreateRequestUserStatedIncomeSource payType(UserStatedIncomeSourcePayType payType) { this.payType = payType; return this; } /** * Get payType * @return payType **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public UserStatedIncomeSourcePayType getPayType() { return payType; } public void setPayType(UserStatedIncomeSourcePayType payType) { this.payType = payType; } public LinkTokenCreateRequestUserStatedIncomeSource payFrequency(UserStatedIncomeSourceFrequency payFrequency) { this.payFrequency = payFrequency; return this; } /** * Get payFrequency * @return payFrequency **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public UserStatedIncomeSourceFrequency getPayFrequency() { return payFrequency; } public void setPayFrequency(UserStatedIncomeSourceFrequency payFrequency) { this.payFrequency = payFrequency; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } LinkTokenCreateRequestUserStatedIncomeSource linkTokenCreateRequestUserStatedIncomeSource = (LinkTokenCreateRequestUserStatedIncomeSource) o; return Objects.equals(this.employer, linkTokenCreateRequestUserStatedIncomeSource.employer) && Objects.equals(this.category, linkTokenCreateRequestUserStatedIncomeSource.category) && Objects.equals(this.payPerCycle, linkTokenCreateRequestUserStatedIncomeSource.payPerCycle) && Objects.equals(this.payAnnual, linkTokenCreateRequestUserStatedIncomeSource.payAnnual) && Objects.equals(this.payType, linkTokenCreateRequestUserStatedIncomeSource.payType) && Objects.equals(this.payFrequency, linkTokenCreateRequestUserStatedIncomeSource.payFrequency); } @Override public int hashCode() { return Objects.hash(employer, category, payPerCycle, payAnnual, payType, payFrequency); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LinkTokenCreateRequestUserStatedIncomeSource {\n"); sb.append(" employer: ").append(toIndentedString(employer)).append("\n"); sb.append(" category: ").append(toIndentedString(category)).append("\n"); sb.append(" payPerCycle: ").append(toIndentedString(payPerCycle)).append("\n"); sb.append(" payAnnual: ").append(toIndentedString(payAnnual)).append("\n"); sb.append(" payType: ").append(toIndentedString(payType)).append("\n"); sb.append(" payFrequency: ").append(toIndentedString(payFrequency)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/DashboardUserStatus.java
src/main/java/com/plaid/client/model/DashboardUserStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 current status of the user. */ @JsonAdapter(DashboardUserStatus.Adapter.class) public enum DashboardUserStatus { INVITED("invited"), ACTIVE("active"), DEACTIVATED("deactivated"), // 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; DashboardUserStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static DashboardUserStatus fromValue(String value) { for (DashboardUserStatus b : DashboardUserStatus.values()) { if (b.value.equals(value)) { return b; } } return DashboardUserStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<DashboardUserStatus> { @Override public void write(final JsonWriter jsonWriter, final DashboardUserStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public DashboardUserStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return DashboardUserStatus.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/CraBankIncomeItem.java
src/main/java/com/plaid/client/model/CraBankIncomeItem.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CraBankIncomeAccount; import com.plaid.client.model.CraBankIncomeSource; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.List; /** * The details and metadata for an end user&#39;s Item. */ @ApiModel(description = "The details and metadata for an end user's Item.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraBankIncomeItem { public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public static final String SERIALIZED_NAME_BANK_INCOME_ACCOUNTS = "bank_income_accounts"; @SerializedName(SERIALIZED_NAME_BANK_INCOME_ACCOUNTS) private List<CraBankIncomeAccount> bankIncomeAccounts = new ArrayList<>(); public static final String SERIALIZED_NAME_BANK_INCOME_SOURCES = "bank_income_sources"; @SerializedName(SERIALIZED_NAME_BANK_INCOME_SOURCES) private List<CraBankIncomeSource> bankIncomeSources = new ArrayList<>(); public static final String SERIALIZED_NAME_LAST_UPDATED_TIME = "last_updated_time"; @SerializedName(SERIALIZED_NAME_LAST_UPDATED_TIME) private OffsetDateTime lastUpdatedTime; public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id"; @SerializedName(SERIALIZED_NAME_INSTITUTION_ID) private String institutionId; public static final String SERIALIZED_NAME_INSTITUTION_NAME = "institution_name"; @SerializedName(SERIALIZED_NAME_INSTITUTION_NAME) private String institutionName; public CraBankIncomeItem itemId(String itemId) { this.itemId = itemId; return this; } /** * The &#x60;item_id&#x60; of the Item associated with this webhook, warning, or error * @return itemId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The `item_id` of the Item associated with this webhook, warning, or error") public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public CraBankIncomeItem bankIncomeAccounts(List<CraBankIncomeAccount> bankIncomeAccounts) { this.bankIncomeAccounts = bankIncomeAccounts; return this; } public CraBankIncomeItem addBankIncomeAccountsItem(CraBankIncomeAccount bankIncomeAccountsItem) { this.bankIncomeAccounts.add(bankIncomeAccountsItem); return this; } /** * The Item&#39;s accounts that have bank income data. * @return bankIncomeAccounts **/ @ApiModelProperty(required = true, value = "The Item's accounts that have bank income data.") public List<CraBankIncomeAccount> getBankIncomeAccounts() { return bankIncomeAccounts; } public void setBankIncomeAccounts(List<CraBankIncomeAccount> bankIncomeAccounts) { this.bankIncomeAccounts = bankIncomeAccounts; } public CraBankIncomeItem bankIncomeSources(List<CraBankIncomeSource> bankIncomeSources) { this.bankIncomeSources = bankIncomeSources; return this; } public CraBankIncomeItem addBankIncomeSourcesItem(CraBankIncomeSource bankIncomeSourcesItem) { this.bankIncomeSources.add(bankIncomeSourcesItem); return this; } /** * The income sources for this Item. Each entry in the array is a single income source. * @return bankIncomeSources **/ @ApiModelProperty(required = true, value = "The income sources for this Item. Each entry in the array is a single income source.") public List<CraBankIncomeSource> getBankIncomeSources() { return bankIncomeSources; } public void setBankIncomeSources(List<CraBankIncomeSource> bankIncomeSources) { this.bankIncomeSources = bankIncomeSources; } public CraBankIncomeItem lastUpdatedTime(OffsetDateTime lastUpdatedTime) { this.lastUpdatedTime = lastUpdatedTime; return this; } /** * The time when this Item&#39;s data was last retrieved from the financial institution. * @return lastUpdatedTime **/ @javax.annotation.Nullable @ApiModelProperty(value = "The time when this Item's data was last retrieved from the financial institution.") public OffsetDateTime getLastUpdatedTime() { return lastUpdatedTime; } public void setLastUpdatedTime(OffsetDateTime lastUpdatedTime) { this.lastUpdatedTime = lastUpdatedTime; } public CraBankIncomeItem institutionId(String institutionId) { this.institutionId = institutionId; return this; } /** * The unique identifier of the institution associated with the Item. * @return institutionId **/ @javax.annotation.Nullable @ApiModelProperty(value = "The unique identifier of the institution associated with the Item.") public String getInstitutionId() { return institutionId; } public void setInstitutionId(String institutionId) { this.institutionId = institutionId; } public CraBankIncomeItem institutionName(String institutionName) { this.institutionName = institutionName; return this; } /** * The name of the institution associated with the Item. * @return institutionName **/ @javax.annotation.Nullable @ApiModelProperty(value = "The name of the institution associated with the Item.") public String getInstitutionName() { return institutionName; } public void setInstitutionName(String institutionName) { this.institutionName = institutionName; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraBankIncomeItem craBankIncomeItem = (CraBankIncomeItem) o; return Objects.equals(this.itemId, craBankIncomeItem.itemId) && Objects.equals(this.bankIncomeAccounts, craBankIncomeItem.bankIncomeAccounts) && Objects.equals(this.bankIncomeSources, craBankIncomeItem.bankIncomeSources) && Objects.equals(this.lastUpdatedTime, craBankIncomeItem.lastUpdatedTime) && Objects.equals(this.institutionId, craBankIncomeItem.institutionId) && Objects.equals(this.institutionName, craBankIncomeItem.institutionName); } @Override public int hashCode() { return Objects.hash(itemId, bankIncomeAccounts, bankIncomeSources, lastUpdatedTime, institutionId, institutionName); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraBankIncomeItem {\n"); sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n"); sb.append(" bankIncomeAccounts: ").append(toIndentedString(bankIncomeAccounts)).append("\n"); sb.append(" bankIncomeSources: ").append(toIndentedString(bankIncomeSources)).append("\n"); sb.append(" lastUpdatedTime: ").append(toIndentedString(lastUpdatedTime)).append("\n"); sb.append(" institutionId: ").append(toIndentedString(institutionId)).append("\n"); sb.append(" institutionName: ").append(toIndentedString(institutionName)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IdentityVerificationAutofillAddress.java
src/main/java/com/plaid/client/model/IdentityVerificationAutofillAddress.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.AddressPurposeLabel; import com.plaid.client.model.POBoxStatus; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Even if an address has been autofilled, some fields may be null depending on the region&#39;s addressing system. For example: Addresses from the United Kingdom will not include a region Addresses from Hong Kong will not include postal code */ @ApiModel(description = "Even if an address has been autofilled, some fields may be null depending on the region's addressing system. For example: Addresses from the United Kingdom will not include a region Addresses from Hong Kong will not include postal code") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityVerificationAutofillAddress { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) private String street; public static final String SERIALIZED_NAME_STREET2 = "street2"; @SerializedName(SERIALIZED_NAME_STREET2) private String street2; public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) private String city; public static final String SERIALIZED_NAME_REGION = "region"; @SerializedName(SERIALIZED_NAME_REGION) private String region; public static final String SERIALIZED_NAME_POSTAL_CODE = "postal_code"; @SerializedName(SERIALIZED_NAME_POSTAL_CODE) private String postalCode; public static final String SERIALIZED_NAME_COUNTRY = "country"; @SerializedName(SERIALIZED_NAME_COUNTRY) private String country; public static final String SERIALIZED_NAME_PO_BOX = "po_box"; @SerializedName(SERIALIZED_NAME_PO_BOX) private POBoxStatus poBox; public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) private AddressPurposeLabel type; public IdentityVerificationAutofillAddress street(String street) { this.street = street; return this; } /** * The primary street portion of an address. If an address is provided, this field will always be filled. A string with at least one non-whitespace alphabetical character, with a max length of 80 characters. * @return street **/ @ApiModelProperty(example = "123 Main St.", required = true, value = "The primary street portion of an address. If an address is provided, this field will always be filled. A string with at least one non-whitespace alphabetical character, with a max length of 80 characters.") public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } public IdentityVerificationAutofillAddress street2(String street2) { this.street2 = street2; return this; } /** * Extra street information, like an apartment or suite number. If provided, a string with at least one non-whitespace character, with a max length of 50 characters. * @return street2 **/ @javax.annotation.Nullable @ApiModelProperty(example = "Unit 42", required = true, value = "Extra street information, like an apartment or suite number. If provided, a string with at least one non-whitespace character, with a max length of 50 characters.") public String getStreet2() { return street2; } public void setStreet2(String street2) { this.street2 = street2; } public IdentityVerificationAutofillAddress city(String city) { this.city = city; return this; } /** * City from the address. A string with at least one non-whitespace alphabetical character, with a max length of 100 characters. * @return city **/ @javax.annotation.Nullable @ApiModelProperty(example = "Pawnee", required = true, value = "City from the address. A string with at least one non-whitespace alphabetical character, with a max length of 100 characters.") public String getCity() { return city; } public void setCity(String city) { this.city = city; } public IdentityVerificationAutofillAddress region(String region) { this.region = region; return this; } /** * A subdivision code. \&quot;Subdivision\&quot; is a generic term for \&quot;state\&quot;, \&quot;province\&quot;, \&quot;prefecture\&quot;, \&quot;zone\&quot;, etc. For the list of valid codes, see [country subdivision codes](https://plaid.com/documents/country_subdivision_codes.json). Country prefixes are omitted, since they are inferred from the &#x60;country&#x60; field. * @return region **/ @javax.annotation.Nullable @ApiModelProperty(example = "IN", required = true, value = "A subdivision code. \"Subdivision\" is a generic term for \"state\", \"province\", \"prefecture\", \"zone\", etc. For the list of valid codes, see [country subdivision codes](https://plaid.com/documents/country_subdivision_codes.json). Country prefixes are omitted, since they are inferred from the `country` field.") public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public IdentityVerificationAutofillAddress postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * The postal code for the associated address. Between 2 and 10 alphanumeric characters. For US-based addresses this must be 5 numeric digits. * @return postalCode **/ @javax.annotation.Nullable @ApiModelProperty(example = "46001", required = true, value = "The postal code for the associated address. Between 2 and 10 alphanumeric characters. For US-based addresses this must be 5 numeric digits.") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public IdentityVerificationAutofillAddress country(String country) { this.country = country; return this; } /** * Valid, capitalized, two-letter ISO code representing the country of this object. Must be in ISO 3166-1 alpha-2 form. * @return country **/ @ApiModelProperty(example = "US", required = true, value = "Valid, capitalized, two-letter ISO code representing the country of this object. Must be in ISO 3166-1 alpha-2 form.") public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public IdentityVerificationAutofillAddress poBox(POBoxStatus poBox) { this.poBox = poBox; return this; } /** * Get poBox * @return poBox **/ @ApiModelProperty(required = true, value = "") public POBoxStatus getPoBox() { return poBox; } public void setPoBox(POBoxStatus poBox) { this.poBox = poBox; } public IdentityVerificationAutofillAddress type(AddressPurposeLabel type) { this.type = type; return this; } /** * Get type * @return type **/ @ApiModelProperty(required = true, value = "") public AddressPurposeLabel getType() { return type; } public void setType(AddressPurposeLabel type) { this.type = type; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IdentityVerificationAutofillAddress identityVerificationAutofillAddress = (IdentityVerificationAutofillAddress) o; return Objects.equals(this.street, identityVerificationAutofillAddress.street) && Objects.equals(this.street2, identityVerificationAutofillAddress.street2) && Objects.equals(this.city, identityVerificationAutofillAddress.city) && Objects.equals(this.region, identityVerificationAutofillAddress.region) && Objects.equals(this.postalCode, identityVerificationAutofillAddress.postalCode) && Objects.equals(this.country, identityVerificationAutofillAddress.country) && Objects.equals(this.poBox, identityVerificationAutofillAddress.poBox) && Objects.equals(this.type, identityVerificationAutofillAddress.type); } @Override public int hashCode() { return Objects.hash(street, street2, city, region, postalCode, country, poBox, type); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityVerificationAutofillAddress {\n"); sb.append(" street: ").append(toIndentedString(street)).append("\n"); sb.append(" street2: ").append(toIndentedString(street2)).append("\n"); sb.append(" city: ").append(toIndentedString(city)).append("\n"); sb.append(" region: ").append(toIndentedString(region)).append("\n"); sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n"); sb.append(" country: ").append(toIndentedString(country)).append("\n"); sb.append(" poBox: ").append(toIndentedString(poBox)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetReportInvestmentTransaction.java
src/main/java/com/plaid/client/model/AssetReportInvestmentTransaction.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.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; /** * 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 AssetReportInvestmentTransaction { 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_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_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_VESTED_QUANTITY = "vested_quantity"; @SerializedName(SERIALIZED_NAME_VESTED_QUANTITY) private Double vestedQuantity; public static final String SERIALIZED_NAME_VESTED_VALUE = "vested_value"; @SerializedName(SERIALIZED_NAME_VESTED_VALUE) private Double vestedValue; 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 AssetReportInvestmentTransaction 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 AssetReportInvestmentTransaction 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 AssetReportInvestmentTransaction 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 AssetReportInvestmentTransaction date(LocalDate date) { this.date = date; return this; } /** * The [ISO 8601](https://wikipedia.org/wiki/ISO_8601) posting date for the transaction. * @return date **/ @ApiModelProperty(required = true, value = "The [ISO 8601](https://wikipedia.org/wiki/ISO_8601) posting date for the transaction.") public LocalDate getDate() { return date; } public void setDate(LocalDate date) { this.date = date; } public AssetReportInvestmentTransaction 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 AssetReportInvestmentTransaction 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 AssetReportInvestmentTransaction vestedQuantity(Double vestedQuantity) { this.vestedQuantity = vestedQuantity; return this; } /** * The total quantity of vested assets held, as reported by the financial institution. Vested assets are only associated with [equities](https://plaid.com/docs/api/products/investments/#investments-holdings-get-response-securities-type). * @return vestedQuantity **/ @ApiModelProperty(required = true, value = "The total quantity of vested assets held, as reported by the financial institution. Vested assets are only associated with [equities](https://plaid.com/docs/api/products/investments/#investments-holdings-get-response-securities-type).") public Double getVestedQuantity() { return vestedQuantity; } public void setVestedQuantity(Double vestedQuantity) { this.vestedQuantity = vestedQuantity; } public AssetReportInvestmentTransaction vestedValue(Double vestedValue) { this.vestedValue = vestedValue; return this; } /** * The value of the vested holdings as reported by the institution. * @return vestedValue **/ @ApiModelProperty(required = true, value = "The value of the vested holdings as reported by the institution.") public Double getVestedValue() { return vestedValue; } public void setVestedValue(Double vestedValue) { this.vestedValue = vestedValue; } public AssetReportInvestmentTransaction 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 AssetReportInvestmentTransaction 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 AssetReportInvestmentTransaction 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 AssetReportInvestmentTransaction 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 AssetReportInvestmentTransaction 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 AssetReportInvestmentTransaction 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 AssetReportInvestmentTransaction 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; } AssetReportInvestmentTransaction assetReportInvestmentTransaction = (AssetReportInvestmentTransaction) o; return Objects.equals(this.investmentTransactionId, assetReportInvestmentTransaction.investmentTransactionId) && Objects.equals(this.accountId, assetReportInvestmentTransaction.accountId) && Objects.equals(this.securityId, assetReportInvestmentTransaction.securityId) && Objects.equals(this.date, assetReportInvestmentTransaction.date) && Objects.equals(this.name, assetReportInvestmentTransaction.name) && Objects.equals(this.quantity, assetReportInvestmentTransaction.quantity) && Objects.equals(this.vestedQuantity, assetReportInvestmentTransaction.vestedQuantity) && Objects.equals(this.vestedValue, assetReportInvestmentTransaction.vestedValue) && Objects.equals(this.amount, assetReportInvestmentTransaction.amount) && Objects.equals(this.price, assetReportInvestmentTransaction.price) && Objects.equals(this.fees, assetReportInvestmentTransaction.fees) && Objects.equals(this.type, assetReportInvestmentTransaction.type) && Objects.equals(this.subtype, assetReportInvestmentTransaction.subtype) && Objects.equals(this.isoCurrencyCode, assetReportInvestmentTransaction.isoCurrencyCode) && Objects.equals(this.unofficialCurrencyCode, assetReportInvestmentTransaction.unofficialCurrencyCode); } @Override public int hashCode() { return Objects.hash(investmentTransactionId, accountId, securityId, date, name, quantity, vestedQuantity, vestedValue, amount, price, fees, type, subtype, isoCurrencyCode, unofficialCurrencyCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AssetReportInvestmentTransaction {\n"); sb.append(" investmentTransactionId: ").append(toIndentedString(investmentTransactionId)).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(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" quantity: ").append(toIndentedString(quantity)).append("\n"); sb.append(" vestedQuantity: ").append(toIndentedString(vestedQuantity)).append("\n"); sb.append(" vestedValue: ").append(toIndentedString(vestedValue)).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/BusinessAccountAllOf.java
src/main/java/com/plaid/client/model/BusinessAccountAllOf.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.Owner; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * BusinessAccountAllOf */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BusinessAccountAllOf { public static final String SERIALIZED_NAME_OWNERS = "owners"; @SerializedName(SERIALIZED_NAME_OWNERS) private List<Owner> owners = null; public BusinessAccountAllOf owners(List<Owner> owners) { this.owners = owners; return this; } public BusinessAccountAllOf addOwnersItem(Owner ownersItem) { if (this.owners == null) { this.owners = new ArrayList<>(); } this.owners.add(ownersItem); return this; } /** * Data returned by the financial institution about the account owner or owners. For business accounts, the name reported may be either the name of the individual or the name of the business, depending on the institution. Multiple owners on a single account will be represented in the same owner object, not in multiple owner objects within the array. * @return owners **/ @javax.annotation.Nullable @ApiModelProperty(value = "Data returned by the financial institution about the account owner or owners. For business accounts, the name reported may be either the name of the individual or the name of the business, depending on the institution. Multiple owners on a single account will be represented in the same owner object, not in multiple owner objects within the array.") public List<Owner> getOwners() { return owners; } public void setOwners(List<Owner> owners) { this.owners = owners; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BusinessAccountAllOf businessAccountAllOf = (BusinessAccountAllOf) o; return Objects.equals(this.owners, businessAccountAllOf.owners); } @Override public int hashCode() { return Objects.hash(owners); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BusinessAccountAllOf {\n"); sb.append(" owners: ").append(toIndentedString(owners)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ISOCurrencyCode.java
src/main/java/com/plaid/client/model/ISOCurrencyCode.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 ISO-4217 currency code. */ @JsonAdapter(ISOCurrencyCode.Adapter.class) public enum ISOCurrencyCode { USD("USD"), // 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; ISOCurrencyCode(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static ISOCurrencyCode fromValue(String value) { for (ISOCurrencyCode b : ISOCurrencyCode.values()) { if (b.value.equals(value)) { return b; } } return ISOCurrencyCode.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<ISOCurrencyCode> { @Override public void write(final JsonWriter jsonWriter, final ISOCurrencyCode enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public ISOCurrencyCode read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return ISOCurrencyCode.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/TrustIndex.java
src/main/java/com/plaid/client/model/TrustIndex.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.TrustIndexSubscores; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Represents a calculate Trust Index Score. */ @ApiModel(description = "Represents a calculate Trust Index Score.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TrustIndex { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) private Integer score; public static final String SERIALIZED_NAME_MODEL = "model"; @SerializedName(SERIALIZED_NAME_MODEL) private String model; public static final String SERIALIZED_NAME_SUBSCORES = "subscores"; @SerializedName(SERIALIZED_NAME_SUBSCORES) private TrustIndexSubscores subscores; public TrustIndex score(Integer score) { this.score = score; return this; } /** * The overall trust index score. * @return score **/ @ApiModelProperty(required = true, value = "The overall trust index score.") public Integer getScore() { return score; } public void setScore(Integer score) { this.score = score; } public TrustIndex model(String model) { this.model = model; return this; } /** * The versioned name of the Trust Index model used for scoring. * @return model **/ @ApiModelProperty(required = true, value = "The versioned name of the Trust Index model used for scoring.") public String getModel() { return model; } public void setModel(String model) { this.model = model; } public TrustIndex subscores(TrustIndexSubscores subscores) { this.subscores = subscores; return this; } /** * Get subscores * @return subscores **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public TrustIndexSubscores getSubscores() { return subscores; } public void setSubscores(TrustIndexSubscores subscores) { this.subscores = subscores; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TrustIndex trustIndex = (TrustIndex) o; return Objects.equals(this.score, trustIndex.score) && Objects.equals(this.model, trustIndex.model) && Objects.equals(this.subscores, trustIndex.subscores); } @Override public int hashCode() { return Objects.hash(score, model, subscores); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TrustIndex {\n"); sb.append(" score: ").append(toIndentedString(score)).append("\n"); sb.append(" model: ").append(toIndentedString(model)).append("\n"); sb.append(" subscores: ").append(toIndentedString(subscores)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IdentityVerificationUserAddress.java
src/main/java/com/plaid/client/model/IdentityVerificationUserAddress.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import 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; /** * Even if an address has been collected, some fields may be null depending on the region&#39;s addressing system. For example: Addresses from the United Kingdom will not include a region Addresses from Hong Kong will not include postal code */ @ApiModel(description = "Even if an address has been collected, some fields may be null depending on the region's addressing system. For example: Addresses from the United Kingdom will not include a region Addresses from Hong Kong will not include postal code") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class IdentityVerificationUserAddress { public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) private String street; public static final String SERIALIZED_NAME_STREET2 = "street2"; @SerializedName(SERIALIZED_NAME_STREET2) private String street2; public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) private String city; public static final String SERIALIZED_NAME_REGION = "region"; @SerializedName(SERIALIZED_NAME_REGION) private String region; public static final String SERIALIZED_NAME_POSTAL_CODE = "postal_code"; @SerializedName(SERIALIZED_NAME_POSTAL_CODE) private String postalCode; public static final String SERIALIZED_NAME_COUNTRY = "country"; @SerializedName(SERIALIZED_NAME_COUNTRY) private String country; public IdentityVerificationUserAddress street(String street) { this.street = street; return this; } /** * The primary street portion of an address. If an address is provided, this field will always be filled. A string with at least one non-whitespace alphabetical character, with a max length of 80 characters. * @return street **/ @javax.annotation.Nullable @ApiModelProperty(example = "123 Main St.", required = true, value = "The primary street portion of an address. If an address is provided, this field will always be filled. A string with at least one non-whitespace alphabetical character, with a max length of 80 characters.") public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } public IdentityVerificationUserAddress street2(String street2) { this.street2 = street2; return this; } /** * Extra street information, like an apartment or suite number. If provided, a string with at least one non-whitespace character, with a max length of 50 characters. * @return street2 **/ @javax.annotation.Nullable @ApiModelProperty(example = "Unit 42", required = true, value = "Extra street information, like an apartment or suite number. If provided, a string with at least one non-whitespace character, with a max length of 50 characters.") public String getStreet2() { return street2; } public void setStreet2(String street2) { this.street2 = street2; } public IdentityVerificationUserAddress city(String city) { this.city = city; return this; } /** * City from the address. A string with at least one non-whitespace alphabetical character, with a max length of 100 characters. * @return city **/ @javax.annotation.Nullable @ApiModelProperty(example = "Pawnee", required = true, value = "City from the address. A string with at least one non-whitespace alphabetical character, with a max length of 100 characters.") public String getCity() { return city; } public void setCity(String city) { this.city = city; } public IdentityVerificationUserAddress region(String region) { this.region = region; return this; } /** * A subdivision code. \&quot;Subdivision\&quot; is a generic term for \&quot;state\&quot;, \&quot;province\&quot;, \&quot;prefecture\&quot;, \&quot;zone\&quot;, etc. For the list of valid codes, see [country subdivision codes](https://plaid.com/documents/country_subdivision_codes.json). Country prefixes are omitted, since they are inferred from the &#x60;country&#x60; field. * @return region **/ @javax.annotation.Nullable @ApiModelProperty(example = "IN", required = true, value = "A subdivision code. \"Subdivision\" is a generic term for \"state\", \"province\", \"prefecture\", \"zone\", etc. For the list of valid codes, see [country subdivision codes](https://plaid.com/documents/country_subdivision_codes.json). Country prefixes are omitted, since they are inferred from the `country` field.") public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public IdentityVerificationUserAddress postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * The postal code for the associated address. Between 2 and 10 alphanumeric characters. For US-based addresses this must be 5 numeric digits. * @return postalCode **/ @javax.annotation.Nullable @ApiModelProperty(example = "46001", required = true, value = "The postal code for the associated address. Between 2 and 10 alphanumeric characters. For US-based addresses this must be 5 numeric digits.") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public IdentityVerificationUserAddress country(String country) { this.country = country; return this; } /** * Valid, capitalized, two-letter ISO code representing the country of this object. Must be in ISO 3166-1 alpha-2 form. * @return country **/ @ApiModelProperty(example = "US", required = true, value = "Valid, capitalized, two-letter ISO code representing the country of this object. Must be in ISO 3166-1 alpha-2 form.") public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } IdentityVerificationUserAddress identityVerificationUserAddress = (IdentityVerificationUserAddress) o; return Objects.equals(this.street, identityVerificationUserAddress.street) && Objects.equals(this.street2, identityVerificationUserAddress.street2) && Objects.equals(this.city, identityVerificationUserAddress.city) && Objects.equals(this.region, identityVerificationUserAddress.region) && Objects.equals(this.postalCode, identityVerificationUserAddress.postalCode) && Objects.equals(this.country, identityVerificationUserAddress.country); } @Override public int hashCode() { return Objects.hash(street, street2, city, region, postalCode, country); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class IdentityVerificationUserAddress {\n"); sb.append(" street: ").append(toIndentedString(street)).append("\n"); sb.append(" street2: ").append(toIndentedString(street2)).append("\n"); sb.append(" city: ").append(toIndentedString(city)).append("\n"); sb.append(" region: ").append(toIndentedString(region)).append("\n"); sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n"); sb.append(" country: ").append(toIndentedString(country)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferRecurringCancelRequest.java
src/main/java/com/plaid/client/model/TransferRecurringCancelRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the request schema for &#x60;/transfer/recurring/cancel&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/recurring/cancel`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferRecurringCancelRequest { 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_RECURRING_TRANSFER_ID = "recurring_transfer_id"; @SerializedName(SERIALIZED_NAME_RECURRING_TRANSFER_ID) private String recurringTransferId; public TransferRecurringCancelRequest 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 TransferRecurringCancelRequest 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 TransferRecurringCancelRequest recurringTransferId(String recurringTransferId) { this.recurringTransferId = recurringTransferId; return this; } /** * Plaid’s unique identifier for a recurring transfer. * @return recurringTransferId **/ @ApiModelProperty(required = true, value = "Plaid’s unique identifier for a recurring transfer.") public String getRecurringTransferId() { return recurringTransferId; } public void setRecurringTransferId(String recurringTransferId) { this.recurringTransferId = recurringTransferId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferRecurringCancelRequest transferRecurringCancelRequest = (TransferRecurringCancelRequest) o; return Objects.equals(this.clientId, transferRecurringCancelRequest.clientId) && Objects.equals(this.secret, transferRecurringCancelRequest.secret) && Objects.equals(this.recurringTransferId, transferRecurringCancelRequest.recurringTransferId); } @Override public int hashCode() { return Objects.hash(clientId, secret, recurringTransferId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferRecurringCancelRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" recurringTransferId: ").append(toIndentedString(recurringTransferId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BusinessKYBCheck.java
src/main/java/com/plaid/client/model/BusinessKYBCheck.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.BusinessFieldMatchSummary; import com.plaid.client.model.BusinessKYBMatchDetails; import com.plaid.client.model.BusinessVerificationStatusKYBCheck; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Results from the KYB (Know Your Business) identity verification check */ @ApiModel(description = "Results from the KYB (Know Your Business) identity verification check") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BusinessKYBCheck { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private BusinessVerificationStatusKYBCheck status; public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) private Integer score; public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) private BusinessFieldMatchSummary name; public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) private BusinessFieldMatchSummary address; public static final String SERIALIZED_NAME_WEBSITE = "website"; @SerializedName(SERIALIZED_NAME_WEBSITE) private BusinessFieldMatchSummary website; public static final String SERIALIZED_NAME_MATCH_DETAILS = "match_details"; @SerializedName(SERIALIZED_NAME_MATCH_DETAILS) private BusinessKYBMatchDetails matchDetails; public BusinessKYBCheck status(BusinessVerificationStatusKYBCheck status) { this.status = status; return this; } /** * Get status * @return status **/ @ApiModelProperty(required = true, value = "") public BusinessVerificationStatusKYBCheck getStatus() { return status; } public void setStatus(BusinessVerificationStatusKYBCheck status) { this.status = status; } public BusinessKYBCheck score(Integer score) { this.score = score; return this; } /** * A score from 0 to 100 indicating the confidence in KYB (Know Your Business) identity assessment for the business * @return score **/ @ApiModelProperty(example = "85", required = true, value = "A score from 0 to 100 indicating the confidence in KYB (Know Your Business) identity assessment for the business") public Integer getScore() { return score; } public void setScore(Integer score) { this.score = score; } public BusinessKYBCheck name(BusinessFieldMatchSummary name) { this.name = name; return this; } /** * Get name * @return name **/ @ApiModelProperty(required = true, value = "") public BusinessFieldMatchSummary getName() { return name; } public void setName(BusinessFieldMatchSummary name) { this.name = name; } public BusinessKYBCheck address(BusinessFieldMatchSummary address) { this.address = address; return this; } /** * Get address * @return address **/ @ApiModelProperty(required = true, value = "") public BusinessFieldMatchSummary getAddress() { return address; } public void setAddress(BusinessFieldMatchSummary address) { this.address = address; } public BusinessKYBCheck website(BusinessFieldMatchSummary website) { this.website = website; return this; } /** * Get website * @return website **/ @ApiModelProperty(required = true, value = "") public BusinessFieldMatchSummary getWebsite() { return website; } public void setWebsite(BusinessFieldMatchSummary website) { this.website = website; } public BusinessKYBCheck matchDetails(BusinessKYBMatchDetails matchDetails) { this.matchDetails = matchDetails; return this; } /** * Get matchDetails * @return matchDetails **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public BusinessKYBMatchDetails getMatchDetails() { return matchDetails; } public void setMatchDetails(BusinessKYBMatchDetails matchDetails) { this.matchDetails = matchDetails; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BusinessKYBCheck businessKYBCheck = (BusinessKYBCheck) o; return Objects.equals(this.status, businessKYBCheck.status) && Objects.equals(this.score, businessKYBCheck.score) && Objects.equals(this.name, businessKYBCheck.name) && Objects.equals(this.address, businessKYBCheck.address) && Objects.equals(this.website, businessKYBCheck.website) && Objects.equals(this.matchDetails, businessKYBCheck.matchDetails); } @Override public int hashCode() { return Objects.hash(status, score, name, address, website, matchDetails); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BusinessKYBCheck {\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" score: ").append(toIndentedString(score)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" address: ").append(toIndentedString(address)).append("\n"); sb.append(" website: ").append(toIndentedString(website)).append("\n"); sb.append(" matchDetails: ").append(toIndentedString(matchDetails)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraPartnerInsightsPrism.java
src/main/java/com/plaid/client/model/CraPartnerInsightsPrism.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.PrismCashScore; import com.plaid.client.model.PrismDetect; import com.plaid.client.model.PrismExtend; import com.plaid.client.model.PrismFirstDetect; import com.plaid.client.model.PrismInsights; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The Prism Data insights for the user. */ @ApiModel(description = "The Prism Data insights for the user.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraPartnerInsightsPrism { public static final String SERIALIZED_NAME_INSIGHTS = "insights"; @SerializedName(SERIALIZED_NAME_INSIGHTS) private PrismInsights insights; public static final String SERIALIZED_NAME_CASH_SCORE = "cash_score"; @SerializedName(SERIALIZED_NAME_CASH_SCORE) private PrismCashScore cashScore; public static final String SERIALIZED_NAME_EXTEND = "extend"; @SerializedName(SERIALIZED_NAME_EXTEND) private PrismExtend extend; public static final String SERIALIZED_NAME_FIRST_DETECT = "first_detect"; @SerializedName(SERIALIZED_NAME_FIRST_DETECT) private PrismFirstDetect firstDetect; public static final String SERIALIZED_NAME_DETECT = "detect"; @SerializedName(SERIALIZED_NAME_DETECT) private PrismDetect detect; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private String status; public CraPartnerInsightsPrism insights(PrismInsights insights) { this.insights = insights; return this; } /** * Get insights * @return insights **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PrismInsights getInsights() { return insights; } public void setInsights(PrismInsights insights) { this.insights = insights; } public CraPartnerInsightsPrism cashScore(PrismCashScore cashScore) { this.cashScore = cashScore; return this; } /** * Get cashScore * @return cashScore **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PrismCashScore getCashScore() { return cashScore; } public void setCashScore(PrismCashScore cashScore) { this.cashScore = cashScore; } public CraPartnerInsightsPrism extend(PrismExtend extend) { this.extend = extend; return this; } /** * Get extend * @return extend **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PrismExtend getExtend() { return extend; } public void setExtend(PrismExtend extend) { this.extend = extend; } public CraPartnerInsightsPrism firstDetect(PrismFirstDetect firstDetect) { this.firstDetect = firstDetect; return this; } /** * Get firstDetect * @return firstDetect **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PrismFirstDetect getFirstDetect() { return firstDetect; } public void setFirstDetect(PrismFirstDetect firstDetect) { this.firstDetect = firstDetect; } public CraPartnerInsightsPrism detect(PrismDetect detect) { this.detect = detect; return this; } /** * Get detect * @return detect **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public PrismDetect getDetect() { return detect; } public void setDetect(PrismDetect detect) { this.detect = detect; } public CraPartnerInsightsPrism status(String status) { this.status = status; return this; } /** * Details on whether the Prism Data attributes succeeded or failed to be generated. * @return status **/ @ApiModelProperty(required = true, value = "Details on whether the Prism Data attributes succeeded or failed to be generated.") public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CraPartnerInsightsPrism craPartnerInsightsPrism = (CraPartnerInsightsPrism) o; return Objects.equals(this.insights, craPartnerInsightsPrism.insights) && Objects.equals(this.cashScore, craPartnerInsightsPrism.cashScore) && Objects.equals(this.extend, craPartnerInsightsPrism.extend) && Objects.equals(this.firstDetect, craPartnerInsightsPrism.firstDetect) && Objects.equals(this.detect, craPartnerInsightsPrism.detect) && Objects.equals(this.status, craPartnerInsightsPrism.status); } @Override public int hashCode() { return Objects.hash(insights, cashScore, extend, firstDetect, detect, status); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraPartnerInsightsPrism {\n"); sb.append(" insights: ").append(toIndentedString(insights)).append("\n"); sb.append(" cashScore: ").append(toIndentedString(cashScore)).append("\n"); sb.append(" extend: ").append(toIndentedString(extend)).append("\n"); sb.append(" firstDetect: ").append(toIndentedString(firstDetect)).append("\n"); sb.append(" detect: ").append(toIndentedString(detect)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SandboxTransferTestClockListRequest.java
src/main/java/com/plaid/client/model/SandboxTransferTestClockListRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; /** * Defines the request schema for &#x60;/sandbox/transfer/test_clock/list&#x60; */ @ApiModel(description = "Defines the request schema for `/sandbox/transfer/test_clock/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class SandboxTransferTestClockListRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_START_VIRTUAL_TIME = "start_virtual_time"; @SerializedName(SERIALIZED_NAME_START_VIRTUAL_TIME) private OffsetDateTime startVirtualTime; public static final String SERIALIZED_NAME_END_VIRTUAL_TIME = "end_virtual_time"; @SerializedName(SERIALIZED_NAME_END_VIRTUAL_TIME) private OffsetDateTime endVirtualTime; 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 SandboxTransferTestClockListRequest 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 SandboxTransferTestClockListRequest 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 SandboxTransferTestClockListRequest startVirtualTime(OffsetDateTime startVirtualTime) { this.startVirtualTime = startVirtualTime; return this; } /** * The start virtual timestamp of test clocks to return. This should be in RFC 3339 format (i.e. &#x60;2019-12-06T22:35:49Z&#x60;) * @return startVirtualTime **/ @javax.annotation.Nullable @ApiModelProperty(value = "The start virtual timestamp of test clocks to return. This should be in RFC 3339 format (i.e. `2019-12-06T22:35:49Z`)") public OffsetDateTime getStartVirtualTime() { return startVirtualTime; } public void setStartVirtualTime(OffsetDateTime startVirtualTime) { this.startVirtualTime = startVirtualTime; } public SandboxTransferTestClockListRequest endVirtualTime(OffsetDateTime endVirtualTime) { this.endVirtualTime = endVirtualTime; return this; } /** * The end virtual timestamp of test clocks to return. This should be in RFC 3339 format (i.e. &#x60;2019-12-06T22:35:49Z&#x60;) * @return endVirtualTime **/ @javax.annotation.Nullable @ApiModelProperty(value = "The end virtual timestamp of test clocks to return. This should be in RFC 3339 format (i.e. `2019-12-06T22:35:49Z`)") public OffsetDateTime getEndVirtualTime() { return endVirtualTime; } public void setEndVirtualTime(OffsetDateTime endVirtualTime) { this.endVirtualTime = endVirtualTime; } public SandboxTransferTestClockListRequest count(Integer count) { this.count = count; return this; } /** * The maximum number of test clocks to return. * minimum: 1 * maximum: 25 * @return count **/ @javax.annotation.Nullable @ApiModelProperty(value = "The maximum number of test clocks to return.") public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } public SandboxTransferTestClockListRequest offset(Integer offset) { this.offset = offset; return this; } /** * The number of test clocks to skip before returning results. * minimum: 0 * @return offset **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of test clocks to skip before returning results.") public Integer getOffset() { return offset; } public void setOffset(Integer offset) { this.offset = offset; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SandboxTransferTestClockListRequest sandboxTransferTestClockListRequest = (SandboxTransferTestClockListRequest) o; return Objects.equals(this.clientId, sandboxTransferTestClockListRequest.clientId) && Objects.equals(this.secret, sandboxTransferTestClockListRequest.secret) && Objects.equals(this.startVirtualTime, sandboxTransferTestClockListRequest.startVirtualTime) && Objects.equals(this.endVirtualTime, sandboxTransferTestClockListRequest.endVirtualTime) && Objects.equals(this.count, sandboxTransferTestClockListRequest.count) && Objects.equals(this.offset, sandboxTransferTestClockListRequest.offset); } @Override public int hashCode() { return Objects.hash(clientId, secret, startVirtualTime, endVirtualTime, count, offset); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SandboxTransferTestClockListRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" startVirtualTime: ").append(toIndentedString(startVirtualTime)).append("\n"); sb.append(" endVirtualTime: ").append(toIndentedString(endVirtualTime)).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/CreditFreddieMacReportsGetResponse.java
src/main/java/com/plaid/client/model/CreditFreddieMacReportsGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CreditFreddieMacVerificationOfAssetsDeal; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.math.BigDecimal; /** * CreditFreddieMacReportsGetResponse defines the response schema for &#x60;/credit/freddie_mac/reports/get&#x60; */ @ApiModel(description = "CreditFreddieMacReportsGetResponse defines the response schema for `/credit/freddie_mac/reports/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CreditFreddieMacReportsGetResponse { public static final String SERIALIZED_NAME_D_E_A_L = "DEAL"; @SerializedName(SERIALIZED_NAME_D_E_A_L) private CreditFreddieMacVerificationOfAssetsDeal DEAL; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public static final String SERIALIZED_NAME_SCHEMA_VERSION = "SchemaVersion"; @SerializedName(SERIALIZED_NAME_SCHEMA_VERSION) private Double schemaVersion; public CreditFreddieMacReportsGetResponse DEAL(CreditFreddieMacVerificationOfAssetsDeal DEAL) { this.DEAL = DEAL; return this; } /** * Get DEAL * @return DEAL **/ @ApiModelProperty(required = true, value = "") public CreditFreddieMacVerificationOfAssetsDeal getDEAL() { return DEAL; } public void setDEAL(CreditFreddieMacVerificationOfAssetsDeal DEAL) { this.DEAL = DEAL; } public CreditFreddieMacReportsGetResponse 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 CreditFreddieMacReportsGetResponse schemaVersion(Double schemaVersion) { this.schemaVersion = schemaVersion; return this; } /** * The Verification Of Assets (VOA) schema version. * @return schemaVersion **/ @ApiModelProperty(required = true, value = "The Verification Of Assets (VOA) schema version.") public Double getSchemaVersion() { return schemaVersion; } public void setSchemaVersion(Double schemaVersion) { this.schemaVersion = schemaVersion; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } CreditFreddieMacReportsGetResponse creditFreddieMacReportsGetResponse = (CreditFreddieMacReportsGetResponse) o; return Objects.equals(this.DEAL, creditFreddieMacReportsGetResponse.DEAL) && Objects.equals(this.requestId, creditFreddieMacReportsGetResponse.requestId) && Objects.equals(this.schemaVersion, creditFreddieMacReportsGetResponse.schemaVersion); } @Override public int hashCode() { return Objects.hash(DEAL, requestId, schemaVersion); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CreditFreddieMacReportsGetResponse {\n"); sb.append(" DEAL: ").append(toIndentedString(DEAL)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append(" schemaVersion: ").append(toIndentedString(schemaVersion)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferRefundGetRequest.java
src/main/java/com/plaid/client/model/TransferRefundGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the request schema for &#x60;/transfer/refund/get&#x60; */ @ApiModel(description = "Defines the request schema for `/transfer/refund/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferRefundGetRequest { 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_REFUND_ID = "refund_id"; @SerializedName(SERIALIZED_NAME_REFUND_ID) private String refundId; public TransferRefundGetRequest 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 TransferRefundGetRequest 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 TransferRefundGetRequest refundId(String refundId) { this.refundId = refundId; return this; } /** * Plaid’s unique identifier for a refund. * @return refundId **/ @ApiModelProperty(required = true, value = "Plaid’s unique identifier for a refund.") public String getRefundId() { return refundId; } public void setRefundId(String refundId) { this.refundId = refundId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferRefundGetRequest transferRefundGetRequest = (TransferRefundGetRequest) o; return Objects.equals(this.clientId, transferRefundGetRequest.clientId) && Objects.equals(this.secret, transferRefundGetRequest.secret) && Objects.equals(this.refundId, transferRefundGetRequest.refundId); } @Override public int hashCode() { return Objects.hash(clientId, secret, refundId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferRefundGetRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" refundId: ").append(toIndentedString(refundId)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/Cause.java
src/main/java/com/plaid/client/model/Cause.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.CauseAllOf; import com.plaid.client.model.PlaidError; import com.plaid.client.model.PlaidErrorType; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * 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 Cause { public static final String SERIALIZED_NAME_ERROR_TYPE = "error_type"; @SerializedName(SERIALIZED_NAME_ERROR_TYPE) private PlaidErrorType 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_CODE_REASON = "error_code_reason"; @SerializedName(SERIALIZED_NAME_ERROR_CODE_REASON) private String errorCodeReason; 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_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public static final String SERIALIZED_NAME_CAUSES = "causes"; @SerializedName(SERIALIZED_NAME_CAUSES) private List<Object> causes = null; public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) private Integer status; public static final String SERIALIZED_NAME_DOCUMENTATION_URL = "documentation_url"; @SerializedName(SERIALIZED_NAME_DOCUMENTATION_URL) private String documentationUrl; public static final String SERIALIZED_NAME_SUGGESTED_ACTION = "suggested_action"; @SerializedName(SERIALIZED_NAME_SUGGESTED_ACTION) private String suggestedAction; public static final String SERIALIZED_NAME_REQUIRED_ACCOUNT_SUBTYPES = "required_account_subtypes"; @SerializedName(SERIALIZED_NAME_REQUIRED_ACCOUNT_SUBTYPES) private List<String> requiredAccountSubtypes = null; public static final String SERIALIZED_NAME_PROVIDED_ACCOUNT_SUBTYPES = "provided_account_subtypes"; @SerializedName(SERIALIZED_NAME_PROVIDED_ACCOUNT_SUBTYPES) private List<String> providedAccountSubtypes = null; public static final String SERIALIZED_NAME_ITEM_ID = "item_id"; @SerializedName(SERIALIZED_NAME_ITEM_ID) private String itemId; public Cause errorType(PlaidErrorType errorType) { this.errorType = errorType; return this; } /** * Get errorType * @return errorType **/ @ApiModelProperty(required = true, value = "") public PlaidErrorType getErrorType() { return errorType; } public void setErrorType(PlaidErrorType errorType) { this.errorType = errorType; } public Cause errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * The particular error code. Safe for programmatic use. * @return errorCode **/ @ApiModelProperty(required = true, value = "The particular error code. Safe for programmatic use.") public String getErrorCode() { return errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Cause errorCodeReason(String errorCodeReason) { this.errorCodeReason = errorCodeReason; return this; } /** * The specific reason for the error code. Currently, reasons are only supported OAuth-based item errors; &#x60;null&#x60; will be returned otherwise. Safe for programmatic use. Possible values: &#x60;OAUTH_INVALID_TOKEN&#x60;: The user’s OAuth connection to this institution has been invalidated. &#x60;OAUTH_CONSENT_EXPIRED&#x60;: The user&#39;s access consent for this OAuth connection to this institution has expired. &#x60;OAUTH_USER_REVOKED&#x60;: The user’s OAuth connection to this institution is invalid because the user revoked their connection. * @return errorCodeReason **/ @javax.annotation.Nullable @ApiModelProperty(value = "The specific reason for the error code. Currently, reasons are only supported OAuth-based item errors; `null` will be returned otherwise. Safe for programmatic use. Possible values: `OAUTH_INVALID_TOKEN`: The user’s OAuth connection to this institution has been invalidated. `OAUTH_CONSENT_EXPIRED`: The user's access consent for this OAuth connection to this institution has expired. `OAUTH_USER_REVOKED`: The user’s OAuth connection to this institution is invalid because the user revoked their connection.") public String getErrorCodeReason() { return errorCodeReason; } public void setErrorCodeReason(String errorCodeReason) { this.errorCodeReason = errorCodeReason; } public Cause 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 Cause displayMessage(String displayMessage) { this.displayMessage = displayMessage; return this; } /** * A user-friendly representation of the error code. &#x60;null&#x60; if the error is not related to user action. This may change over time and is not safe for programmatic use. * @return displayMessage **/ @javax.annotation.Nullable @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 Cause requestId(String requestId) { this.requestId = requestId; return this; } /** * A unique ID identifying the request, to be used for troubleshooting purposes. This field will be omitted in errors provided by webhooks. * @return requestId **/ @javax.annotation.Nullable @ApiModelProperty(value = "A unique ID identifying the request, to be used for troubleshooting purposes. This field will be omitted in errors provided by webhooks.") public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Cause causes(List<Object> causes) { this.causes = causes; return this; } public Cause addCausesItem(Object causesItem) { if (this.causes == null) { this.causes = new ArrayList<>(); } this.causes.add(causesItem); return this; } /** * In this product, a request can pertain to more than one Item. If an error is returned for such a request, &#x60;causes&#x60; will return an array of errors containing a breakdown of these errors on the individual Item level, if any can be identified. &#x60;causes&#x60; will be provided for the &#x60;error_type&#x60; &#x60;ASSET_REPORT_ERROR&#x60; or &#x60;CHECK_REPORT_ERROR&#x60;. &#x60;causes&#x60; will also not be populated inside an error nested within a &#x60;warning&#x60; object. * @return causes **/ @javax.annotation.Nullable @ApiModelProperty(value = "In this product, a request can pertain to more than one Item. If an error is returned for such a request, `causes` will return an array of errors containing a breakdown of these errors on the individual Item level, if any can be identified. `causes` will be provided for the `error_type` `ASSET_REPORT_ERROR` or `CHECK_REPORT_ERROR`. `causes` will also not be populated inside an error nested within a `warning` object.") public List<Object> getCauses() { return causes; } public void setCauses(List<Object> causes) { this.causes = causes; } public Cause status(Integer status) { this.status = status; return this; } /** * The HTTP status code associated with the error. This will only be returned in the response body when the error information is provided via a webhook. * @return status **/ @javax.annotation.Nullable @ApiModelProperty(value = "The HTTP status code associated with the error. This will only be returned in the response body when the error information is provided via a webhook.") public Integer getStatus() { return status; } public void setStatus(Integer status) { this.status = status; } public Cause documentationUrl(String documentationUrl) { this.documentationUrl = documentationUrl; return this; } /** * The URL of a Plaid documentation page with more information about the error * @return documentationUrl **/ @javax.annotation.Nullable @ApiModelProperty(value = "The URL of a Plaid documentation page with more information about the error") public String getDocumentationUrl() { return documentationUrl; } public void setDocumentationUrl(String documentationUrl) { this.documentationUrl = documentationUrl; } public Cause suggestedAction(String suggestedAction) { this.suggestedAction = suggestedAction; return this; } /** * Suggested steps for resolving the error * @return suggestedAction **/ @javax.annotation.Nullable @ApiModelProperty(value = "Suggested steps for resolving the error") public String getSuggestedAction() { return suggestedAction; } public void setSuggestedAction(String suggestedAction) { this.suggestedAction = suggestedAction; } public Cause requiredAccountSubtypes(List<String> requiredAccountSubtypes) { this.requiredAccountSubtypes = requiredAccountSubtypes; return this; } public Cause addRequiredAccountSubtypesItem(String requiredAccountSubtypesItem) { if (this.requiredAccountSubtypes == null) { this.requiredAccountSubtypes = new ArrayList<>(); } this.requiredAccountSubtypes.add(requiredAccountSubtypesItem); return this; } /** * A list of the account subtypes that were requested via the &#x60;account_filters&#x60; parameter in &#x60;/link/token/create&#x60;. Currently only populated for &#x60;NO_ACCOUNTS&#x60; errors from Items with &#x60;investments_auth&#x60; as an enabled product. * @return requiredAccountSubtypes **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of the account subtypes that were requested via the `account_filters` parameter in `/link/token/create`. Currently only populated for `NO_ACCOUNTS` errors from Items with `investments_auth` as an enabled product. ") public List<String> getRequiredAccountSubtypes() { return requiredAccountSubtypes; } public void setRequiredAccountSubtypes(List<String> requiredAccountSubtypes) { this.requiredAccountSubtypes = requiredAccountSubtypes; } public Cause providedAccountSubtypes(List<String> providedAccountSubtypes) { this.providedAccountSubtypes = providedAccountSubtypes; return this; } public Cause addProvidedAccountSubtypesItem(String providedAccountSubtypesItem) { if (this.providedAccountSubtypes == null) { this.providedAccountSubtypes = new ArrayList<>(); } this.providedAccountSubtypes.add(providedAccountSubtypesItem); return this; } /** * A list of the account subtypes that were extracted but did not match the requested subtypes via the &#x60;account_filters&#x60; parameter in &#x60;/link/token/create&#x60;. Currently only populated for &#x60;NO_ACCOUNTS&#x60; errors from Items with &#x60;investments_auth&#x60; as an enabled product. * @return providedAccountSubtypes **/ @javax.annotation.Nullable @ApiModelProperty(value = "A list of the account subtypes that were extracted but did not match the requested subtypes via the `account_filters` parameter in `/link/token/create`. Currently only populated for `NO_ACCOUNTS` errors from Items with `investments_auth` as an enabled product. ") public List<String> getProvidedAccountSubtypes() { return providedAccountSubtypes; } public void setProvidedAccountSubtypes(List<String> providedAccountSubtypes) { this.providedAccountSubtypes = providedAccountSubtypes; } public Cause 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; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Cause cause = (Cause) o; return Objects.equals(this.errorType, cause.errorType) && Objects.equals(this.errorCode, cause.errorCode) && Objects.equals(this.errorCodeReason, cause.errorCodeReason) && Objects.equals(this.errorMessage, cause.errorMessage) && Objects.equals(this.displayMessage, cause.displayMessage) && Objects.equals(this.requestId, cause.requestId) && Objects.equals(this.causes, cause.causes) && Objects.equals(this.status, cause.status) && Objects.equals(this.documentationUrl, cause.documentationUrl) && Objects.equals(this.suggestedAction, cause.suggestedAction) && Objects.equals(this.requiredAccountSubtypes, cause.requiredAccountSubtypes) && Objects.equals(this.providedAccountSubtypes, cause.providedAccountSubtypes) && Objects.equals(this.itemId, cause.itemId); } @Override public int hashCode() { return Objects.hash(errorType, errorCode, errorCodeReason, errorMessage, displayMessage, requestId, causes, status, documentationUrl, suggestedAction, requiredAccountSubtypes, providedAccountSubtypes, itemId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Cause {\n"); sb.append(" errorType: ").append(toIndentedString(errorType)).append("\n"); sb.append(" errorCode: ").append(toIndentedString(errorCode)).append("\n"); sb.append(" errorCodeReason: ").append(toIndentedString(errorCodeReason)).append("\n"); sb.append(" errorMessage: ").append(toIndentedString(errorMessage)).append("\n"); sb.append(" displayMessage: ").append(toIndentedString(displayMessage)).append("\n"); sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n"); sb.append(" causes: ").append(toIndentedString(causes)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" documentationUrl: ").append(toIndentedString(documentationUrl)).append("\n"); sb.append(" suggestedAction: ").append(toIndentedString(suggestedAction)).append("\n"); sb.append(" requiredAccountSubtypes: ").append(toIndentedString(requiredAccountSubtypes)).append("\n"); sb.append(" providedAccountSubtypes: ").append(toIndentedString(providedAccountSubtypes)).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/BeaconAccountRiskEvaluateRequestOptions.java
src/main/java/com/plaid/client/model/BeaconAccountRiskEvaluateRequestOptions.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * An optional object to filter &#x60;/beacon/account_risk/v1/evaluate&#x60; results to a subset of the accounts on the linked Item. */ @ApiModel(description = "An optional object to filter `/beacon/account_risk/v1/evaluate` results to a subset of the accounts on the linked Item.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class BeaconAccountRiskEvaluateRequestOptions { public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS) private List<String> accountIds = null; public BeaconAccountRiskEvaluateRequestOptions accountIds(List<String> accountIds) { this.accountIds = accountIds; return this; } public BeaconAccountRiskEvaluateRequestOptions addAccountIdsItem(String accountIdsItem) { if (this.accountIds == null) { this.accountIds = new ArrayList<>(); } this.accountIds.add(accountIdsItem); return this; } /** * An array of &#x60;account_ids&#x60; for the specific accounts to evaluate. * @return accountIds **/ @javax.annotation.Nullable @ApiModelProperty(value = "An array of `account_ids` for the specific accounts to evaluate.") public List<String> getAccountIds() { return accountIds; } public void setAccountIds(List<String> accountIds) { this.accountIds = accountIds; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BeaconAccountRiskEvaluateRequestOptions beaconAccountRiskEvaluateRequestOptions = (BeaconAccountRiskEvaluateRequestOptions) o; return Objects.equals(this.accountIds, beaconAccountRiskEvaluateRequestOptions.accountIds); } @Override public int hashCode() { return Objects.hash(accountIds); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class BeaconAccountRiskEvaluateRequestOptions {\n"); sb.append(" accountIds: ").append(toIndentedString(accountIds)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferOriginatorAddress.java
src/main/java/com/plaid/client/model/TransferOriginatorAddress.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * The originator&#39;s address. */ @ApiModel(description = "The originator's address.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferOriginatorAddress { public static final String SERIALIZED_NAME_CITY = "city"; @SerializedName(SERIALIZED_NAME_CITY) private String city; public static final String SERIALIZED_NAME_STREET = "street"; @SerializedName(SERIALIZED_NAME_STREET) private String street; public static final String SERIALIZED_NAME_REGION = "region"; @SerializedName(SERIALIZED_NAME_REGION) private String region; public static final String SERIALIZED_NAME_POSTAL_CODE = "postal_code"; @SerializedName(SERIALIZED_NAME_POSTAL_CODE) private String postalCode; public static final String SERIALIZED_NAME_COUNTRY_CODE = "country_code"; @SerializedName(SERIALIZED_NAME_COUNTRY_CODE) private String countryCode; public TransferOriginatorAddress city(String city) { this.city = city; return this; } /** * The full city name. * @return city **/ @ApiModelProperty(required = true, value = "The full city name.") public String getCity() { return city; } public void setCity(String city) { this.city = city; } public TransferOriginatorAddress street(String street) { this.street = street; return this; } /** * The full street address. * @return street **/ @ApiModelProperty(required = true, value = "The full street address.") public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } public TransferOriginatorAddress region(String region) { this.region = region; return this; } /** * The two-letter code for the state or province (e.g., \&quot;CA\&quot;). * @return region **/ @ApiModelProperty(required = true, value = "The two-letter code for the state or province (e.g., \"CA\").") public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public TransferOriginatorAddress postalCode(String postalCode) { this.postalCode = postalCode; return this; } /** * The postal code (e.g., \&quot;94103\&quot;). * @return postalCode **/ @ApiModelProperty(required = true, value = "The postal code (e.g., \"94103\").") public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public TransferOriginatorAddress countryCode(String countryCode) { this.countryCode = countryCode; return this; } /** * ISO-3166-1 alpha-2 country code standard. * @return countryCode **/ @ApiModelProperty(required = true, value = "ISO-3166-1 alpha-2 country code standard.") public String getCountryCode() { return countryCode; } public void setCountryCode(String countryCode) { this.countryCode = countryCode; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TransferOriginatorAddress transferOriginatorAddress = (TransferOriginatorAddress) o; return Objects.equals(this.city, transferOriginatorAddress.city) && Objects.equals(this.street, transferOriginatorAddress.street) && Objects.equals(this.region, transferOriginatorAddress.region) && Objects.equals(this.postalCode, transferOriginatorAddress.postalCode) && Objects.equals(this.countryCode, transferOriginatorAddress.countryCode); } @Override public int hashCode() { return Objects.hash(city, street, region, postalCode, countryCode); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferOriginatorAddress {\n"); sb.append(" city: ").append(toIndentedString(city)).append("\n"); sb.append(" street: ").append(toIndentedString(street)).append("\n"); sb.append(" region: ").append(toIndentedString(region)).append("\n"); sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n"); sb.append(" countryCode: ").append(toIndentedString(countryCode)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LiabilitiesDefaultUpdateWebhook.java
src/main/java/com/plaid/client/model/LiabilitiesDefaultUpdateWebhook.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.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.HashMap; import java.util.List; import java.util.Map; /** * The webhook of type &#x60;LIABILITIES&#x60; and code &#x60;DEFAULT_UPDATE&#x60; will be fired when new or updated liabilities have been detected on a liabilities item. */ @ApiModel(description = "The webhook of type `LIABILITIES` and code `DEFAULT_UPDATE` will be fired when new or updated liabilities have been detected on a liabilities item.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class LiabilitiesDefaultUpdateWebhook { 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_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) private PlaidError error; public static final String SERIALIZED_NAME_ACCOUNT_IDS_WITH_NEW_LIABILITIES = "account_ids_with_new_liabilities"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS_WITH_NEW_LIABILITIES) private List<String> accountIdsWithNewLiabilities = new ArrayList<>(); public static final String SERIALIZED_NAME_ACCOUNT_IDS_WITH_UPDATED_LIABILITIES = "account_ids_with_updated_liabilities"; @SerializedName(SERIALIZED_NAME_ACCOUNT_IDS_WITH_UPDATED_LIABILITIES) private Map<String, List<String>> accountIdsWithUpdatedLiabilities = new HashMap<>(); public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; @SerializedName(SERIALIZED_NAME_ENVIRONMENT) private WebhookEnvironmentValues environment; public LiabilitiesDefaultUpdateWebhook webhookType(String webhookType) { this.webhookType = webhookType; return this; } /** * &#x60;LIABILITIES&#x60; * @return webhookType **/ @ApiModelProperty(required = true, value = "`LIABILITIES`") public String getWebhookType() { return webhookType; } public void setWebhookType(String webhookType) { this.webhookType = webhookType; } public LiabilitiesDefaultUpdateWebhook webhookCode(String webhookCode) { this.webhookCode = webhookCode; return this; } /** * &#x60;DEFAULT_UPDATE&#x60; * @return webhookCode **/ @ApiModelProperty(required = true, value = "`DEFAULT_UPDATE`") public String getWebhookCode() { return webhookCode; } public void setWebhookCode(String webhookCode) { this.webhookCode = webhookCode; } public LiabilitiesDefaultUpdateWebhook 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 LiabilitiesDefaultUpdateWebhook error(PlaidError error) { this.error = error; return this; } /** * Get error * @return error **/ @javax.annotation.Nullable @ApiModelProperty(required = true, value = "") public PlaidError getError() { return error; } public void setError(PlaidError error) { this.error = error; } public LiabilitiesDefaultUpdateWebhook accountIdsWithNewLiabilities(List<String> accountIdsWithNewLiabilities) { this.accountIdsWithNewLiabilities = accountIdsWithNewLiabilities; return this; } public LiabilitiesDefaultUpdateWebhook addAccountIdsWithNewLiabilitiesItem(String accountIdsWithNewLiabilitiesItem) { this.accountIdsWithNewLiabilities.add(accountIdsWithNewLiabilitiesItem); return this; } /** * An array of &#x60;account_id&#x60;&#39;s for accounts that contain new liabilities.&#39; * @return accountIdsWithNewLiabilities **/ @ApiModelProperty(required = true, value = "An array of `account_id`'s for accounts that contain new liabilities.'") public List<String> getAccountIdsWithNewLiabilities() { return accountIdsWithNewLiabilities; } public void setAccountIdsWithNewLiabilities(List<String> accountIdsWithNewLiabilities) { this.accountIdsWithNewLiabilities = accountIdsWithNewLiabilities; } public LiabilitiesDefaultUpdateWebhook accountIdsWithUpdatedLiabilities(Map<String, List<String>> accountIdsWithUpdatedLiabilities) { this.accountIdsWithUpdatedLiabilities = accountIdsWithUpdatedLiabilities; return this; } public LiabilitiesDefaultUpdateWebhook putAccountIdsWithUpdatedLiabilitiesItem(String key, List<String> accountIdsWithUpdatedLiabilitiesItem) { this.accountIdsWithUpdatedLiabilities.put(key, accountIdsWithUpdatedLiabilitiesItem); return this; } /** * An object with keys of &#x60;account_id&#x60;&#39;s that are mapped to their respective liabilities fields that changed. Example: &#x60;{ \&quot;XMBvvyMGQ1UoLbKByoMqH3nXMj84ALSdE5B58\&quot;: [\&quot;past_amount_due\&quot;] }&#x60; * @return accountIdsWithUpdatedLiabilities **/ @ApiModelProperty(required = true, value = "An object with keys of `account_id`'s that are mapped to their respective liabilities fields that changed. Example: `{ \"XMBvvyMGQ1UoLbKByoMqH3nXMj84ALSdE5B58\": [\"past_amount_due\"] }` ") public Map<String, List<String>> getAccountIdsWithUpdatedLiabilities() { return accountIdsWithUpdatedLiabilities; } public void setAccountIdsWithUpdatedLiabilities(Map<String, List<String>> accountIdsWithUpdatedLiabilities) { this.accountIdsWithUpdatedLiabilities = accountIdsWithUpdatedLiabilities; } public LiabilitiesDefaultUpdateWebhook 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; } LiabilitiesDefaultUpdateWebhook liabilitiesDefaultUpdateWebhook = (LiabilitiesDefaultUpdateWebhook) o; return Objects.equals(this.webhookType, liabilitiesDefaultUpdateWebhook.webhookType) && Objects.equals(this.webhookCode, liabilitiesDefaultUpdateWebhook.webhookCode) && Objects.equals(this.itemId, liabilitiesDefaultUpdateWebhook.itemId) && Objects.equals(this.error, liabilitiesDefaultUpdateWebhook.error) && Objects.equals(this.accountIdsWithNewLiabilities, liabilitiesDefaultUpdateWebhook.accountIdsWithNewLiabilities) && Objects.equals(this.accountIdsWithUpdatedLiabilities, liabilitiesDefaultUpdateWebhook.accountIdsWithUpdatedLiabilities) && Objects.equals(this.environment, liabilitiesDefaultUpdateWebhook.environment); } @Override public int hashCode() { return Objects.hash(webhookType, webhookCode, itemId, error, accountIdsWithNewLiabilities, accountIdsWithUpdatedLiabilities, environment); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class LiabilitiesDefaultUpdateWebhook {\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(" error: ").append(toIndentedString(error)).append("\n"); sb.append(" accountIdsWithNewLiabilities: ").append(toIndentedString(accountIdsWithNewLiabilities)).append("\n"); sb.append(" accountIdsWithUpdatedLiabilities: ").append(toIndentedString(accountIdsWithUpdatedLiabilities)).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/ConsentEventInitiator.java
src/main/java/com/plaid/client/model/ConsentEventInitiator.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * 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 entity that initiated collection of consent. */ @JsonAdapter(ConsentEventInitiator.Adapter.class) public enum ConsentEventInitiator { PLAID("PLAID"), DATA_PROVIDER("DATA_PROVIDER"), CUSTOMER("CUSTOMER"), END_USER("END_USER"), // This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file. // Try upgrading your client-library version. ENUM_UNKNOWN("ENUM_UNKNOWN"); private String value; ConsentEventInitiator(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static ConsentEventInitiator fromValue(String value) { for (ConsentEventInitiator b : ConsentEventInitiator.values()) { if (b.value.equals(value)) { return b; } } return ConsentEventInitiator.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<ConsentEventInitiator> { @Override public void write(final JsonWriter jsonWriter, final ConsentEventInitiator enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public ConsentEventInitiator read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return ConsentEventInitiator.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/VerificationStatus.java
src/main/java/com/plaid/client/model/VerificationStatus.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import io.swagger.annotations.ApiModel; import com.google.gson.annotations.SerializedName; import java.io.IOException; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; /** * The verification status. One of the following: &#x60;\&quot;VERIFIED\&quot;&#x60;: The information was successfully verified. &#x60;\&quot;UNVERIFIED\&quot;&#x60;: The verification has not yet been performed. &#x60;\&quot;NEEDS_INFO\&quot;&#x60;: The verification was attempted but could not be completed due to missing information. \&quot;&#x60;UNABLE_TO_VERIFY&#x60;\&quot;: The verification was performed and the information could not be verified. &#x60;\&quot;UNKNOWN\&quot;&#x60;: The verification status is unknown. */ @JsonAdapter(VerificationStatus.Adapter.class) public enum VerificationStatus { VERIFIED("VERIFIED"), UNVERIFIED("UNVERIFIED"), NEEDS_INFO("NEEDS_INFO"), UNABLE_TO_VERIFY("UNABLE_TO_VERIFY"), 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; VerificationStatus(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } public static VerificationStatus fromValue(String value) { for (VerificationStatus b : VerificationStatus.values()) { if (b.value.equals(value)) { return b; } } return VerificationStatus.ENUM_UNKNOWN; } public static class Adapter extends TypeAdapter<VerificationStatus> { @Override public void write(final JsonWriter jsonWriter, final VerificationStatus enumeration) throws IOException { jsonWriter.value(enumeration.getValue()); } @Override public VerificationStatus read(final JsonReader jsonReader) throws IOException { String value = jsonReader.nextString(); return VerificationStatus.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/TransferRefundGetResponse.java
src/main/java/com/plaid/client/model/TransferRefundGetResponse.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.TransferRefund; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the response schema for &#x60;/transfer/refund/get&#x60; */ @ApiModel(description = "Defines the response schema for `/transfer/refund/get`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class TransferRefundGetResponse { public static final String SERIALIZED_NAME_REFUND = "refund"; @SerializedName(SERIALIZED_NAME_REFUND) private TransferRefund refund; public static final String SERIALIZED_NAME_REQUEST_ID = "request_id"; @SerializedName(SERIALIZED_NAME_REQUEST_ID) private String requestId; public TransferRefundGetResponse refund(TransferRefund refund) { this.refund = refund; return this; } /** * Get refund * @return refund **/ @ApiModelProperty(required = true, value = "") public TransferRefund getRefund() { return refund; } public void setRefund(TransferRefund refund) { this.refund = refund; } public TransferRefundGetResponse 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; } TransferRefundGetResponse transferRefundGetResponse = (TransferRefundGetResponse) o; return Objects.equals(this.refund, transferRefundGetResponse.refund) && Objects.equals(this.requestId, transferRefundGetResponse.requestId); } @Override public int hashCode() { return Objects.hash(refund, requestId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TransferRefundGetResponse {\n"); sb.append(" refund: ").append(toIndentedString(refund)).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/CraCheckReportIncomeInsightsGetRequest.java
src/main/java/com/plaid/client/model/CraCheckReportIncomeInsightsGetRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * Defines the request schema for &#x60;/cra/check_report/income_insights/get&#x60;. */ @ApiModel(description = "Defines the request schema for `/cra/check_report/income_insights/get`.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class CraCheckReportIncomeInsightsGetRequest { public static final String SERIALIZED_NAME_CLIENT_ID = "client_id"; @SerializedName(SERIALIZED_NAME_CLIENT_ID) private String clientId; public static final String SERIALIZED_NAME_SECRET = "secret"; @SerializedName(SERIALIZED_NAME_SECRET) private String secret; public static final String SERIALIZED_NAME_USER_TOKEN = "user_token"; @SerializedName(SERIALIZED_NAME_USER_TOKEN) private String userToken; public static final String SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN = "third_party_user_token"; @SerializedName(SERIALIZED_NAME_THIRD_PARTY_USER_TOKEN) private String thirdPartyUserToken; public static final String SERIALIZED_NAME_USER_ID = "user_id"; @SerializedName(SERIALIZED_NAME_USER_ID) private String userId; public CraCheckReportIncomeInsightsGetRequest 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 CraCheckReportIncomeInsightsGetRequest 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 CraCheckReportIncomeInsightsGetRequest 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 CraCheckReportIncomeInsightsGetRequest thirdPartyUserToken(String thirdPartyUserToken) { this.thirdPartyUserToken = thirdPartyUserToken; return this; } /** * The third-party user token associated with the requested User data. * @return thirdPartyUserToken **/ @javax.annotation.Nullable @ApiModelProperty(value = "The third-party user token associated with the requested User data.") public String getThirdPartyUserToken() { return thirdPartyUserToken; } public void setThirdPartyUserToken(String thirdPartyUserToken) { this.thirdPartyUserToken = thirdPartyUserToken; } public CraCheckReportIncomeInsightsGetRequest 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; } CraCheckReportIncomeInsightsGetRequest craCheckReportIncomeInsightsGetRequest = (CraCheckReportIncomeInsightsGetRequest) o; return Objects.equals(this.clientId, craCheckReportIncomeInsightsGetRequest.clientId) && Objects.equals(this.secret, craCheckReportIncomeInsightsGetRequest.secret) && Objects.equals(this.userToken, craCheckReportIncomeInsightsGetRequest.userToken) && Objects.equals(this.thirdPartyUserToken, craCheckReportIncomeInsightsGetRequest.thirdPartyUserToken) && Objects.equals(this.userId, craCheckReportIncomeInsightsGetRequest.userId); } @Override public int hashCode() { return Objects.hash(clientId, secret, userToken, thirdPartyUserToken, userId); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class CraCheckReportIncomeInsightsGetRequest {\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(" thirdPartyUserToken: ").append(toIndentedString(thirdPartyUserToken)).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/WalletListRequest.java
src/main/java/com/plaid/client/model/WalletListRequest.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.WalletISOCurrencyCode; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; /** * WalletListRequest defines the request schema for &#x60;/wallet/list&#x60; */ @ApiModel(description = "WalletListRequest defines the request schema for `/wallet/list`") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class WalletListRequest { 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_ISO_CURRENCY_CODE = "iso_currency_code"; @SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE) private WalletISOCurrencyCode isoCurrencyCode; public static final String SERIALIZED_NAME_CURSOR = "cursor"; @SerializedName(SERIALIZED_NAME_CURSOR) private String cursor; public static final String SERIALIZED_NAME_COUNT = "count"; @SerializedName(SERIALIZED_NAME_COUNT) private Integer count = 10; public WalletListRequest 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 WalletListRequest 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 WalletListRequest isoCurrencyCode(WalletISOCurrencyCode isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; return this; } /** * Get isoCurrencyCode * @return isoCurrencyCode **/ @javax.annotation.Nullable @ApiModelProperty(value = "") public WalletISOCurrencyCode getIsoCurrencyCode() { return isoCurrencyCode; } public void setIsoCurrencyCode(WalletISOCurrencyCode isoCurrencyCode) { this.isoCurrencyCode = isoCurrencyCode; } public WalletListRequest cursor(String cursor) { this.cursor = cursor; return this; } /** * A base64 value representing the latest e-wallet that has already been requested. Set this to &#x60;next_cursor&#x60; received from the previous &#x60;/wallet/list&#x60; request. If provided, the response will only contain e-wallets created before that e-wallet. If omitted, the response will contain e-wallets starting from the most recent, and in descending order. * @return cursor **/ @javax.annotation.Nullable @ApiModelProperty(value = "A base64 value representing the latest e-wallet that has already been requested. Set this to `next_cursor` received from the previous `/wallet/list` request. If provided, the response will only contain e-wallets created before that e-wallet. If omitted, the response will contain e-wallets starting from the most recent, and in descending order.") public String getCursor() { return cursor; } public void setCursor(String cursor) { this.cursor = cursor; } public WalletListRequest count(Integer count) { this.count = count; return this; } /** * The number of e-wallets to fetch * minimum: 1 * maximum: 20 * @return count **/ @javax.annotation.Nullable @ApiModelProperty(value = "The number of e-wallets to fetch") public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } WalletListRequest walletListRequest = (WalletListRequest) o; return Objects.equals(this.clientId, walletListRequest.clientId) && Objects.equals(this.secret, walletListRequest.secret) && Objects.equals(this.isoCurrencyCode, walletListRequest.isoCurrencyCode) && Objects.equals(this.cursor, walletListRequest.cursor) && Objects.equals(this.count, walletListRequest.count); } @Override public int hashCode() { return Objects.hash(clientId, secret, isoCurrencyCode, cursor, count); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class WalletListRequest {\n"); sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n"); sb.append(" secret: ").append(toIndentedString(secret)).append("\n"); sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n"); sb.append(" cursor: ").append(toIndentedString(cursor)).append("\n"); sb.append(" count: ").append(toIndentedString(count)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false
plaid/plaid-java
https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/EntityWatchlistScreeningReview.java
src/main/java/com/plaid/client/model/EntityWatchlistScreeningReview.java
/* * The Plaid API * The Plaid REST API. Please see https://plaid.com/docs/api for more details. * * The version of the OpenAPI document: 2020-09-14_1.680.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.plaid.client.model; import java.util.Objects; import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; import com.plaid.client.model.WatchlistScreeningAuditTrail; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * A review submitted by a team member for an entity watchlist screening. A review can be either a comment on the current screening state, actions taken against hits attached to the watchlist screening, or both. */ @ApiModel(description = "A review submitted by a team member for an entity watchlist screening. A review can be either a comment on the current screening state, actions taken against hits attached to the watchlist screening, or both.") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]") public class EntityWatchlistScreeningReview { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) private String id; public static final String SERIALIZED_NAME_CONFIRMED_HITS = "confirmed_hits"; @SerializedName(SERIALIZED_NAME_CONFIRMED_HITS) private List<String> confirmedHits = new ArrayList<>(); public static final String SERIALIZED_NAME_DISMISSED_HITS = "dismissed_hits"; @SerializedName(SERIALIZED_NAME_DISMISSED_HITS) private List<String> dismissedHits = new ArrayList<>(); public static final String SERIALIZED_NAME_COMMENT = "comment"; @SerializedName(SERIALIZED_NAME_COMMENT) private String comment; public static final String SERIALIZED_NAME_AUDIT_TRAIL = "audit_trail"; @SerializedName(SERIALIZED_NAME_AUDIT_TRAIL) private WatchlistScreeningAuditTrail auditTrail; public EntityWatchlistScreeningReview id(String id) { this.id = id; return this; } /** * ID of the associated entity review. * @return id **/ @ApiModelProperty(example = "entrev_aCLNRxK3UVzn2r", required = true, value = "ID of the associated entity review.") public String getId() { return id; } public void setId(String id) { this.id = id; } public EntityWatchlistScreeningReview confirmedHits(List<String> confirmedHits) { this.confirmedHits = confirmedHits; return this; } public EntityWatchlistScreeningReview addConfirmedHitsItem(String confirmedHitsItem) { this.confirmedHits.add(confirmedHitsItem); return this; } /** * Hits marked as a true positive after thorough manual review. These hits will never recur or be updated once dismissed. In most cases, confirmed hits indicate that the customer should be rejected. * @return confirmedHits **/ @ApiModelProperty(required = true, value = "Hits marked as a true positive after thorough manual review. These hits will never recur or be updated once dismissed. In most cases, confirmed hits indicate that the customer should be rejected.") public List<String> getConfirmedHits() { return confirmedHits; } public void setConfirmedHits(List<String> confirmedHits) { this.confirmedHits = confirmedHits; } public EntityWatchlistScreeningReview dismissedHits(List<String> dismissedHits) { this.dismissedHits = dismissedHits; return this; } public EntityWatchlistScreeningReview addDismissedHitsItem(String dismissedHitsItem) { this.dismissedHits.add(dismissedHitsItem); return this; } /** * Hits marked as a false positive after thorough manual review. These hits will never recur or be updated once dismissed. * @return dismissedHits **/ @ApiModelProperty(required = true, value = "Hits marked as a false positive after thorough manual review. These hits will never recur or be updated once dismissed.") public List<String> getDismissedHits() { return dismissedHits; } public void setDismissedHits(List<String> dismissedHits) { this.dismissedHits = dismissedHits; } public EntityWatchlistScreeningReview comment(String comment) { this.comment = comment; return this; } /** * A comment submitted by a team member as part of reviewing a watchlist screening. * @return comment **/ @javax.annotation.Nullable @ApiModelProperty(example = "These look like legitimate matches, rejecting the customer.", required = true, value = "A comment submitted by a team member as part of reviewing a watchlist screening.") public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; } public EntityWatchlistScreeningReview auditTrail(WatchlistScreeningAuditTrail auditTrail) { this.auditTrail = auditTrail; return this; } /** * Get auditTrail * @return auditTrail **/ @ApiModelProperty(required = true, value = "") public WatchlistScreeningAuditTrail getAuditTrail() { return auditTrail; } public void setAuditTrail(WatchlistScreeningAuditTrail auditTrail) { this.auditTrail = auditTrail; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } EntityWatchlistScreeningReview entityWatchlistScreeningReview = (EntityWatchlistScreeningReview) o; return Objects.equals(this.id, entityWatchlistScreeningReview.id) && Objects.equals(this.confirmedHits, entityWatchlistScreeningReview.confirmedHits) && Objects.equals(this.dismissedHits, entityWatchlistScreeningReview.dismissedHits) && Objects.equals(this.comment, entityWatchlistScreeningReview.comment) && Objects.equals(this.auditTrail, entityWatchlistScreeningReview.auditTrail); } @Override public int hashCode() { return Objects.hash(id, confirmedHits, dismissedHits, comment, auditTrail); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class EntityWatchlistScreeningReview {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" confirmedHits: ").append(toIndentedString(confirmedHits)).append("\n"); sb.append(" dismissedHits: ").append(toIndentedString(dismissedHits)).append("\n"); sb.append(" comment: ").append(toIndentedString(comment)).append("\n"); sb.append(" auditTrail: ").append(toIndentedString(auditTrail)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
java
MIT
130671fed6ef990db562aa6571e181ce08270945
2026-01-05T02:42:29.116648Z
false