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/CreditFreddieMacIndividualName.java | src/main/java/com/plaid/client/model/CreditFreddieMacIndividualName.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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;
/**
* 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 CreditFreddieMacIndividualName {
public static final String SERIALIZED_NAME_FIRST_NAME = "FirstName";
@SerializedName(SERIALIZED_NAME_FIRST_NAME)
private String firstName;
public static final String SERIALIZED_NAME_LAST_NAME = "LastName";
@SerializedName(SERIALIZED_NAME_LAST_NAME)
private String lastName;
public static final String SERIALIZED_NAME_MIDDLE_NAME = "MiddleName";
@SerializedName(SERIALIZED_NAME_MIDDLE_NAME)
private String middleName;
public CreditFreddieMacIndividualName firstName(String firstName) {
this.firstName = firstName;
return this;
}
/**
* The first name of the individual represented by the parent object.
* @return firstName
**/
@ApiModelProperty(required = true, value = "The first name of the individual represented by the parent object.")
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public CreditFreddieMacIndividualName lastName(String lastName) {
this.lastName = lastName;
return this;
}
/**
* The last name of the individual represented by the parent object.
* @return lastName
**/
@ApiModelProperty(required = true, value = "The last name of the individual represented by the parent object.")
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public CreditFreddieMacIndividualName middleName(String middleName) {
this.middleName = middleName;
return this;
}
/**
* The middle name of the individual represented by the parent object.
* @return middleName
**/
@ApiModelProperty(required = true, value = "The middle name of the individual represented by the parent object.")
public String getMiddleName() {
return middleName;
}
public void setMiddleName(String middleName) {
this.middleName = middleName;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreditFreddieMacIndividualName creditFreddieMacIndividualName = (CreditFreddieMacIndividualName) o;
return Objects.equals(this.firstName, creditFreddieMacIndividualName.firstName) &&
Objects.equals(this.lastName, creditFreddieMacIndividualName.lastName) &&
Objects.equals(this.middleName, creditFreddieMacIndividualName.middleName);
}
@Override
public int hashCode() {
return Objects.hash(firstName, lastName, middleName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreditFreddieMacIndividualName {\n");
sb.append(" firstName: ").append(toIndentedString(firstName)).append("\n");
sb.append(" lastName: ").append(toIndentedString(lastName)).append("\n");
sb.append(" middleName: ").append(toIndentedString(middleName)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ApplicationGetRequest.java | src/main/java/com/plaid/client/model/ApplicationGetRequest.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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;
/**
* ApplicationGetRequest defines the schema for `/application/get`
*/
@ApiModel(description = "ApplicationGetRequest defines the schema for `/application/get`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ApplicationGetRequest {
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_APPLICATION_ID = "application_id";
@SerializedName(SERIALIZED_NAME_APPLICATION_ID)
private String applicationId;
public ApplicationGetRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@ApiModelProperty(required = true, 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 ApplicationGetRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@ApiModelProperty(required = true, 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 ApplicationGetRequest applicationId(String applicationId) {
this.applicationId = applicationId;
return this;
}
/**
* This field will map to the application ID that is returned from /item/application/list, or provided to the institution in an oauth redirect.
* @return applicationId
**/
@ApiModelProperty(required = true, value = "This field will map to the application ID that is returned from /item/application/list, or provided to the institution in an oauth redirect.")
public String getApplicationId() {
return applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ApplicationGetRequest applicationGetRequest = (ApplicationGetRequest) o;
return Objects.equals(this.clientId, applicationGetRequest.clientId) &&
Objects.equals(this.secret, applicationGetRequest.secret) &&
Objects.equals(this.applicationId, applicationGetRequest.applicationId);
}
@Override
public int hashCode() {
return Objects.hash(clientId, secret, applicationId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ApplicationGetRequest {\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" applicationId: ").append(toIndentedString(applicationId)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraCheckReportCreateResponse.java | src/main/java/com/plaid/client/model/CraCheckReportCreateResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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;
/**
* CraCheckReportCreateResponse defines the response schema for `/cra/check_report/create`.
*/
@ApiModel(description = "CraCheckReportCreateResponse defines the response schema for `/cra/check_report/create`.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CraCheckReportCreateResponse {
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public CraCheckReportCreateResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CraCheckReportCreateResponse craCheckReportCreateResponse = (CraCheckReportCreateResponse) o;
return Objects.equals(this.requestId, craCheckReportCreateResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CraCheckReportCreateResponse {\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/ScreeningHitDateOfBirthItem.java | src/main/java/com/plaid/client/model/ScreeningHitDateOfBirthItem.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.DateRange;
import com.plaid.client.model.MatchSummary;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Analyzed date of birth for the associated hit
*/
@ApiModel(description = "Analyzed date of birth for the associated hit")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ScreeningHitDateOfBirthItem {
public static final String SERIALIZED_NAME_ANALYSIS = "analysis";
@SerializedName(SERIALIZED_NAME_ANALYSIS)
private MatchSummary analysis;
public static final String SERIALIZED_NAME_DATA = "data";
@SerializedName(SERIALIZED_NAME_DATA)
private DateRange data;
public ScreeningHitDateOfBirthItem analysis(MatchSummary analysis) {
this.analysis = analysis;
return this;
}
/**
* Get analysis
* @return analysis
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public MatchSummary getAnalysis() {
return analysis;
}
public void setAnalysis(MatchSummary analysis) {
this.analysis = analysis;
}
public ScreeningHitDateOfBirthItem data(DateRange data) {
this.data = data;
return this;
}
/**
* Get data
* @return data
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public DateRange getData() {
return data;
}
public void setData(DateRange data) {
this.data = data;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ScreeningHitDateOfBirthItem screeningHitDateOfBirthItem = (ScreeningHitDateOfBirthItem) o;
return Objects.equals(this.analysis, screeningHitDateOfBirthItem.analysis) &&
Objects.equals(this.data, screeningHitDateOfBirthItem.data);
}
@Override
public int hashCode() {
return Objects.hash(analysis, data);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ScreeningHitDateOfBirthItem {\n");
sb.append(" analysis: ").append(toIndentedString(analysis)).append("\n");
sb.append(" data: ").append(toIndentedString(data)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/FixedIncome.java | src/main/java/com/plaid/client/model/FixedIncome.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.YieldRate;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.time.LocalDate;
/**
* Details about the fixed income security.
*/
@ApiModel(description = "Details about the fixed income security.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class FixedIncome {
public static final String SERIALIZED_NAME_YIELD_RATE = "yield_rate";
@SerializedName(SERIALIZED_NAME_YIELD_RATE)
private YieldRate yieldRate;
public static final String SERIALIZED_NAME_MATURITY_DATE = "maturity_date";
@SerializedName(SERIALIZED_NAME_MATURITY_DATE)
private LocalDate maturityDate;
public static final String SERIALIZED_NAME_ISSUE_DATE = "issue_date";
@SerializedName(SERIALIZED_NAME_ISSUE_DATE)
private LocalDate issueDate;
public static final String SERIALIZED_NAME_FACE_VALUE = "face_value";
@SerializedName(SERIALIZED_NAME_FACE_VALUE)
private Double faceValue;
public FixedIncome yieldRate(YieldRate yieldRate) {
this.yieldRate = yieldRate;
return this;
}
/**
* Get yieldRate
* @return yieldRate
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public YieldRate getYieldRate() {
return yieldRate;
}
public void setYieldRate(YieldRate yieldRate) {
this.yieldRate = yieldRate;
}
public FixedIncome maturityDate(LocalDate maturityDate) {
this.maturityDate = maturityDate;
return this;
}
/**
* The maturity date for this fixed income security, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format.
* @return maturityDate
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The maturity date for this fixed income security, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format.")
public LocalDate getMaturityDate() {
return maturityDate;
}
public void setMaturityDate(LocalDate maturityDate) {
this.maturityDate = maturityDate;
}
public FixedIncome issueDate(LocalDate issueDate) {
this.issueDate = issueDate;
return this;
}
/**
* The issue date for this fixed income security, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format.
* @return issueDate
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The issue date for this fixed income security, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format.")
public LocalDate getIssueDate() {
return issueDate;
}
public void setIssueDate(LocalDate issueDate) {
this.issueDate = issueDate;
}
public FixedIncome faceValue(Double faceValue) {
this.faceValue = faceValue;
return this;
}
/**
* The face value that is paid upon maturity of the fixed income security, per unit of security.
* @return faceValue
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The face value that is paid upon maturity of the fixed income security, per unit of security.")
public Double getFaceValue() {
return faceValue;
}
public void setFaceValue(Double faceValue) {
this.faceValue = faceValue;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
FixedIncome fixedIncome = (FixedIncome) o;
return Objects.equals(this.yieldRate, fixedIncome.yieldRate) &&
Objects.equals(this.maturityDate, fixedIncome.maturityDate) &&
Objects.equals(this.issueDate, fixedIncome.issueDate) &&
Objects.equals(this.faceValue, fixedIncome.faceValue);
}
@Override
public int hashCode() {
return Objects.hash(yieldRate, maturityDate, issueDate, faceValue);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class FixedIncome {\n");
sb.append(" yieldRate: ").append(toIndentedString(yieldRate)).append("\n");
sb.append(" maturityDate: ").append(toIndentedString(maturityDate)).append("\n");
sb.append(" issueDate: ").append(toIndentedString(issueDate)).append("\n");
sb.append(" faceValue: ").append(toIndentedString(faceValue)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/EntityDocument.java | src/main/java/com/plaid/client/model/EntityDocument.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.EntityDocumentType;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* An official document, usually issued by a governing body or institution, with an associated identifier.
*/
@ApiModel(description = "An official document, usually issued by a governing body or institution, with an associated identifier.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class EntityDocument {
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
private EntityDocumentType type;
public static final String SERIALIZED_NAME_NUMBER = "number";
@SerializedName(SERIALIZED_NAME_NUMBER)
private String number;
public EntityDocument type(EntityDocumentType type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
**/
@ApiModelProperty(required = true, value = "")
public EntityDocumentType getType() {
return type;
}
public void setType(EntityDocumentType type) {
this.type = type;
}
public EntityDocument number(String number) {
this.number = number;
return this;
}
/**
* The numeric or alphanumeric identifier associated with this document. Must be between 4 and 32 characters long, and cannot have leading or trailing spaces.
* @return number
**/
@ApiModelProperty(example = "C31195855", required = true, value = "The numeric or alphanumeric identifier associated with this document. Must be between 4 and 32 characters long, and cannot have leading or trailing spaces.")
public String getNumber() {
return number;
}
public void setNumber(String number) {
this.number = number;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
EntityDocument entityDocument = (EntityDocument) o;
return Objects.equals(this.type, entityDocument.type) &&
Objects.equals(this.number, entityDocument.number);
}
@Override
public int hashCode() {
return Objects.hash(type, number);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class EntityDocument {\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" number: ").append(toIndentedString(number)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ImageQuality.java | src/main/java/com/plaid/client/model/ImageQuality.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* 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 high level description of the quality of the image the user submitted. For example, an image that is blurry, distorted by glare from a nearby light source, or improperly framed might be marked as low or medium quality. Poor quality images are more likely to fail OCR and/or template conformity checks. Note: By default, Plaid will let a user recapture document images twice before failing the entire session if we attribute the failure to low image quality.
*/
@JsonAdapter(ImageQuality.Adapter.class)
public enum ImageQuality {
HIGH("high"),
MEDIUM("medium"),
LOW("low"),
// 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;
ImageQuality(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static ImageQuality fromValue(String value) {
for (ImageQuality b : ImageQuality.values()) {
if (b.value.equals(value)) {
return b;
}
}
return ImageQuality.ENUM_UNKNOWN;
}
public static class Adapter extends TypeAdapter<ImageQuality> {
@Override
public void write(final JsonWriter jsonWriter, final ImageQuality enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public ImageQuality read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return ImageQuality.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/AccountVerificationInsightsNetworkStatus.java | src/main/java/com/plaid/client/model/AccountVerificationInsightsNetworkStatus.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Status information about the account and routing number in the Plaid network.
*/
@ApiModel(description = "Status information about the account and routing number in the Plaid network.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class AccountVerificationInsightsNetworkStatus {
public static final String SERIALIZED_NAME_HAS_NUMBERS_MATCH = "has_numbers_match";
@SerializedName(SERIALIZED_NAME_HAS_NUMBERS_MATCH)
private Boolean hasNumbersMatch;
public static final String SERIALIZED_NAME_IS_NUMBERS_MATCH_VERIFIED = "is_numbers_match_verified";
@SerializedName(SERIALIZED_NAME_IS_NUMBERS_MATCH_VERIFIED)
private Boolean isNumbersMatchVerified;
public AccountVerificationInsightsNetworkStatus hasNumbersMatch(Boolean hasNumbersMatch) {
this.hasNumbersMatch = hasNumbersMatch;
return this;
}
/**
* Indicates whether we found at least one matching account for the ACH account and routing number.
* @return hasNumbersMatch
**/
@ApiModelProperty(required = true, value = "Indicates whether we found at least one matching account for the ACH account and routing number.")
public Boolean getHasNumbersMatch() {
return hasNumbersMatch;
}
public void setHasNumbersMatch(Boolean hasNumbersMatch) {
this.hasNumbersMatch = hasNumbersMatch;
}
public AccountVerificationInsightsNetworkStatus isNumbersMatchVerified(Boolean isNumbersMatchVerified) {
this.isNumbersMatchVerified = isNumbersMatchVerified;
return this;
}
/**
* Indicates if at least one matching account for the ACH account and routing number is already verified.
* @return isNumbersMatchVerified
**/
@ApiModelProperty(required = true, value = "Indicates if at least one matching account for the ACH account and routing number is already verified.")
public Boolean getIsNumbersMatchVerified() {
return isNumbersMatchVerified;
}
public void setIsNumbersMatchVerified(Boolean isNumbersMatchVerified) {
this.isNumbersMatchVerified = isNumbersMatchVerified;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AccountVerificationInsightsNetworkStatus accountVerificationInsightsNetworkStatus = (AccountVerificationInsightsNetworkStatus) o;
return Objects.equals(this.hasNumbersMatch, accountVerificationInsightsNetworkStatus.hasNumbersMatch) &&
Objects.equals(this.isNumbersMatchVerified, accountVerificationInsightsNetworkStatus.isNumbersMatchVerified);
}
@Override
public int hashCode() {
return Objects.hash(hasNumbersMatch, isNumbersMatchVerified);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AccountVerificationInsightsNetworkStatus {\n");
sb.append(" hasNumbersMatch: ").append(toIndentedString(hasNumbersMatch)).append("\n");
sb.append(" isNumbersMatchVerified: ").append(toIndentedString(isNumbersMatchVerified)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ClientUserIdentityEmail.java | src/main/java/com/plaid/client/model/ClientUserIdentityEmail.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* User email information.
*/
@ApiModel(description = "User email information.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ClientUserIdentityEmail {
public static final String SERIALIZED_NAME_DATA = "data";
@SerializedName(SERIALIZED_NAME_DATA)
private String data;
public static final String SERIALIZED_NAME_PRIMARY = "primary";
@SerializedName(SERIALIZED_NAME_PRIMARY)
private Boolean primary;
public ClientUserIdentityEmail data(String data) {
this.data = data;
return this;
}
/**
* User's email.
* @return data
**/
@ApiModelProperty(required = true, value = "User's email.")
public String getData() {
return data;
}
public void setData(String data) {
this.data = data;
}
public ClientUserIdentityEmail primary(Boolean primary) {
this.primary = primary;
return this;
}
/**
* Indicates whether this is the primary email for the User.
* @return primary
**/
@ApiModelProperty(required = true, value = "Indicates whether this is the primary email for the User.")
public Boolean getPrimary() {
return primary;
}
public void setPrimary(Boolean primary) {
this.primary = primary;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ClientUserIdentityEmail clientUserIdentityEmail = (ClientUserIdentityEmail) o;
return Objects.equals(this.data, clientUserIdentityEmail.data) &&
Objects.equals(this.primary, clientUserIdentityEmail.primary);
}
@Override
public int hashCode() {
return Objects.hash(data, primary);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ClientUserIdentityEmail {\n");
sb.append(" data: ").append(toIndentedString(data)).append("\n");
sb.append(" primary: ").append(toIndentedString(primary)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorTokenCreateResponse.java | src/main/java/com/plaid/client/model/ProcessorTokenCreateResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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;
/**
* ProcessorTokenCreateResponse defines the response schema for `/processor/token/create` and `/processor/apex/processor_token/create`
*/
@ApiModel(description = "ProcessorTokenCreateResponse defines the response schema for `/processor/token/create` and `/processor/apex/processor_token/create`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ProcessorTokenCreateResponse {
public static final String SERIALIZED_NAME_PROCESSOR_TOKEN = "processor_token";
@SerializedName(SERIALIZED_NAME_PROCESSOR_TOKEN)
private String processorToken;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public ProcessorTokenCreateResponse processorToken(String processorToken) {
this.processorToken = processorToken;
return this;
}
/**
* The `processor_token` that can then be used by the Plaid partner to make API requests
* @return processorToken
**/
@ApiModelProperty(required = true, value = "The `processor_token` that can then be used by the Plaid partner to make API requests")
public String getProcessorToken() {
return processorToken;
}
public void setProcessorToken(String processorToken) {
this.processorToken = processorToken;
}
public ProcessorTokenCreateResponse 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;
}
ProcessorTokenCreateResponse processorTokenCreateResponse = (ProcessorTokenCreateResponse) o;
return Objects.equals(this.processorToken, processorTokenCreateResponse.processorToken) &&
Objects.equals(this.requestId, processorTokenCreateResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(processorToken, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ProcessorTokenCreateResponse {\n");
sb.append(" processorToken: ").append(toIndentedString(processorToken)).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/IssuesSearchResponse.java | src/main/java/com/plaid/client/model/IssuesSearchResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.Issue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* IssuesSearchResponse defines the response schema for `/issues/search`.
*/
@ApiModel(description = "IssuesSearchResponse defines the response schema for `/issues/search`.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class IssuesSearchResponse {
public static final String SERIALIZED_NAME_ISSUES = "issues";
@SerializedName(SERIALIZED_NAME_ISSUES)
private List<Issue> issues = null;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public IssuesSearchResponse issues(List<Issue> issues) {
this.issues = issues;
return this;
}
public IssuesSearchResponse addIssuesItem(Issue issuesItem) {
if (this.issues == null) {
this.issues = new ArrayList<>();
}
this.issues.add(issuesItem);
return this;
}
/**
* A list of issues affecting the Item, session, or request passed in, conforming to the Issues data model. An empty list indicates that no matching issues were found.
* @return issues
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A list of issues affecting the Item, session, or request passed in, conforming to the Issues data model. An empty list indicates that no matching issues were found.")
public List<Issue> getIssues() {
return issues;
}
public void setIssues(List<Issue> issues) {
this.issues = issues;
}
public IssuesSearchResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
IssuesSearchResponse issuesSearchResponse = (IssuesSearchResponse) o;
return Objects.equals(this.issues, issuesSearchResponse.issues) &&
Objects.equals(this.requestId, issuesSearchResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(issues, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class IssuesSearchResponse {\n");
sb.append(" issues: ").append(toIndentedString(issues)).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/WalletStatus.java | src/main/java/com/plaid/client/model/WalletStatus.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* 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 wallet. `UNKNOWN`: The wallet status is unknown. `ACTIVE`: The wallet is active and ready to send money to and receive money from. `CLOSED`: The wallet is closed. Any transactions made to or from this wallet will error.
*/
@JsonAdapter(WalletStatus.Adapter.class)
public enum WalletStatus {
UNKNOWN("UNKNOWN"),
ACTIVE("ACTIVE"),
CLOSED("CLOSED"),
// 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;
WalletStatus(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static WalletStatus fromValue(String value) {
for (WalletStatus b : WalletStatus.values()) {
if (b.value.equals(value)) {
return b;
}
}
return WalletStatus.ENUM_UNKNOWN;
}
public static class Adapter extends TypeAdapter<WalletStatus> {
@Override
public void write(final JsonWriter jsonWriter, final WalletStatus enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public WalletStatus read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return WalletStatus.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/UserRemoveResponse.java | src/main/java/com/plaid/client/model/UserRemoveResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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;
/**
* UserRemoveResponse defines the response schema for `/user/remove`
*/
@ApiModel(description = "UserRemoveResponse defines the response schema for `/user/remove`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class UserRemoveResponse {
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public UserRemoveResponse 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;
}
UserRemoveResponse userRemoveResponse = (UserRemoveResponse) o;
return Objects.equals(this.requestId, userRemoveResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UserRemoveResponse {\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/SelfieStatus.java | src/main/java/com/plaid/client/model/SelfieStatus.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import io.swagger.annotations.ApiModel;
import com.google.gson.annotations.SerializedName;
import java.io.IOException;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
/**
* An outcome status for this specific selfie. Distinct from the overall `selfie_check.status` that summarizes the verification outcome from one or more selfies.
*/
@JsonAdapter(SelfieStatus.Adapter.class)
public enum SelfieStatus {
SUCCESS("success"),
FAILED("failed"),
// This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file.
// Try upgrading your client-library version.
ENUM_UNKNOWN("ENUM_UNKNOWN");
private String value;
SelfieStatus(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static SelfieStatus fromValue(String value) {
for (SelfieStatus b : SelfieStatus.values()) {
if (b.value.equals(value)) {
return b;
}
}
return SelfieStatus.ENUM_UNKNOWN;
}
public static class Adapter extends TypeAdapter<SelfieStatus> {
@Override
public void write(final JsonWriter jsonWriter, final SelfieStatus enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public SelfieStatus read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return SelfieStatus.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/PersonalFinanceCategory.java | src/main/java/com/plaid/client/model/PersonalFinanceCategory.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.PersonalFinanceCategoryVersion;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Information describing the intent of the transaction. Most relevant for personal finance use cases, but not limited to such use cases. See the [taxonomy CSV file](https://plaid.com/documents/pfc-taxonomy-all.csv) for a full list of personal finance categories. If you are migrating to personal finance categories from the legacy categories, also refer to the [migration guide](https://plaid.com/docs/transactions/pfc-migration/).
*/
@ApiModel(description = "Information describing the intent of the transaction. Most relevant for personal finance use cases, but not limited to such use cases. See the [taxonomy CSV file](https://plaid.com/documents/pfc-taxonomy-all.csv) for a full list of personal finance categories. If you are migrating to personal finance categories from the legacy categories, also refer to the [migration guide](https://plaid.com/docs/transactions/pfc-migration/).")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class PersonalFinanceCategory {
public static final String SERIALIZED_NAME_PRIMARY = "primary";
@SerializedName(SERIALIZED_NAME_PRIMARY)
private String primary;
public static final String SERIALIZED_NAME_DETAILED = "detailed";
@SerializedName(SERIALIZED_NAME_DETAILED)
private String detailed;
public static final String SERIALIZED_NAME_CONFIDENCE_LEVEL = "confidence_level";
@SerializedName(SERIALIZED_NAME_CONFIDENCE_LEVEL)
private String confidenceLevel;
public static final String SERIALIZED_NAME_VERSION = "version";
@SerializedName(SERIALIZED_NAME_VERSION)
private PersonalFinanceCategoryVersion version;
public PersonalFinanceCategory primary(String primary) {
this.primary = primary;
return this;
}
/**
* A high level category that communicates the broad category of the transaction.
* @return primary
**/
@ApiModelProperty(required = true, value = "A high level category that communicates the broad category of the transaction.")
public String getPrimary() {
return primary;
}
public void setPrimary(String primary) {
this.primary = primary;
}
public PersonalFinanceCategory detailed(String detailed) {
this.detailed = detailed;
return this;
}
/**
* A granular category conveying the transaction's intent. This field can also be used as a unique identifier for the category.
* @return detailed
**/
@ApiModelProperty(required = true, value = "A granular category conveying the transaction's intent. This field can also be used as a unique identifier for the category.")
public String getDetailed() {
return detailed;
}
public void setDetailed(String detailed) {
this.detailed = detailed;
}
public PersonalFinanceCategory confidenceLevel(String confidenceLevel) {
this.confidenceLevel = confidenceLevel;
return this;
}
/**
* A description of how confident we are that the provided categories accurately describe the transaction intent. `VERY_HIGH`: We are more than 98% confident that this category reflects the intent of the transaction. `HIGH`: We are more than 90% confident that this category reflects the intent of the transaction. `MEDIUM`: We are moderately confident that this category reflects the intent of the transaction. `LOW`: This category may reflect the intent, but there may be other categories that are more accurate. `UNKNOWN`: We don’t know the confidence level for this category.
* @return confidenceLevel
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A description of how confident we are that the provided categories accurately describe the transaction intent. `VERY_HIGH`: We are more than 98% confident that this category reflects the intent of the transaction. `HIGH`: We are more than 90% confident that this category reflects the intent of the transaction. `MEDIUM`: We are moderately confident that this category reflects the intent of the transaction. `LOW`: This category may reflect the intent, but there may be other categories that are more accurate. `UNKNOWN`: We don’t know the confidence level for this category.")
public String getConfidenceLevel() {
return confidenceLevel;
}
public void setConfidenceLevel(String confidenceLevel) {
this.confidenceLevel = confidenceLevel;
}
public PersonalFinanceCategory version(PersonalFinanceCategoryVersion version) {
this.version = version;
return this;
}
/**
* Get version
* @return version
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public PersonalFinanceCategoryVersion getVersion() {
return version;
}
public void setVersion(PersonalFinanceCategoryVersion version) {
this.version = version;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PersonalFinanceCategory personalFinanceCategory = (PersonalFinanceCategory) o;
return Objects.equals(this.primary, personalFinanceCategory.primary) &&
Objects.equals(this.detailed, personalFinanceCategory.detailed) &&
Objects.equals(this.confidenceLevel, personalFinanceCategory.confidenceLevel) &&
Objects.equals(this.version, personalFinanceCategory.version);
}
@Override
public int hashCode() {
return Objects.hash(primary, detailed, confidenceLevel, version);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PersonalFinanceCategory {\n");
sb.append(" primary: ").append(toIndentedString(primary)).append("\n");
sb.append(" detailed: ").append(toIndentedString(detailed)).append("\n");
sb.append(" confidenceLevel: ").append(toIndentedString(confidenceLevel)).append("\n");
sb.append(" version: ").append(toIndentedString(version)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryEndingBalance.java | src/main/java/com/plaid/client/model/CashflowReportMonthlySummaryEndingBalance.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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;
/**
* The ending balance of the month. This will be the same as the starting balance of the next month. This field will not be available for the last monthly summary.
*/
@ApiModel(description = "The ending balance of the month. This will be the same as the starting balance of the next month. This field will not be available for the last monthly summary.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CashflowReportMonthlySummaryEndingBalance {
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 CashflowReportMonthlySummaryEndingBalance 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 CashflowReportMonthlySummaryEndingBalance isoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
return this;
}
/**
* The ISO-4217 currency code of the amount. Always `null` if `unofficial_currency_code` is non-`null`
* @return isoCurrencyCode
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The ISO-4217 currency code of the amount. Always `null` if `unofficial_currency_code` is non-`null`")
public String getIsoCurrencyCode() {
return isoCurrencyCode;
}
public void setIsoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
}
public CashflowReportMonthlySummaryEndingBalance unofficialCurrencyCode(String unofficialCurrencyCode) {
this.unofficialCurrencyCode = unofficialCurrencyCode;
return this;
}
/**
* The unofficial currency code of the amount. 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.
* @return unofficialCurrencyCode
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The unofficial currency code of the amount. 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;
}
CashflowReportMonthlySummaryEndingBalance cashflowReportMonthlySummaryEndingBalance = (CashflowReportMonthlySummaryEndingBalance) o;
return Objects.equals(this.amount, cashflowReportMonthlySummaryEndingBalance.amount) &&
Objects.equals(this.isoCurrencyCode, cashflowReportMonthlySummaryEndingBalance.isoCurrencyCode) &&
Objects.equals(this.unofficialCurrencyCode, cashflowReportMonthlySummaryEndingBalance.unofficialCurrencyCode);
}
@Override
public int hashCode() {
return Objects.hash(amount, isoCurrencyCode, unofficialCurrencyCode);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CashflowReportMonthlySummaryEndingBalance {\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/WalletNumbers.java | src/main/java/com/plaid/client/model/WalletNumbers.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.NumbersInternationalIBAN;
import com.plaid.client.model.RecipientBACS;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* An object representing the e-wallet account numbers
*/
@ApiModel(description = "An object representing the e-wallet account numbers")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class WalletNumbers {
public static final String SERIALIZED_NAME_BACS = "bacs";
@SerializedName(SERIALIZED_NAME_BACS)
private RecipientBACS bacs;
public static final String SERIALIZED_NAME_INTERNATIONAL = "international";
@SerializedName(SERIALIZED_NAME_INTERNATIONAL)
private NumbersInternationalIBAN international;
public WalletNumbers bacs(RecipientBACS bacs) {
this.bacs = bacs;
return this;
}
/**
* Get bacs
* @return bacs
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public RecipientBACS getBacs() {
return bacs;
}
public void setBacs(RecipientBACS bacs) {
this.bacs = bacs;
}
public WalletNumbers international(NumbersInternationalIBAN international) {
this.international = international;
return this;
}
/**
* Get international
* @return international
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public NumbersInternationalIBAN getInternational() {
return international;
}
public void setInternational(NumbersInternationalIBAN international) {
this.international = international;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
WalletNumbers walletNumbers = (WalletNumbers) o;
return Objects.equals(this.bacs, walletNumbers.bacs) &&
Objects.equals(this.international, walletNumbers.international);
}
@Override
public int hashCode() {
return Objects.hash(bacs, international);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class WalletNumbers {\n");
sb.append(" bacs: ").append(toIndentedString(bacs)).append("\n");
sb.append(" international: ").append(toIndentedString(international)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditBankIncomeTransaction.java | src/main/java/com/plaid/client/model/CreditBankIncomeTransaction.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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;
import java.time.LocalDate;
/**
* The transactions data for the end user's income source(s).
*/
@ApiModel(description = "The transactions data for the end user's income source(s).")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CreditBankIncomeTransaction {
public static final String SERIALIZED_NAME_AMOUNT = "amount";
@SerializedName(SERIALIZED_NAME_AMOUNT)
private Double amount;
public static final String SERIALIZED_NAME_DATE = "date";
@SerializedName(SERIALIZED_NAME_DATE)
private LocalDate date;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_ORIGINAL_DESCRIPTION = "original_description";
@SerializedName(SERIALIZED_NAME_ORIGINAL_DESCRIPTION)
private String originalDescription;
public static final String SERIALIZED_NAME_PENDING = "pending";
@SerializedName(SERIALIZED_NAME_PENDING)
private Boolean pending;
public static final String SERIALIZED_NAME_TRANSACTION_ID = "transaction_id";
@SerializedName(SERIALIZED_NAME_TRANSACTION_ID)
private String transactionId;
public static final String SERIALIZED_NAME_CHECK_NUMBER = "check_number";
@SerializedName(SERIALIZED_NAME_CHECK_NUMBER)
private String checkNumber;
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 CreditBankIncomeTransaction amount(Double amount) {
this.amount = amount;
return this;
}
/**
* The settled value of the transaction, denominated in the transactions's currency as stated in `iso_currency_code` or `unofficial_currency_code`. Positive values when money moves out of the account; negative values when money moves in. For example, credit card purchases are positive; credit card payment, direct deposits, and refunds are negative.
* @return amount
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The settled value of the transaction, denominated in the transactions's currency as stated in `iso_currency_code` or `unofficial_currency_code`. Positive values when money moves out of the account; negative values when money moves in. For example, credit card purchases are positive; credit card payment, direct deposits, and refunds are negative.")
public Double getAmount() {
return amount;
}
public void setAmount(Double amount) {
this.amount = amount;
}
public CreditBankIncomeTransaction date(LocalDate date) {
this.date = date;
return this;
}
/**
* For pending transactions, the date that the transaction occurred; for posted transactions, the date that the transaction posted. Both dates are returned in an ISO 8601 format (YYYY-MM-DD).
* @return date
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "For pending transactions, the date that the transaction occurred; for posted transactions, the date that the transaction posted. Both dates are returned in an ISO 8601 format (YYYY-MM-DD).")
public LocalDate getDate() {
return date;
}
public void setDate(LocalDate date) {
this.date = date;
}
public CreditBankIncomeTransaction name(String name) {
this.name = name;
return this;
}
/**
* The merchant name or transaction description.
* @return name
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The merchant name or transaction description.")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public CreditBankIncomeTransaction originalDescription(String originalDescription) {
this.originalDescription = originalDescription;
return this;
}
/**
* The string returned by the financial institution to describe the transaction.
* @return originalDescription
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The string returned by the financial institution to describe the transaction.")
public String getOriginalDescription() {
return originalDescription;
}
public void setOriginalDescription(String originalDescription) {
this.originalDescription = originalDescription;
}
public CreditBankIncomeTransaction pending(Boolean pending) {
this.pending = pending;
return this;
}
/**
* When true, identifies the transaction as pending or unsettled. Pending transaction details (name, type, amount, category ID) may change before they are settled.
* @return pending
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "When true, identifies the transaction as pending or unsettled. Pending transaction details (name, type, amount, category ID) may change before they are settled.")
public Boolean getPending() {
return pending;
}
public void setPending(Boolean pending) {
this.pending = pending;
}
public CreditBankIncomeTransaction transactionId(String transactionId) {
this.transactionId = transactionId;
return this;
}
/**
* The unique ID of the transaction. Like all Plaid identifiers, the `transaction_id` is case sensitive.
* @return transactionId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The unique ID of the transaction. Like all Plaid identifiers, the `transaction_id` is case sensitive.")
public String getTransactionId() {
return transactionId;
}
public void setTransactionId(String transactionId) {
this.transactionId = transactionId;
}
public CreditBankIncomeTransaction checkNumber(String checkNumber) {
this.checkNumber = checkNumber;
return this;
}
/**
* The check number of the transaction. This field is only populated for check transactions.
* @return checkNumber
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The check number of the transaction. This field is only populated for check transactions.")
public String getCheckNumber() {
return checkNumber;
}
public void setCheckNumber(String checkNumber) {
this.checkNumber = checkNumber;
}
public CreditBankIncomeTransaction isoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
return this;
}
/**
* The ISO 4217 currency code of the amount or balance.
* @return isoCurrencyCode
**/
@javax.annotation.Nullable
@ApiModelProperty(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 CreditBankIncomeTransaction unofficialCurrencyCode(String unofficialCurrencyCode) {
this.unofficialCurrencyCode = unofficialCurrencyCode;
return this;
}
/**
* 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.
* @return unofficialCurrencyCode
**/
@javax.annotation.Nullable
@ApiModelProperty(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;
}
CreditBankIncomeTransaction creditBankIncomeTransaction = (CreditBankIncomeTransaction) o;
return Objects.equals(this.amount, creditBankIncomeTransaction.amount) &&
Objects.equals(this.date, creditBankIncomeTransaction.date) &&
Objects.equals(this.name, creditBankIncomeTransaction.name) &&
Objects.equals(this.originalDescription, creditBankIncomeTransaction.originalDescription) &&
Objects.equals(this.pending, creditBankIncomeTransaction.pending) &&
Objects.equals(this.transactionId, creditBankIncomeTransaction.transactionId) &&
Objects.equals(this.checkNumber, creditBankIncomeTransaction.checkNumber) &&
Objects.equals(this.isoCurrencyCode, creditBankIncomeTransaction.isoCurrencyCode) &&
Objects.equals(this.unofficialCurrencyCode, creditBankIncomeTransaction.unofficialCurrencyCode);
}
@Override
public int hashCode() {
return Objects.hash(amount, date, name, originalDescription, pending, transactionId, checkNumber, isoCurrencyCode, unofficialCurrencyCode);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreditBankIncomeTransaction {\n");
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
sb.append(" date: ").append(toIndentedString(date)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" originalDescription: ").append(toIndentedString(originalDescription)).append("\n");
sb.append(" pending: ").append(toIndentedString(pending)).append("\n");
sb.append(" transactionId: ").append(toIndentedString(transactionId)).append("\n");
sb.append(" checkNumber: ").append(toIndentedString(checkNumber)).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/AccountProductAccessNullable.java | src/main/java/com/plaid/client/model/AccountProductAccessNullable.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.AccountProductAccess;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Allow the application to access specific products on this account
*/
@ApiModel(description = "Allow the application to access specific products on this account")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class AccountProductAccessNullable {
public static final String SERIALIZED_NAME_ACCOUNT_DATA = "account_data";
@SerializedName(SERIALIZED_NAME_ACCOUNT_DATA)
private Boolean accountData = true;
public static final String SERIALIZED_NAME_STATEMENTS = "statements";
@SerializedName(SERIALIZED_NAME_STATEMENTS)
private Boolean statements = true;
public static final String SERIALIZED_NAME_TAX_DOCUMENTS = "tax_documents";
@SerializedName(SERIALIZED_NAME_TAX_DOCUMENTS)
private Boolean taxDocuments = true;
public AccountProductAccessNullable accountData(Boolean accountData) {
this.accountData = accountData;
return this;
}
/**
* Allow the application to access account data. Only used by certain partners. If relevant to the partner and unset, defaults to `true`.
* @return accountData
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Allow the application to access account data. Only used by certain partners. If relevant to the partner and unset, defaults to `true`.")
public Boolean getAccountData() {
return accountData;
}
public void setAccountData(Boolean accountData) {
this.accountData = accountData;
}
public AccountProductAccessNullable statements(Boolean statements) {
this.statements = statements;
return this;
}
/**
* Allow the application to access bank statements. Only used by certain partners. If relevant to the partner and unset, defaults to `true`.
* @return statements
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Allow the application to access bank statements. Only used by certain partners. If relevant to the partner and unset, defaults to `true`.")
public Boolean getStatements() {
return statements;
}
public void setStatements(Boolean statements) {
this.statements = statements;
}
public AccountProductAccessNullable taxDocuments(Boolean taxDocuments) {
this.taxDocuments = taxDocuments;
return this;
}
/**
* Allow the application to access tax documents. Only used by certain partners. If relevant to the partner and unset, defaults to `true`.
* @return taxDocuments
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Allow the application to access tax documents. Only used by certain partners. If relevant to the partner and unset, defaults to `true`.")
public Boolean getTaxDocuments() {
return taxDocuments;
}
public void setTaxDocuments(Boolean taxDocuments) {
this.taxDocuments = taxDocuments;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AccountProductAccessNullable accountProductAccessNullable = (AccountProductAccessNullable) o;
return Objects.equals(this.accountData, accountProductAccessNullable.accountData) &&
Objects.equals(this.statements, accountProductAccessNullable.statements) &&
Objects.equals(this.taxDocuments, accountProductAccessNullable.taxDocuments);
}
@Override
public int hashCode() {
return Objects.hash(accountData, statements, taxDocuments);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AccountProductAccessNullable {\n");
sb.append(" accountData: ").append(toIndentedString(accountData)).append("\n");
sb.append(" statements: ").append(toIndentedString(statements)).append("\n");
sb.append(" taxDocuments: ").append(toIndentedString(taxDocuments)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BeaconUserDepositoryAccount.java | src/main/java/com/plaid/client/model/BeaconUserDepositoryAccount.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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;
/**
* Depository account information for the associated user.
*/
@ApiModel(description = "Depository account information for the associated user.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class BeaconUserDepositoryAccount {
public static final String SERIALIZED_NAME_ACCOUNT_MASK = "account_mask";
@SerializedName(SERIALIZED_NAME_ACCOUNT_MASK)
private String accountMask;
public static final String SERIALIZED_NAME_ROUTING_NUMBER = "routing_number";
@SerializedName(SERIALIZED_NAME_ROUTING_NUMBER)
private String routingNumber;
public static final String SERIALIZED_NAME_ADDED_AT = "added_at";
@SerializedName(SERIALIZED_NAME_ADDED_AT)
private java.sql.Timestamp addedAt;
public BeaconUserDepositoryAccount accountMask(String accountMask) {
this.accountMask = accountMask;
return this;
}
/**
* The last 2-4 numeric characters of this account’s account number.
* @return accountMask
**/
@ApiModelProperty(example = "4000", required = true, value = "The last 2-4 numeric characters of this account’s account number.")
public String getAccountMask() {
return accountMask;
}
public void setAccountMask(String accountMask) {
this.accountMask = accountMask;
}
public BeaconUserDepositoryAccount routingNumber(String routingNumber) {
this.routingNumber = routingNumber;
return this;
}
/**
* The routing number of the account.
* @return routingNumber
**/
@ApiModelProperty(example = "021000021", required = true, value = "The routing number of the account.")
public String getRoutingNumber() {
return routingNumber;
}
public void setRoutingNumber(String routingNumber) {
this.routingNumber = routingNumber;
}
public BeaconUserDepositoryAccount addedAt(java.sql.Timestamp addedAt) {
this.addedAt = addedAt;
return this;
}
/**
* Get addedAt
* @return addedAt
**/
@ApiModelProperty(required = true, value = "")
public java.sql.Timestamp getAddedAt() {
return addedAt;
}
public void setAddedAt(java.sql.Timestamp addedAt) {
this.addedAt = addedAt;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BeaconUserDepositoryAccount beaconUserDepositoryAccount = (BeaconUserDepositoryAccount) o;
return Objects.equals(this.accountMask, beaconUserDepositoryAccount.accountMask) &&
Objects.equals(this.routingNumber, beaconUserDepositoryAccount.routingNumber) &&
Objects.equals(this.addedAt, beaconUserDepositoryAccount.addedAt);
}
@Override
public int hashCode() {
return Objects.hash(accountMask, routingNumber, addedAt);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BeaconUserDepositoryAccount {\n");
sb.append(" accountMask: ").append(toIndentedString(accountMask)).append("\n");
sb.append(" routingNumber: ").append(toIndentedString(routingNumber)).append("\n");
sb.append(" addedAt: ").append(toIndentedString(addedAt)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ProcessorHistoricalUpdateWebhook.java | src/main/java/com/plaid/client/model/ProcessorHistoricalUpdateWebhook.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.PlaidError;
import com.plaid.client.model.WebhookEnvironmentValues;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
/**
* This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when an Item's historical transaction pull is completed and Plaid has prepared as much historical transaction data as possible for the Item. Once this webhook has been fired, transaction data beyond the most recent 30 days can be fetched for the Item. This webhook will also be fired if account selections for the Item are updated, with `new_transactions` set to the number of net new transactions pulled after the account selection update. This webhook is intended for use with `/processor/transactions/get`; if you are using the newer `/processor/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead.
*/
@ApiModel(description = "This webhook is only sent to [Plaid processor partners](https://plaid.com/docs/auth/partnerships/). Fired when an Item's historical transaction pull is completed and Plaid has prepared as much historical transaction data as possible for the Item. Once this webhook has been fired, transaction data beyond the most recent 30 days can be fetched for the Item. This webhook will also be fired if account selections for the Item are updated, with `new_transactions` set to the number of net new transactions pulled after the account selection update. This webhook is intended for use with `/processor/transactions/get`; if you are using the newer `/processor/transactions/sync` endpoint, this webhook will still be fired to maintain backwards compatibility, but it is recommended to listen for and respond to the `SYNC_UPDATES_AVAILABLE` webhook instead.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ProcessorHistoricalUpdateWebhook {
public static final String SERIALIZED_NAME_WEBHOOK_TYPE = "webhook_type";
@SerializedName(SERIALIZED_NAME_WEBHOOK_TYPE)
private String webhookType;
public static final String SERIALIZED_NAME_WEBHOOK_CODE = "webhook_code";
@SerializedName(SERIALIZED_NAME_WEBHOOK_CODE)
private String webhookCode;
public static final String SERIALIZED_NAME_ERROR = "error";
@SerializedName(SERIALIZED_NAME_ERROR)
private PlaidError error;
public static final String SERIALIZED_NAME_NEW_TRANSACTIONS = "new_transactions";
@SerializedName(SERIALIZED_NAME_NEW_TRANSACTIONS)
private Double newTransactions;
public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
private String accountId;
public static final String SERIALIZED_NAME_ENVIRONMENT = "environment";
@SerializedName(SERIALIZED_NAME_ENVIRONMENT)
private WebhookEnvironmentValues environment;
public ProcessorHistoricalUpdateWebhook webhookType(String webhookType) {
this.webhookType = webhookType;
return this;
}
/**
* `TRANSACTIONS`
* @return webhookType
**/
@ApiModelProperty(required = true, value = "`TRANSACTIONS`")
public String getWebhookType() {
return webhookType;
}
public void setWebhookType(String webhookType) {
this.webhookType = webhookType;
}
public ProcessorHistoricalUpdateWebhook webhookCode(String webhookCode) {
this.webhookCode = webhookCode;
return this;
}
/**
* `HISTORICAL_UPDATE`
* @return webhookCode
**/
@ApiModelProperty(required = true, value = "`HISTORICAL_UPDATE`")
public String getWebhookCode() {
return webhookCode;
}
public void setWebhookCode(String webhookCode) {
this.webhookCode = webhookCode;
}
public ProcessorHistoricalUpdateWebhook error(PlaidError error) {
this.error = error;
return this;
}
/**
* Get error
* @return error
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public PlaidError getError() {
return error;
}
public void setError(PlaidError error) {
this.error = error;
}
public ProcessorHistoricalUpdateWebhook newTransactions(Double newTransactions) {
this.newTransactions = newTransactions;
return this;
}
/**
* The number of new transactions available
* @return newTransactions
**/
@ApiModelProperty(required = true, value = "The number of new transactions available")
public Double getNewTransactions() {
return newTransactions;
}
public void setNewTransactions(Double newTransactions) {
this.newTransactions = newTransactions;
}
public ProcessorHistoricalUpdateWebhook accountId(String accountId) {
this.accountId = accountId;
return this;
}
/**
* The ID of the account.
* @return accountId
**/
@ApiModelProperty(required = true, value = "The ID of the account.")
public String getAccountId() {
return accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public ProcessorHistoricalUpdateWebhook 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;
}
ProcessorHistoricalUpdateWebhook processorHistoricalUpdateWebhook = (ProcessorHistoricalUpdateWebhook) o;
return Objects.equals(this.webhookType, processorHistoricalUpdateWebhook.webhookType) &&
Objects.equals(this.webhookCode, processorHistoricalUpdateWebhook.webhookCode) &&
Objects.equals(this.error, processorHistoricalUpdateWebhook.error) &&
Objects.equals(this.newTransactions, processorHistoricalUpdateWebhook.newTransactions) &&
Objects.equals(this.accountId, processorHistoricalUpdateWebhook.accountId) &&
Objects.equals(this.environment, processorHistoricalUpdateWebhook.environment);
}
@Override
public int hashCode() {
return Objects.hash(webhookType, webhookCode, error, newTransactions, accountId, environment);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ProcessorHistoricalUpdateWebhook {\n");
sb.append(" webhookType: ").append(toIndentedString(webhookType)).append("\n");
sb.append(" webhookCode: ").append(toIndentedString(webhookCode)).append("\n");
sb.append(" error: ").append(toIndentedString(error)).append("\n");
sb.append(" newTransactions: ").append(toIndentedString(newTransactions)).append("\n");
sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
sb.append(" environment: ").append(toIndentedString(environment)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PartnerCustomerGetResponse.java | src/main/java/com/plaid/client/model/PartnerCustomerGetResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.PartnerEndCustomer;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Response schema for `/partner/customer/get`.
*/
@ApiModel(description = "Response schema for `/partner/customer/get`.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class PartnerCustomerGetResponse {
public static final String SERIALIZED_NAME_END_CUSTOMER = "end_customer";
@SerializedName(SERIALIZED_NAME_END_CUSTOMER)
private PartnerEndCustomer endCustomer;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public PartnerCustomerGetResponse endCustomer(PartnerEndCustomer endCustomer) {
this.endCustomer = endCustomer;
return this;
}
/**
* Get endCustomer
* @return endCustomer
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public PartnerEndCustomer getEndCustomer() {
return endCustomer;
}
public void setEndCustomer(PartnerEndCustomer endCustomer) {
this.endCustomer = endCustomer;
}
public PartnerCustomerGetResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
* @return requestId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PartnerCustomerGetResponse partnerCustomerGetResponse = (PartnerCustomerGetResponse) o;
return Objects.equals(this.endCustomer, partnerCustomerGetResponse.endCustomer) &&
Objects.equals(this.requestId, partnerCustomerGetResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(endCustomer, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PartnerCustomerGetResponse {\n");
sb.append(" endCustomer: ").append(toIndentedString(endCustomer)).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/FDXPartyRegistry.java | src/main/java/com/plaid/client/model/FDXPartyRegistry.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* 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 registry containing the party’s registration with name and id
*/
@JsonAdapter(FDXPartyRegistry.Adapter.class)
public enum FDXPartyRegistry {
FDX("FDX"),
GLEIF("GLEIF"),
ICANN("ICANN"),
PRIVATE("PRIVATE"),
// 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;
FDXPartyRegistry(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static FDXPartyRegistry fromValue(String value) {
for (FDXPartyRegistry b : FDXPartyRegistry.values()) {
if (b.value.equals(value)) {
return b;
}
}
return FDXPartyRegistry.ENUM_UNKNOWN;
}
public static class Adapter extends TypeAdapter<FDXPartyRegistry> {
@Override
public void write(final JsonWriter jsonWriter, final FDXPartyRegistry enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public FDXPartyRegistry read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return FDXPartyRegistry.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/SandboxTransferRefundSimulateResponse.java | src/main/java/com/plaid/client/model/SandboxTransferRefundSimulateResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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 `/sandbox/transfer/refund/simulate`
*/
@ApiModel(description = "Defines the response schema for `/sandbox/transfer/refund/simulate`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class SandboxTransferRefundSimulateResponse {
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public SandboxTransferRefundSimulateResponse 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;
}
SandboxTransferRefundSimulateResponse sandboxTransferRefundSimulateResponse = (SandboxTransferRefundSimulateResponse) o;
return Objects.equals(this.requestId, sandboxTransferRefundSimulateResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SandboxTransferRefundSimulateResponse {\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/CounterpartyNumbers.java | src/main/java/com/plaid/client/model/CounterpartyNumbers.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.CounterpartyNumbersBACS;
import com.plaid.client.model.CounterpartyNumbersInternational;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Account numbers associated with the counterparty, when available. This field is currently only filled in for select financial institutions in Europe.
*/
@ApiModel(description = "Account numbers associated with the counterparty, when available. This field is currently only filled in for select financial institutions in Europe.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CounterpartyNumbers {
public static final String SERIALIZED_NAME_BACS = "bacs";
@SerializedName(SERIALIZED_NAME_BACS)
private CounterpartyNumbersBACS bacs;
public static final String SERIALIZED_NAME_INTERNATIONAL = "international";
@SerializedName(SERIALIZED_NAME_INTERNATIONAL)
private CounterpartyNumbersInternational international;
public CounterpartyNumbers bacs(CounterpartyNumbersBACS bacs) {
this.bacs = bacs;
return this;
}
/**
* Get bacs
* @return bacs
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public CounterpartyNumbersBACS getBacs() {
return bacs;
}
public void setBacs(CounterpartyNumbersBACS bacs) {
this.bacs = bacs;
}
public CounterpartyNumbers international(CounterpartyNumbersInternational international) {
this.international = international;
return this;
}
/**
* Get international
* @return international
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public CounterpartyNumbersInternational getInternational() {
return international;
}
public void setInternational(CounterpartyNumbersInternational international) {
this.international = international;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CounterpartyNumbers counterpartyNumbers = (CounterpartyNumbers) o;
return Objects.equals(this.bacs, counterpartyNumbers.bacs) &&
Objects.equals(this.international, counterpartyNumbers.international);
}
@Override
public int hashCode() {
return Objects.hash(bacs, international);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CounterpartyNumbers {\n");
sb.append(" bacs: ").append(toIndentedString(bacs)).append("\n");
sb.append(" international: ").append(toIndentedString(international)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BankTransferCreateResponse.java | src/main/java/com/plaid/client/model/BankTransferCreateResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.BankTransfer;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Defines the response schema for `/bank_transfer/create`
*/
@ApiModel(description = "Defines the response schema for `/bank_transfer/create`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class BankTransferCreateResponse {
public static final String SERIALIZED_NAME_BANK_TRANSFER = "bank_transfer";
@SerializedName(SERIALIZED_NAME_BANK_TRANSFER)
private BankTransfer bankTransfer;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public BankTransferCreateResponse bankTransfer(BankTransfer bankTransfer) {
this.bankTransfer = bankTransfer;
return this;
}
/**
* Get bankTransfer
* @return bankTransfer
**/
@ApiModelProperty(required = true, value = "")
public BankTransfer getBankTransfer() {
return bankTransfer;
}
public void setBankTransfer(BankTransfer bankTransfer) {
this.bankTransfer = bankTransfer;
}
public BankTransferCreateResponse 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;
}
BankTransferCreateResponse bankTransferCreateResponse = (BankTransferCreateResponse) o;
return Objects.equals(this.bankTransfer, bankTransferCreateResponse.bankTransfer) &&
Objects.equals(this.requestId, bankTransferCreateResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(bankTransfer, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BankTransferCreateResponse {\n");
sb.append(" bankTransfer: ").append(toIndentedString(bankTransfer)).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/WatchlistScreeningEntityCreateRequest.java | src/main/java/com/plaid/client/model/WatchlistScreeningEntityCreateRequest.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.EntityWatchlistSearchTerms;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Request input for creating an entity screening review
*/
@ApiModel(description = "Request input for creating an entity screening review")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class WatchlistScreeningEntityCreateRequest {
public static final String SERIALIZED_NAME_SEARCH_TERMS = "search_terms";
@SerializedName(SERIALIZED_NAME_SEARCH_TERMS)
private EntityWatchlistSearchTerms searchTerms;
public static final String SERIALIZED_NAME_CLIENT_USER_ID = "client_user_id";
@SerializedName(SERIALIZED_NAME_CLIENT_USER_ID)
private String clientUserId;
public static final String SERIALIZED_NAME_CLIENT_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 WatchlistScreeningEntityCreateRequest searchTerms(EntityWatchlistSearchTerms searchTerms) {
this.searchTerms = searchTerms;
return this;
}
/**
* Get searchTerms
* @return searchTerms
**/
@ApiModelProperty(required = true, value = "")
public EntityWatchlistSearchTerms getSearchTerms() {
return searchTerms;
}
public void setSearchTerms(EntityWatchlistSearchTerms searchTerms) {
this.searchTerms = searchTerms;
}
public WatchlistScreeningEntityCreateRequest 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 `/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`.
* @return clientUserId
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "your-db-id-3b24110", value = "A unique ID that identifies the end user in your system. This ID can also be used to associate user-specific data from other Plaid products. Financial Account Matching requires this field and the `/link/token/create` `client_user_id` to be consistent. Personally identifiable information, such as an email address or phone number, should not be used in the `client_user_id`.")
public String getClientUserId() {
return clientUserId;
}
public void setClientUserId(String clientUserId) {
this.clientUserId = clientUserId;
}
public WatchlistScreeningEntityCreateRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public WatchlistScreeningEntityCreateRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
WatchlistScreeningEntityCreateRequest watchlistScreeningEntityCreateRequest = (WatchlistScreeningEntityCreateRequest) o;
return Objects.equals(this.searchTerms, watchlistScreeningEntityCreateRequest.searchTerms) &&
Objects.equals(this.clientUserId, watchlistScreeningEntityCreateRequest.clientUserId) &&
Objects.equals(this.clientId, watchlistScreeningEntityCreateRequest.clientId) &&
Objects.equals(this.secret, watchlistScreeningEntityCreateRequest.secret);
}
@Override
public int hashCode() {
return Objects.hash(searchTerms, clientUserId, clientId, secret);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class WatchlistScreeningEntityCreateRequest {\n");
sb.append(" searchTerms: ").append(toIndentedString(searchTerms)).append("\n");
sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).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/CashFlowUpdatesEventWebhookCodes.java | src/main/java/com/plaid/client/model/CashFlowUpdatesEventWebhookCodes.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* 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;
/**
* Webhook code for a Cash Flow Updates event.
*/
@JsonAdapter(CashFlowUpdatesEventWebhookCodes.Adapter.class)
public enum CashFlowUpdatesEventWebhookCodes {
LARGE_DEPOSIT_DETECTED("LARGE_DEPOSIT_DETECTED"),
LOW_BALANCE_DETECTED("LOW_BALANCE_DETECTED"),
NEW_LOAN_PAYMENT_DETECTED("NEW_LOAN_PAYMENT_DETECTED"),
NSF_OVERDRAFT_DETECTED("NSF_OVERDRAFT_DETECTED"),
// This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file.
// Try upgrading your client-library version.
ENUM_UNKNOWN("ENUM_UNKNOWN");
private String value;
CashFlowUpdatesEventWebhookCodes(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static CashFlowUpdatesEventWebhookCodes fromValue(String value) {
for (CashFlowUpdatesEventWebhookCodes b : CashFlowUpdatesEventWebhookCodes.values()) {
if (b.value.equals(value)) {
return b;
}
}
return CashFlowUpdatesEventWebhookCodes.ENUM_UNKNOWN;
}
public static class Adapter extends TypeAdapter<CashFlowUpdatesEventWebhookCodes> {
@Override
public void write(final JsonWriter jsonWriter, final CashFlowUpdatesEventWebhookCodes enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public CashFlowUpdatesEventWebhookCodes read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return CashFlowUpdatesEventWebhookCodes.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/ProcessorBalanceGetResponse.java | src/main/java/com/plaid/client/model/ProcessorBalanceGetResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* ProcessorBalanceGetResponse defines the response schema for `/processor/balance/get`
*/
@ApiModel(description = "ProcessorBalanceGetResponse defines the response schema for `/processor/balance/get`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ProcessorBalanceGetResponse {
public static final String SERIALIZED_NAME_ACCOUNT = "account";
@SerializedName(SERIALIZED_NAME_ACCOUNT)
private AccountBase account;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public ProcessorBalanceGetResponse account(AccountBase account) {
this.account = account;
return this;
}
/**
* Get account
* @return account
**/
@ApiModelProperty(required = true, value = "")
public AccountBase getAccount() {
return account;
}
public void setAccount(AccountBase account) {
this.account = account;
}
public ProcessorBalanceGetResponse 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;
}
ProcessorBalanceGetResponse processorBalanceGetResponse = (ProcessorBalanceGetResponse) o;
return Objects.equals(this.account, processorBalanceGetResponse.account) &&
Objects.equals(this.requestId, processorBalanceGetResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(account, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ProcessorBalanceGetResponse {\n");
sb.append(" account: ").append(toIndentedString(account)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SecurityOverride.java | src/main/java/com/plaid/client/model/SecurityOverride.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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;
/**
* Specify the security associated with the holding or investment transaction. When inputting custom security data to the Sandbox, Plaid will perform post-data-retrieval normalization and enrichment. These processes may cause the data returned by the Sandbox to be slightly different from the data you input. An ISO-4217 currency code and a security identifier (`ticker_symbol`, `cusip`, or `isin`) are required.
*/
@ApiModel(description = "Specify the security associated with the holding or investment transaction. When inputting custom security data to the Sandbox, Plaid will perform post-data-retrieval normalization and enrichment. These processes may cause the data returned by the Sandbox to be slightly different from the data you input. An ISO-4217 currency code and a security identifier (`ticker_symbol`, `cusip`, or `isin`) are required.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class SecurityOverride {
public static final String SERIALIZED_NAME_ISIN = "isin";
@SerializedName(SERIALIZED_NAME_ISIN)
private String isin;
public static final String SERIALIZED_NAME_CUSIP = "cusip";
@SerializedName(SERIALIZED_NAME_CUSIP)
private String cusip;
public static final String SERIALIZED_NAME_SEDOL = "sedol";
@SerializedName(SERIALIZED_NAME_SEDOL)
private String sedol;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_TICKER_SYMBOL = "ticker_symbol";
@SerializedName(SERIALIZED_NAME_TICKER_SYMBOL)
private String tickerSymbol;
public static final String SERIALIZED_NAME_CURRENCY = "currency";
@SerializedName(SERIALIZED_NAME_CURRENCY)
private String currency;
public SecurityOverride isin(String isin) {
this.isin = isin;
return this;
}
/**
* 12-character ISIN, a globally unique securities identifier. A verified CUSIP Global Services license is required to receive this data. This field will be null by default for new customers, and null for existing customers starting March 12, 2024. If you would like access to this field, please [request ISIN/CUSIP access here](https://docs.google.com/forms/d/e/1FAIpQLSd9asHEYEfmf8fxJTHZTAfAzW4dugsnSu-HS2J51f1mxwd6Sw/viewform).
* @return isin
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "12-character ISIN, a globally unique securities identifier. A verified CUSIP Global Services license is required to receive this data. This field will be null by default for new customers, and null for existing customers starting March 12, 2024. If you would like access to this field, please [request ISIN/CUSIP access here](https://docs.google.com/forms/d/e/1FAIpQLSd9asHEYEfmf8fxJTHZTAfAzW4dugsnSu-HS2J51f1mxwd6Sw/viewform).")
public String getIsin() {
return isin;
}
public void setIsin(String isin) {
this.isin = isin;
}
public SecurityOverride cusip(String cusip) {
this.cusip = cusip;
return this;
}
/**
* 9-character CUSIP, an identifier assigned to North American securities. A verified CUSIP Global Services license is required to receive this data. This field will be null by default for new customers, and null for existing customers starting March 12, 2024. If you would like access to this field, please [request ISIN/CUSIP access here](https://docs.google.com/forms/d/e/1FAIpQLSd9asHEYEfmf8fxJTHZTAfAzW4dugsnSu-HS2J51f1mxwd6Sw/viewform).
* @return cusip
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "9-character CUSIP, an identifier assigned to North American securities. A verified CUSIP Global Services license is required to receive this data. This field will be null by default for new customers, and null for existing customers starting March 12, 2024. If you would like access to this field, please [request ISIN/CUSIP access here](https://docs.google.com/forms/d/e/1FAIpQLSd9asHEYEfmf8fxJTHZTAfAzW4dugsnSu-HS2J51f1mxwd6Sw/viewform).")
public String getCusip() {
return cusip;
}
public void setCusip(String cusip) {
this.cusip = cusip;
}
public SecurityOverride sedol(String sedol) {
this.sedol = sedol;
return this;
}
/**
* (Deprecated) 7-character SEDOL, an identifier assigned to securities in the UK.
* @return sedol
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "(Deprecated) 7-character SEDOL, an identifier assigned to securities in the UK.")
public String getSedol() {
return sedol;
}
public void setSedol(String sedol) {
this.sedol = sedol;
}
public SecurityOverride name(String name) {
this.name = name;
return this;
}
/**
* A descriptive name for the security, suitable for display.
* @return name
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A descriptive name for the security, suitable for display.")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public SecurityOverride tickerSymbol(String tickerSymbol) {
this.tickerSymbol = tickerSymbol;
return this;
}
/**
* The security’s trading symbol for publicly traded securities, and otherwise a short identifier if available.
* @return tickerSymbol
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The security’s trading symbol for publicly traded securities, and otherwise a short identifier if available.")
public String getTickerSymbol() {
return tickerSymbol;
}
public void setTickerSymbol(String tickerSymbol) {
this.tickerSymbol = tickerSymbol;
}
public SecurityOverride currency(String currency) {
this.currency = currency;
return this;
}
/**
* Either a valid `iso_currency_code` or `unofficial_currency_code`
* @return currency
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Either a valid `iso_currency_code` or `unofficial_currency_code`")
public String getCurrency() {
return currency;
}
public void setCurrency(String currency) {
this.currency = currency;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SecurityOverride securityOverride = (SecurityOverride) o;
return Objects.equals(this.isin, securityOverride.isin) &&
Objects.equals(this.cusip, securityOverride.cusip) &&
Objects.equals(this.sedol, securityOverride.sedol) &&
Objects.equals(this.name, securityOverride.name) &&
Objects.equals(this.tickerSymbol, securityOverride.tickerSymbol) &&
Objects.equals(this.currency, securityOverride.currency);
}
@Override
public int hashCode() {
return Objects.hash(isin, cusip, sedol, name, tickerSymbol, currency);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SecurityOverride {\n");
sb.append(" isin: ").append(toIndentedString(isin)).append("\n");
sb.append(" cusip: ").append(toIndentedString(cusip)).append("\n");
sb.append(" sedol: ").append(toIndentedString(sedol)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" tickerSymbol: ").append(toIndentedString(tickerSymbol)).append("\n");
sb.append(" currency: ").append(toIndentedString(currency)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WatchlistScreeningRequestSearchTerms.java | src/main/java/com/plaid/client/model/WatchlistScreeningRequestSearchTerms.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.time.LocalDate;
/**
* Search inputs for creating a watchlist screening
*/
@ApiModel(description = "Search inputs for creating a watchlist screening")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class WatchlistScreeningRequestSearchTerms {
public static final String SERIALIZED_NAME_WATCHLIST_PROGRAM_ID = "watchlist_program_id";
@SerializedName(SERIALIZED_NAME_WATCHLIST_PROGRAM_ID)
private String watchlistProgramId;
public static final String SERIALIZED_NAME_LEGAL_NAME = "legal_name";
@SerializedName(SERIALIZED_NAME_LEGAL_NAME)
private String legalName;
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_DOCUMENT_NUMBER = "document_number";
@SerializedName(SERIALIZED_NAME_DOCUMENT_NUMBER)
private String documentNumber;
public static final String SERIALIZED_NAME_COUNTRY = "country";
@SerializedName(SERIALIZED_NAME_COUNTRY)
private String country;
public WatchlistScreeningRequestSearchTerms watchlistProgramId(String watchlistProgramId) {
this.watchlistProgramId = watchlistProgramId;
return this;
}
/**
* ID of the associated program.
* @return watchlistProgramId
**/
@ApiModelProperty(example = "prg_2eRPsDnL66rZ7H", required = true, value = "ID of the associated program.")
public String getWatchlistProgramId() {
return watchlistProgramId;
}
public void setWatchlistProgramId(String watchlistProgramId) {
this.watchlistProgramId = watchlistProgramId;
}
public WatchlistScreeningRequestSearchTerms legalName(String legalName) {
this.legalName = legalName;
return this;
}
/**
* The legal name of the individual being screened. Must have at least one alphabetical character, have a maximum length of 100 characters, and not include leading or trailing spaces.
* @return legalName
**/
@ApiModelProperty(example = "Aleksey Potemkin", required = true, value = "The legal name of the individual being screened. Must have at least one alphabetical character, have a maximum length of 100 characters, and not include leading or trailing spaces.")
public String getLegalName() {
return legalName;
}
public void setLegalName(String legalName) {
this.legalName = legalName;
}
public WatchlistScreeningRequestSearchTerms 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 WatchlistScreeningRequestSearchTerms documentNumber(String documentNumber) {
this.documentNumber = documentNumber;
return this;
}
/**
* The numeric or alphanumeric identifier associated with this document. Must be between 4 and 32 characters long, and cannot have leading or trailing spaces.
* @return documentNumber
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "C31195855", value = "The numeric or alphanumeric identifier associated with this document. Must be between 4 and 32 characters long, and cannot have leading or trailing spaces.")
public String getDocumentNumber() {
return documentNumber;
}
public void setDocumentNumber(String documentNumber) {
this.documentNumber = documentNumber;
}
public WatchlistScreeningRequestSearchTerms country(String country) {
this.country = country;
return this;
}
/**
* Valid, capitalized, two-letter ISO code representing the country of this object. Must be in ISO 3166-1 alpha-2 form.
* @return country
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "US", 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;
}
WatchlistScreeningRequestSearchTerms watchlistScreeningRequestSearchTerms = (WatchlistScreeningRequestSearchTerms) o;
return Objects.equals(this.watchlistProgramId, watchlistScreeningRequestSearchTerms.watchlistProgramId) &&
Objects.equals(this.legalName, watchlistScreeningRequestSearchTerms.legalName) &&
Objects.equals(this.dateOfBirth, watchlistScreeningRequestSearchTerms.dateOfBirth) &&
Objects.equals(this.documentNumber, watchlistScreeningRequestSearchTerms.documentNumber) &&
Objects.equals(this.country, watchlistScreeningRequestSearchTerms.country);
}
@Override
public int hashCode() {
return Objects.hash(watchlistProgramId, legalName, dateOfBirth, documentNumber, country);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class WatchlistScreeningRequestSearchTerms {\n");
sb.append(" watchlistProgramId: ").append(toIndentedString(watchlistProgramId)).append("\n");
sb.append(" legalName: ").append(toIndentedString(legalName)).append("\n");
sb.append(" dateOfBirth: ").append(toIndentedString(dateOfBirth)).append("\n");
sb.append(" documentNumber: ").append(toIndentedString(documentNumber)).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/CreditPayStubNetPay.java | src/main/java/com/plaid/client/model/CreditPayStubNetPay.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* An object representing information about the net pay amount on the pay stub.
*/
@ApiModel(description = "An object representing information about the net pay amount on the pay stub.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CreditPayStubNetPay {
public static final String SERIALIZED_NAME_CURRENT_AMOUNT = "current_amount";
@SerializedName(SERIALIZED_NAME_CURRENT_AMOUNT)
private Double currentAmount;
public static final String SERIALIZED_NAME_DESCRIPTION = "description";
@SerializedName(SERIALIZED_NAME_DESCRIPTION)
private String description;
public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code";
@SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE)
private String isoCurrencyCode;
public static final String SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE = "unofficial_currency_code";
@SerializedName(SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE)
private String unofficialCurrencyCode;
public static final String SERIALIZED_NAME_YTD_AMOUNT = "ytd_amount";
@SerializedName(SERIALIZED_NAME_YTD_AMOUNT)
private Double ytdAmount;
public CreditPayStubNetPay currentAmount(Double currentAmount) {
this.currentAmount = currentAmount;
return this;
}
/**
* Raw amount of the net pay for the pay period.
* @return currentAmount
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Raw amount of the net pay for the pay period.")
public Double getCurrentAmount() {
return currentAmount;
}
public void setCurrentAmount(Double currentAmount) {
this.currentAmount = currentAmount;
}
public CreditPayStubNetPay description(String description) {
this.description = description;
return this;
}
/**
* Description of the net pay.
* @return description
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Description of the net pay.")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public CreditPayStubNetPay isoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
return this;
}
/**
* The ISO-4217 currency code of the net pay. Always `null` if `unofficial_currency_code` is non-null.
* @return isoCurrencyCode
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The ISO-4217 currency code of the net pay. Always `null` if `unofficial_currency_code` is non-null.")
public String getIsoCurrencyCode() {
return isoCurrencyCode;
}
public void setIsoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
}
public CreditPayStubNetPay unofficialCurrencyCode(String unofficialCurrencyCode) {
this.unofficialCurrencyCode = unofficialCurrencyCode;
return this;
}
/**
* The unofficial currency code associated with the net pay. 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.
* @return unofficialCurrencyCode
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The unofficial currency code associated with the net pay. Always `null` if `iso_currency_code` is non-`null`. Unofficial currency codes are used for currencies that do not have official ISO currency codes, such as cryptocurrencies and the currencies of certain countries. See the [currency code schema](https://plaid.com/docs/api/accounts#currency-code-schema) for a full listing of supported `iso_currency_code`s.")
public String getUnofficialCurrencyCode() {
return unofficialCurrencyCode;
}
public void setUnofficialCurrencyCode(String unofficialCurrencyCode) {
this.unofficialCurrencyCode = unofficialCurrencyCode;
}
public CreditPayStubNetPay ytdAmount(Double ytdAmount) {
this.ytdAmount = ytdAmount;
return this;
}
/**
* The year-to-date amount of the net pay.
* @return ytdAmount
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The year-to-date amount of the net pay.")
public Double getYtdAmount() {
return ytdAmount;
}
public void setYtdAmount(Double ytdAmount) {
this.ytdAmount = ytdAmount;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreditPayStubNetPay creditPayStubNetPay = (CreditPayStubNetPay) o;
return Objects.equals(this.currentAmount, creditPayStubNetPay.currentAmount) &&
Objects.equals(this.description, creditPayStubNetPay.description) &&
Objects.equals(this.isoCurrencyCode, creditPayStubNetPay.isoCurrencyCode) &&
Objects.equals(this.unofficialCurrencyCode, creditPayStubNetPay.unofficialCurrencyCode) &&
Objects.equals(this.ytdAmount, creditPayStubNetPay.ytdAmount);
}
@Override
public int hashCode() {
return Objects.hash(currentAmount, description, isoCurrencyCode, unofficialCurrencyCode, ytdAmount);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreditPayStubNetPay {\n");
sb.append(" currentAmount: ").append(toIndentedString(currentAmount)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n");
sb.append(" unofficialCurrencyCode: ").append(toIndentedString(unofficialCurrencyCode)).append("\n");
sb.append(" ytdAmount: ").append(toIndentedString(ytdAmount)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/EntityWatchlistCode.java | src/main/java/com/plaid/client/model/EntityWatchlistCode.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* 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;
/**
* Shorthand identifier for a specific screening list for entities. `AU_CON`: Australia Department of Foreign Affairs and Trade Consolidated List `CA_CON`: Government of Canada Consolidated List of Sanctions `EU_CON`: European External Action Service Consolidated List `IZ_SOE`: State Owned Enterprise List `IZ_UNC`: United Nations Consolidated Sanctions `IZ_WBK`: World Bank Listing of Ineligible Firms and Individuals `US_CAP`: US OFAC Correspondent Account or Payable-Through Account Sanctions `US_FSE`: US OFAC Foreign Sanctions Evaders `US_MBS`: US Non-SDN Menu-Based Sanctions `US_SDN`: US Specially Designated Nationals List `US_SSI`: US OFAC Sectoral Sanctions Identifications `US_CMC`: US OFAC Non-SDN Chinese Military-Industrial Complex List `US_UVL`: Bureau of Industry and Security Unverified List `US_SAM`: US System for Award Management Exclusion List `US_TEL`: US Terrorist Exclusion List `UK_HMC`: UK HM Treasury Consolidated List
*/
@JsonAdapter(EntityWatchlistCode.Adapter.class)
public enum EntityWatchlistCode {
CA_CON("CA_CON"),
EU_CON("EU_CON"),
IZ_SOE("IZ_SOE"),
IZ_UNC("IZ_UNC"),
IZ_WBK("IZ_WBK"),
US_CAP("US_CAP"),
US_FSE("US_FSE"),
US_MBS("US_MBS"),
US_SDN("US_SDN"),
US_SSI("US_SSI"),
US_CMC("US_CMC"),
US_UVL("US_UVL"),
US_SAM("US_SAM"),
US_TEL("US_TEL"),
AU_CON("AU_CON"),
UK_HMC("UK_HMC"),
// 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;
EntityWatchlistCode(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static EntityWatchlistCode fromValue(String value) {
for (EntityWatchlistCode b : EntityWatchlistCode.values()) {
if (b.value.equals(value)) {
return b;
}
}
return EntityWatchlistCode.ENUM_UNKNOWN;
}
public static class Adapter extends TypeAdapter<EntityWatchlistCode> {
@Override
public void write(final JsonWriter jsonWriter, final EntityWatchlistCode enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public EntityWatchlistCode read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return EntityWatchlistCode.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/TransactionsRecurringUpdateResponse.java | src/main/java/com/plaid/client/model/TransactionsRecurringUpdateResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.TransactionStream;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* TransactionsRecurringUpdateResponse defines the response schema for the `/transactions/recurring/streams/update` endpoint.
*/
@ApiModel(description = "TransactionsRecurringUpdateResponse defines the response schema for the `/transactions/recurring/streams/update` endpoint.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TransactionsRecurringUpdateResponse {
public static final String SERIALIZED_NAME_MODIFIED_STREAMS = "modified_streams";
@SerializedName(SERIALIZED_NAME_MODIFIED_STREAMS)
private List<TransactionStream> modifiedStreams = new ArrayList<>();
public static final String SERIALIZED_NAME_REMOVED_STREAM_IDS = "removed_stream_ids";
@SerializedName(SERIALIZED_NAME_REMOVED_STREAM_IDS)
private List<String> removedStreamIds = null;
public TransactionsRecurringUpdateResponse modifiedStreams(List<TransactionStream> modifiedStreams) {
this.modifiedStreams = modifiedStreams;
return this;
}
public TransactionsRecurringUpdateResponse addModifiedStreamsItem(TransactionStream modifiedStreamsItem) {
this.modifiedStreams.add(modifiedStreamsItem);
return this;
}
/**
* Directly modified stream, along with other streams with transactions removed from them as a result of the operation (in no particular order).
* @return modifiedStreams
**/
@ApiModelProperty(required = true, value = "Directly modified stream, along with other streams with transactions removed from them as a result of the operation (in no particular order).")
public List<TransactionStream> getModifiedStreams() {
return modifiedStreams;
}
public void setModifiedStreams(List<TransactionStream> modifiedStreams) {
this.modifiedStreams = modifiedStreams;
}
public TransactionsRecurringUpdateResponse removedStreamIds(List<String> removedStreamIds) {
this.removedStreamIds = removedStreamIds;
return this;
}
public TransactionsRecurringUpdateResponse addRemovedStreamIdsItem(String removedStreamIdsItem) {
if (this.removedStreamIds == null) {
this.removedStreamIds = new ArrayList<>();
}
this.removedStreamIds.add(removedStreamIdsItem);
return this;
}
/**
* The ids of streams that are no longer qualified as recurring transaction streams (in no particular order).
* @return removedStreamIds
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The ids of streams that are no longer qualified as recurring transaction streams (in no particular order).")
public List<String> getRemovedStreamIds() {
return removedStreamIds;
}
public void setRemovedStreamIds(List<String> removedStreamIds) {
this.removedStreamIds = removedStreamIds;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransactionsRecurringUpdateResponse transactionsRecurringUpdateResponse = (TransactionsRecurringUpdateResponse) o;
return Objects.equals(this.modifiedStreams, transactionsRecurringUpdateResponse.modifiedStreams) &&
Objects.equals(this.removedStreamIds, transactionsRecurringUpdateResponse.removedStreamIds);
}
@Override
public int hashCode() {
return Objects.hash(modifiedStreams, removedStreamIds);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransactionsRecurringUpdateResponse {\n");
sb.append(" modifiedStreams: ").append(toIndentedString(modifiedStreams)).append("\n");
sb.append(" removedStreamIds: ").append(toIndentedString(removedStreamIds)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraBankIncomeBonusType.java | src/main/java/com/plaid/client/model/CraBankIncomeBonusType.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* 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 bonus that this transaction represents, if it is a bonus. `BONUS_INCLUDED`: Bonus is included in this transaction along with the normal pay `BONUS_ONLY`: This transaction is a standalone bonus
*/
@JsonAdapter(CraBankIncomeBonusType.Adapter.class)
public enum CraBankIncomeBonusType {
BONUS_INCLUDED("BONUS_INCLUDED"),
BONUS_ONLY("BONUS_ONLY"),
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;
CraBankIncomeBonusType(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static CraBankIncomeBonusType fromValue(String value) {
for (CraBankIncomeBonusType b : CraBankIncomeBonusType.values()) {
if (b.value.equals(value)) {
return b;
}
}
return null; }
public static class Adapter extends TypeAdapter<CraBankIncomeBonusType> {
@Override
public void write(final JsonWriter jsonWriter, final CraBankIncomeBonusType enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public CraBankIncomeBonusType read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return CraBankIncomeBonusType.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/TransferSweepStatus.java | src/main/java/com/plaid/client/model/TransferSweepStatus.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* 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 sweep for the transfer. `unswept`: The transfer hasn't been swept yet. `swept`: The transfer was swept to the sweep account. `swept_settled`: Credits are available to be withdrawn or debits have been deducted from the customer’s business checking account. `return_swept`: The transfer was returned, funds were pulled back or pushed back to the sweep account. `null`: The transfer will never be swept (e.g. if the transfer is cancelled or returned before being swept)
*/
@JsonAdapter(TransferSweepStatus.Adapter.class)
public enum TransferSweepStatus {
NULL("null"),
UNSWEPT("unswept"),
SWEPT("swept"),
SWEPT_SETTLED("swept_settled"),
RETURN_SWEPT("return_swept"),
// 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;
TransferSweepStatus(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static TransferSweepStatus fromValue(String value) {
for (TransferSweepStatus b : TransferSweepStatus.values()) {
if (b.value.equals(value)) {
return b;
}
}
return null; }
public static class Adapter extends TypeAdapter<TransferSweepStatus> {
@Override
public void write(final JsonWriter jsonWriter, final TransferSweepStatus enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public TransferSweepStatus read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return TransferSweepStatus.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/OAuthTokenResponse.java | src/main/java/com/plaid/client/model/OAuthTokenResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* OAuth token grant success response
*/
@ApiModel(description = "OAuth token grant success response")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class OAuthTokenResponse {
public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token";
@SerializedName(SERIALIZED_NAME_ACCESS_TOKEN)
private String accessToken;
public static final String SERIALIZED_NAME_REFRESH_TOKEN = "refresh_token";
@SerializedName(SERIALIZED_NAME_REFRESH_TOKEN)
private String refreshToken;
public static final String SERIALIZED_NAME_TOKEN_TYPE = "token_type";
@SerializedName(SERIALIZED_NAME_TOKEN_TYPE)
private String tokenType;
public static final String SERIALIZED_NAME_EXPIRES_IN = "expires_in";
@SerializedName(SERIALIZED_NAME_EXPIRES_IN)
private Integer expiresIn;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public OAuthTokenResponse accessToken(String accessToken) {
this.accessToken = accessToken;
return this;
}
/**
* Access token for OAuth
* @return accessToken
**/
@ApiModelProperty(required = true, value = "Access token for OAuth")
public String getAccessToken() {
return accessToken;
}
public void setAccessToken(String accessToken) {
this.accessToken = accessToken;
}
public OAuthTokenResponse refreshToken(String refreshToken) {
this.refreshToken = refreshToken;
return this;
}
/**
* Refresh token for OAuth
* @return refreshToken
**/
@ApiModelProperty(required = true, value = "Refresh token for OAuth")
public String getRefreshToken() {
return refreshToken;
}
public void setRefreshToken(String refreshToken) {
this.refreshToken = refreshToken;
}
public OAuthTokenResponse tokenType(String tokenType) {
this.tokenType = tokenType;
return this;
}
/**
* type of token the access token is. Currently it is always Bearer
* @return tokenType
**/
@ApiModelProperty(example = "Bearer", required = true, value = "type of token the access token is. Currently it is always Bearer")
public String getTokenType() {
return tokenType;
}
public void setTokenType(String tokenType) {
this.tokenType = tokenType;
}
public OAuthTokenResponse expiresIn(Integer expiresIn) {
this.expiresIn = expiresIn;
return this;
}
/**
* time remaining in seconds before expiration
* @return expiresIn
**/
@ApiModelProperty(example = "500", required = true, value = "time remaining in seconds before expiration")
public Integer getExpiresIn() {
return expiresIn;
}
public void setExpiresIn(Integer expiresIn) {
this.expiresIn = expiresIn;
}
public OAuthTokenResponse 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;
}
OAuthTokenResponse oauthTokenResponse = (OAuthTokenResponse) o;
return Objects.equals(this.accessToken, oauthTokenResponse.accessToken) &&
Objects.equals(this.refreshToken, oauthTokenResponse.refreshToken) &&
Objects.equals(this.tokenType, oauthTokenResponse.tokenType) &&
Objects.equals(this.expiresIn, oauthTokenResponse.expiresIn) &&
Objects.equals(this.requestId, oauthTokenResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(accessToken, refreshToken, tokenType, expiresIn, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class OAuthTokenResponse {\n");
sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n");
sb.append(" refreshToken: ").append(toIndentedString(refreshToken)).append("\n");
sb.append(" tokenType: ").append(toIndentedString(tokenType)).append("\n");
sb.append(" expiresIn: ").append(toIndentedString(expiresIn)).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/Counterparty.java | src/main/java/com/plaid/client/model/Counterparty.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.CounterpartyNumbers;
import com.plaid.client.model.CounterpartyType;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* The counterparty, such as the merchant or financial institution, is extracted by Plaid from the raw description.
*/
@ApiModel(description = "The counterparty, such as the merchant or financial institution, is extracted by Plaid from the raw description.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class Counterparty {
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_ENTITY_ID = "entity_id";
@SerializedName(SERIALIZED_NAME_ENTITY_ID)
private String entityId;
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
private CounterpartyType type;
public static final String SERIALIZED_NAME_WEBSITE = "website";
@SerializedName(SERIALIZED_NAME_WEBSITE)
private String website;
public static final String SERIALIZED_NAME_LOGO_URL = "logo_url";
@SerializedName(SERIALIZED_NAME_LOGO_URL)
private String logoUrl;
public static final String SERIALIZED_NAME_CONFIDENCE_LEVEL = "confidence_level";
@SerializedName(SERIALIZED_NAME_CONFIDENCE_LEVEL)
private String confidenceLevel;
public static final String SERIALIZED_NAME_PHONE_NUMBER = "phone_number";
@SerializedName(SERIALIZED_NAME_PHONE_NUMBER)
private String phoneNumber;
public static final String SERIALIZED_NAME_ACCOUNT_NUMBERS = "account_numbers";
@SerializedName(SERIALIZED_NAME_ACCOUNT_NUMBERS)
private CounterpartyNumbers accountNumbers;
public Counterparty name(String name) {
this.name = name;
return this;
}
/**
* The name of the counterparty, such as the merchant or the financial institution, as extracted by Plaid from the raw description.
* @return name
**/
@ApiModelProperty(required = true, value = "The name of the counterparty, such as the merchant or the financial institution, as extracted by Plaid from the raw description.")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Counterparty entityId(String entityId) {
this.entityId = entityId;
return this;
}
/**
* A unique, stable, Plaid-generated ID that maps to the counterparty.
* @return entityId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A unique, stable, Plaid-generated ID that maps to the counterparty.")
public String getEntityId() {
return entityId;
}
public void setEntityId(String entityId) {
this.entityId = entityId;
}
public Counterparty type(CounterpartyType type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
**/
@ApiModelProperty(required = true, value = "")
public CounterpartyType getType() {
return type;
}
public void setType(CounterpartyType type) {
this.type = type;
}
public Counterparty website(String website) {
this.website = website;
return this;
}
/**
* The website associated with the counterparty.
* @return website
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The website associated with the counterparty.")
public String getWebsite() {
return website;
}
public void setWebsite(String website) {
this.website = website;
}
public Counterparty logoUrl(String logoUrl) {
this.logoUrl = logoUrl;
return this;
}
/**
* The URL of a logo associated with the counterparty, if available. The logo will always be 100×100 pixel PNG file.
* @return logoUrl
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The URL of a logo associated with the counterparty, if available. The logo will always be 100×100 pixel PNG file.")
public String getLogoUrl() {
return logoUrl;
}
public void setLogoUrl(String logoUrl) {
this.logoUrl = logoUrl;
}
public Counterparty confidenceLevel(String confidenceLevel) {
this.confidenceLevel = confidenceLevel;
return this;
}
/**
* A description of how confident we are that the provided counterparty is involved in the transaction. `VERY_HIGH`: We recognize this counterparty and we are more than 98% confident that it is involved in this transaction. `HIGH`: We recognize this counterparty and we are more than 90% confident that it is involved in this transaction. `MEDIUM`: We are moderately confident that this counterparty was involved in this transaction, but some details may differ from our records. `LOW`: We didn’t find a matching counterparty in our records, so we are returning a cleansed name parsed out of the request description. `UNKNOWN`: We don’t know the confidence level for this counterparty.
* @return confidenceLevel
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A description of how confident we are that the provided counterparty is involved in the transaction. `VERY_HIGH`: We recognize this counterparty and we are more than 98% confident that it is involved in this transaction. `HIGH`: We recognize this counterparty and we are more than 90% confident that it is involved in this transaction. `MEDIUM`: We are moderately confident that this counterparty was involved in this transaction, but some details may differ from our records. `LOW`: We didn’t find a matching counterparty in our records, so we are returning a cleansed name parsed out of the request description. `UNKNOWN`: We don’t know the confidence level for this counterparty.")
public String getConfidenceLevel() {
return confidenceLevel;
}
public void setConfidenceLevel(String confidenceLevel) {
this.confidenceLevel = confidenceLevel;
}
public Counterparty phoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
return this;
}
/**
* The phone number associated with the counterparty in E. 164 format. If there is a location match (i.e. a street address is returned in the location object), the phone number will be location specific.
* @return phoneNumber
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The phone number associated with the counterparty in E. 164 format. If there is a location match (i.e. a street address is returned in the location object), the phone number will be location specific.")
public String getPhoneNumber() {
return phoneNumber;
}
public void setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
}
public Counterparty accountNumbers(CounterpartyNumbers accountNumbers) {
this.accountNumbers = accountNumbers;
return this;
}
/**
* Get accountNumbers
* @return accountNumbers
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public CounterpartyNumbers getAccountNumbers() {
return accountNumbers;
}
public void setAccountNumbers(CounterpartyNumbers accountNumbers) {
this.accountNumbers = accountNumbers;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Counterparty counterparty = (Counterparty) o;
return Objects.equals(this.name, counterparty.name) &&
Objects.equals(this.entityId, counterparty.entityId) &&
Objects.equals(this.type, counterparty.type) &&
Objects.equals(this.website, counterparty.website) &&
Objects.equals(this.logoUrl, counterparty.logoUrl) &&
Objects.equals(this.confidenceLevel, counterparty.confidenceLevel) &&
Objects.equals(this.phoneNumber, counterparty.phoneNumber) &&
Objects.equals(this.accountNumbers, counterparty.accountNumbers);
}
@Override
public int hashCode() {
return Objects.hash(name, entityId, type, website, logoUrl, confidenceLevel, phoneNumber, accountNumbers);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Counterparty {\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" entityId: ").append(toIndentedString(entityId)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" website: ").append(toIndentedString(website)).append("\n");
sb.append(" logoUrl: ").append(toIndentedString(logoUrl)).append("\n");
sb.append(" confidenceLevel: ").append(toIndentedString(confidenceLevel)).append("\n");
sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n");
sb.append(" accountNumbers: ").append(toIndentedString(accountNumbers)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditW2.java | src/main/java/com/plaid/client/model/CreditW2.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.CreditDocumentMetadata;
import com.plaid.client.model.CreditPayStubEmployee;
import com.plaid.client.model.CreditPayStubEmployer;
import com.plaid.client.model.W2Box12;
import com.plaid.client.model.W2StateAndLocalWages;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* W2 is an object that represents income data taken from a W2 tax document.
*/
@ApiModel(description = "W2 is an object that represents income data taken from a W2 tax document.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CreditW2 {
public static final String SERIALIZED_NAME_DOCUMENT_METADATA = "document_metadata";
@SerializedName(SERIALIZED_NAME_DOCUMENT_METADATA)
private CreditDocumentMetadata documentMetadata;
public static final String SERIALIZED_NAME_DOCUMENT_ID = "document_id";
@SerializedName(SERIALIZED_NAME_DOCUMENT_ID)
private String documentId;
public static final String SERIALIZED_NAME_EMPLOYER = "employer";
@SerializedName(SERIALIZED_NAME_EMPLOYER)
private CreditPayStubEmployer employer;
public static final String SERIALIZED_NAME_EMPLOYEE = "employee";
@SerializedName(SERIALIZED_NAME_EMPLOYEE)
private CreditPayStubEmployee employee;
public static final String SERIALIZED_NAME_TAX_YEAR = "tax_year";
@SerializedName(SERIALIZED_NAME_TAX_YEAR)
private String taxYear;
public static final String SERIALIZED_NAME_EMPLOYER_ID_NUMBER = "employer_id_number";
@SerializedName(SERIALIZED_NAME_EMPLOYER_ID_NUMBER)
private String employerIdNumber;
public static final String SERIALIZED_NAME_WAGES_TIPS_OTHER_COMP = "wages_tips_other_comp";
@SerializedName(SERIALIZED_NAME_WAGES_TIPS_OTHER_COMP)
private String wagesTipsOtherComp;
public static final String SERIALIZED_NAME_FEDERAL_INCOME_TAX_WITHHELD = "federal_income_tax_withheld";
@SerializedName(SERIALIZED_NAME_FEDERAL_INCOME_TAX_WITHHELD)
private String federalIncomeTaxWithheld;
public static final String SERIALIZED_NAME_SOCIAL_SECURITY_WAGES = "social_security_wages";
@SerializedName(SERIALIZED_NAME_SOCIAL_SECURITY_WAGES)
private String socialSecurityWages;
public static final String SERIALIZED_NAME_SOCIAL_SECURITY_TAX_WITHHELD = "social_security_tax_withheld";
@SerializedName(SERIALIZED_NAME_SOCIAL_SECURITY_TAX_WITHHELD)
private String socialSecurityTaxWithheld;
public static final String SERIALIZED_NAME_MEDICARE_WAGES_AND_TIPS = "medicare_wages_and_tips";
@SerializedName(SERIALIZED_NAME_MEDICARE_WAGES_AND_TIPS)
private String medicareWagesAndTips;
public static final String SERIALIZED_NAME_MEDICARE_TAX_WITHHELD = "medicare_tax_withheld";
@SerializedName(SERIALIZED_NAME_MEDICARE_TAX_WITHHELD)
private String medicareTaxWithheld;
public static final String SERIALIZED_NAME_SOCIAL_SECURITY_TIPS = "social_security_tips";
@SerializedName(SERIALIZED_NAME_SOCIAL_SECURITY_TIPS)
private String socialSecurityTips;
public static final String SERIALIZED_NAME_ALLOCATED_TIPS = "allocated_tips";
@SerializedName(SERIALIZED_NAME_ALLOCATED_TIPS)
private String allocatedTips;
public static final String SERIALIZED_NAME_BOX9 = "box_9";
@SerializedName(SERIALIZED_NAME_BOX9)
private String box9;
public static final String SERIALIZED_NAME_DEPENDENT_CARE_BENEFITS = "dependent_care_benefits";
@SerializedName(SERIALIZED_NAME_DEPENDENT_CARE_BENEFITS)
private String dependentCareBenefits;
public static final String SERIALIZED_NAME_NONQUALIFIED_PLANS = "nonqualified_plans";
@SerializedName(SERIALIZED_NAME_NONQUALIFIED_PLANS)
private String nonqualifiedPlans;
public static final String SERIALIZED_NAME_BOX12 = "box_12";
@SerializedName(SERIALIZED_NAME_BOX12)
private List<W2Box12> box12 = new ArrayList<>();
public static final String SERIALIZED_NAME_STATUTORY_EMPLOYEE = "statutory_employee";
@SerializedName(SERIALIZED_NAME_STATUTORY_EMPLOYEE)
private String statutoryEmployee;
public static final String SERIALIZED_NAME_RETIREMENT_PLAN = "retirement_plan";
@SerializedName(SERIALIZED_NAME_RETIREMENT_PLAN)
private String retirementPlan;
public static final String SERIALIZED_NAME_THIRD_PARTY_SICK_PAY = "third_party_sick_pay";
@SerializedName(SERIALIZED_NAME_THIRD_PARTY_SICK_PAY)
private String thirdPartySickPay;
public static final String SERIALIZED_NAME_OTHER = "other";
@SerializedName(SERIALIZED_NAME_OTHER)
private String other;
public static final String SERIALIZED_NAME_STATE_AND_LOCAL_WAGES = "state_and_local_wages";
@SerializedName(SERIALIZED_NAME_STATE_AND_LOCAL_WAGES)
private List<W2StateAndLocalWages> stateAndLocalWages = new ArrayList<>();
public CreditW2 documentMetadata(CreditDocumentMetadata documentMetadata) {
this.documentMetadata = documentMetadata;
return this;
}
/**
* Get documentMetadata
* @return documentMetadata
**/
@ApiModelProperty(required = true, value = "")
public CreditDocumentMetadata getDocumentMetadata() {
return documentMetadata;
}
public void setDocumentMetadata(CreditDocumentMetadata documentMetadata) {
this.documentMetadata = documentMetadata;
}
public CreditW2 documentId(String documentId) {
this.documentId = documentId;
return this;
}
/**
* An identifier of the document referenced by the document metadata.
* @return documentId
**/
@ApiModelProperty(required = true, value = "An identifier of the document referenced by the document metadata.")
public String getDocumentId() {
return documentId;
}
public void setDocumentId(String documentId) {
this.documentId = documentId;
}
public CreditW2 employer(CreditPayStubEmployer employer) {
this.employer = employer;
return this;
}
/**
* Get employer
* @return employer
**/
@ApiModelProperty(required = true, value = "")
public CreditPayStubEmployer getEmployer() {
return employer;
}
public void setEmployer(CreditPayStubEmployer employer) {
this.employer = employer;
}
public CreditW2 employee(CreditPayStubEmployee employee) {
this.employee = employee;
return this;
}
/**
* Get employee
* @return employee
**/
@ApiModelProperty(required = true, value = "")
public CreditPayStubEmployee getEmployee() {
return employee;
}
public void setEmployee(CreditPayStubEmployee employee) {
this.employee = employee;
}
public CreditW2 taxYear(String taxYear) {
this.taxYear = taxYear;
return this;
}
/**
* The tax year of the W2 document.
* @return taxYear
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The tax year of the W2 document.")
public String getTaxYear() {
return taxYear;
}
public void setTaxYear(String taxYear) {
this.taxYear = taxYear;
}
public CreditW2 employerIdNumber(String employerIdNumber) {
this.employerIdNumber = employerIdNumber;
return this;
}
/**
* An employee identification number or EIN.
* @return employerIdNumber
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "An employee identification number or EIN.")
public String getEmployerIdNumber() {
return employerIdNumber;
}
public void setEmployerIdNumber(String employerIdNumber) {
this.employerIdNumber = employerIdNumber;
}
public CreditW2 wagesTipsOtherComp(String wagesTipsOtherComp) {
this.wagesTipsOtherComp = wagesTipsOtherComp;
return this;
}
/**
* Wages from tips and other compensation.
* @return wagesTipsOtherComp
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Wages from tips and other compensation.")
public String getWagesTipsOtherComp() {
return wagesTipsOtherComp;
}
public void setWagesTipsOtherComp(String wagesTipsOtherComp) {
this.wagesTipsOtherComp = wagesTipsOtherComp;
}
public CreditW2 federalIncomeTaxWithheld(String federalIncomeTaxWithheld) {
this.federalIncomeTaxWithheld = federalIncomeTaxWithheld;
return this;
}
/**
* Federal income tax withheld for the tax year.
* @return federalIncomeTaxWithheld
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Federal income tax withheld for the tax year.")
public String getFederalIncomeTaxWithheld() {
return federalIncomeTaxWithheld;
}
public void setFederalIncomeTaxWithheld(String federalIncomeTaxWithheld) {
this.federalIncomeTaxWithheld = federalIncomeTaxWithheld;
}
public CreditW2 socialSecurityWages(String socialSecurityWages) {
this.socialSecurityWages = socialSecurityWages;
return this;
}
/**
* Wages from social security.
* @return socialSecurityWages
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Wages from social security.")
public String getSocialSecurityWages() {
return socialSecurityWages;
}
public void setSocialSecurityWages(String socialSecurityWages) {
this.socialSecurityWages = socialSecurityWages;
}
public CreditW2 socialSecurityTaxWithheld(String socialSecurityTaxWithheld) {
this.socialSecurityTaxWithheld = socialSecurityTaxWithheld;
return this;
}
/**
* Social security tax withheld for the tax year.
* @return socialSecurityTaxWithheld
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Social security tax withheld for the tax year.")
public String getSocialSecurityTaxWithheld() {
return socialSecurityTaxWithheld;
}
public void setSocialSecurityTaxWithheld(String socialSecurityTaxWithheld) {
this.socialSecurityTaxWithheld = socialSecurityTaxWithheld;
}
public CreditW2 medicareWagesAndTips(String medicareWagesAndTips) {
this.medicareWagesAndTips = medicareWagesAndTips;
return this;
}
/**
* Wages and tips from medicare.
* @return medicareWagesAndTips
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Wages and tips from medicare.")
public String getMedicareWagesAndTips() {
return medicareWagesAndTips;
}
public void setMedicareWagesAndTips(String medicareWagesAndTips) {
this.medicareWagesAndTips = medicareWagesAndTips;
}
public CreditW2 medicareTaxWithheld(String medicareTaxWithheld) {
this.medicareTaxWithheld = medicareTaxWithheld;
return this;
}
/**
* Medicare tax withheld for the tax year.
* @return medicareTaxWithheld
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Medicare tax withheld for the tax year.")
public String getMedicareTaxWithheld() {
return medicareTaxWithheld;
}
public void setMedicareTaxWithheld(String medicareTaxWithheld) {
this.medicareTaxWithheld = medicareTaxWithheld;
}
public CreditW2 socialSecurityTips(String socialSecurityTips) {
this.socialSecurityTips = socialSecurityTips;
return this;
}
/**
* Tips from social security.
* @return socialSecurityTips
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Tips from social security.")
public String getSocialSecurityTips() {
return socialSecurityTips;
}
public void setSocialSecurityTips(String socialSecurityTips) {
this.socialSecurityTips = socialSecurityTips;
}
public CreditW2 allocatedTips(String allocatedTips) {
this.allocatedTips = allocatedTips;
return this;
}
/**
* Allocated tips.
* @return allocatedTips
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Allocated tips.")
public String getAllocatedTips() {
return allocatedTips;
}
public void setAllocatedTips(String allocatedTips) {
this.allocatedTips = allocatedTips;
}
public CreditW2 box9(String box9) {
this.box9 = box9;
return this;
}
/**
* Contents from box 9 on the W2.
* @return box9
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Contents from box 9 on the W2.")
public String getBox9() {
return box9;
}
public void setBox9(String box9) {
this.box9 = box9;
}
public CreditW2 dependentCareBenefits(String dependentCareBenefits) {
this.dependentCareBenefits = dependentCareBenefits;
return this;
}
/**
* Dependent care benefits.
* @return dependentCareBenefits
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Dependent care benefits.")
public String getDependentCareBenefits() {
return dependentCareBenefits;
}
public void setDependentCareBenefits(String dependentCareBenefits) {
this.dependentCareBenefits = dependentCareBenefits;
}
public CreditW2 nonqualifiedPlans(String nonqualifiedPlans) {
this.nonqualifiedPlans = nonqualifiedPlans;
return this;
}
/**
* Nonqualified plans.
* @return nonqualifiedPlans
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Nonqualified plans.")
public String getNonqualifiedPlans() {
return nonqualifiedPlans;
}
public void setNonqualifiedPlans(String nonqualifiedPlans) {
this.nonqualifiedPlans = nonqualifiedPlans;
}
public CreditW2 box12(List<W2Box12> box12) {
this.box12 = box12;
return this;
}
public CreditW2 addBox12Item(W2Box12 box12Item) {
this.box12.add(box12Item);
return this;
}
/**
* Get box12
* @return box12
**/
@ApiModelProperty(required = true, value = "")
public List<W2Box12> getBox12() {
return box12;
}
public void setBox12(List<W2Box12> box12) {
this.box12 = box12;
}
public CreditW2 statutoryEmployee(String statutoryEmployee) {
this.statutoryEmployee = statutoryEmployee;
return this;
}
/**
* Statutory employee.
* @return statutoryEmployee
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Statutory employee.")
public String getStatutoryEmployee() {
return statutoryEmployee;
}
public void setStatutoryEmployee(String statutoryEmployee) {
this.statutoryEmployee = statutoryEmployee;
}
public CreditW2 retirementPlan(String retirementPlan) {
this.retirementPlan = retirementPlan;
return this;
}
/**
* Retirement plan.
* @return retirementPlan
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Retirement plan.")
public String getRetirementPlan() {
return retirementPlan;
}
public void setRetirementPlan(String retirementPlan) {
this.retirementPlan = retirementPlan;
}
public CreditW2 thirdPartySickPay(String thirdPartySickPay) {
this.thirdPartySickPay = thirdPartySickPay;
return this;
}
/**
* Third party sick pay.
* @return thirdPartySickPay
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Third party sick pay.")
public String getThirdPartySickPay() {
return thirdPartySickPay;
}
public void setThirdPartySickPay(String thirdPartySickPay) {
this.thirdPartySickPay = thirdPartySickPay;
}
public CreditW2 other(String other) {
this.other = other;
return this;
}
/**
* Other.
* @return other
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Other.")
public String getOther() {
return other;
}
public void setOther(String other) {
this.other = other;
}
public CreditW2 stateAndLocalWages(List<W2StateAndLocalWages> stateAndLocalWages) {
this.stateAndLocalWages = stateAndLocalWages;
return this;
}
public CreditW2 addStateAndLocalWagesItem(W2StateAndLocalWages stateAndLocalWagesItem) {
this.stateAndLocalWages.add(stateAndLocalWagesItem);
return this;
}
/**
* Get stateAndLocalWages
* @return stateAndLocalWages
**/
@ApiModelProperty(required = true, value = "")
public List<W2StateAndLocalWages> getStateAndLocalWages() {
return stateAndLocalWages;
}
public void setStateAndLocalWages(List<W2StateAndLocalWages> stateAndLocalWages) {
this.stateAndLocalWages = stateAndLocalWages;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreditW2 creditW2 = (CreditW2) o;
return Objects.equals(this.documentMetadata, creditW2.documentMetadata) &&
Objects.equals(this.documentId, creditW2.documentId) &&
Objects.equals(this.employer, creditW2.employer) &&
Objects.equals(this.employee, creditW2.employee) &&
Objects.equals(this.taxYear, creditW2.taxYear) &&
Objects.equals(this.employerIdNumber, creditW2.employerIdNumber) &&
Objects.equals(this.wagesTipsOtherComp, creditW2.wagesTipsOtherComp) &&
Objects.equals(this.federalIncomeTaxWithheld, creditW2.federalIncomeTaxWithheld) &&
Objects.equals(this.socialSecurityWages, creditW2.socialSecurityWages) &&
Objects.equals(this.socialSecurityTaxWithheld, creditW2.socialSecurityTaxWithheld) &&
Objects.equals(this.medicareWagesAndTips, creditW2.medicareWagesAndTips) &&
Objects.equals(this.medicareTaxWithheld, creditW2.medicareTaxWithheld) &&
Objects.equals(this.socialSecurityTips, creditW2.socialSecurityTips) &&
Objects.equals(this.allocatedTips, creditW2.allocatedTips) &&
Objects.equals(this.box9, creditW2.box9) &&
Objects.equals(this.dependentCareBenefits, creditW2.dependentCareBenefits) &&
Objects.equals(this.nonqualifiedPlans, creditW2.nonqualifiedPlans) &&
Objects.equals(this.box12, creditW2.box12) &&
Objects.equals(this.statutoryEmployee, creditW2.statutoryEmployee) &&
Objects.equals(this.retirementPlan, creditW2.retirementPlan) &&
Objects.equals(this.thirdPartySickPay, creditW2.thirdPartySickPay) &&
Objects.equals(this.other, creditW2.other) &&
Objects.equals(this.stateAndLocalWages, creditW2.stateAndLocalWages);
}
@Override
public int hashCode() {
return Objects.hash(documentMetadata, documentId, employer, employee, taxYear, employerIdNumber, wagesTipsOtherComp, federalIncomeTaxWithheld, socialSecurityWages, socialSecurityTaxWithheld, medicareWagesAndTips, medicareTaxWithheld, socialSecurityTips, allocatedTips, box9, dependentCareBenefits, nonqualifiedPlans, box12, statutoryEmployee, retirementPlan, thirdPartySickPay, other, stateAndLocalWages);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreditW2 {\n");
sb.append(" documentMetadata: ").append(toIndentedString(documentMetadata)).append("\n");
sb.append(" documentId: ").append(toIndentedString(documentId)).append("\n");
sb.append(" employer: ").append(toIndentedString(employer)).append("\n");
sb.append(" employee: ").append(toIndentedString(employee)).append("\n");
sb.append(" taxYear: ").append(toIndentedString(taxYear)).append("\n");
sb.append(" employerIdNumber: ").append(toIndentedString(employerIdNumber)).append("\n");
sb.append(" wagesTipsOtherComp: ").append(toIndentedString(wagesTipsOtherComp)).append("\n");
sb.append(" federalIncomeTaxWithheld: ").append(toIndentedString(federalIncomeTaxWithheld)).append("\n");
sb.append(" socialSecurityWages: ").append(toIndentedString(socialSecurityWages)).append("\n");
sb.append(" socialSecurityTaxWithheld: ").append(toIndentedString(socialSecurityTaxWithheld)).append("\n");
sb.append(" medicareWagesAndTips: ").append(toIndentedString(medicareWagesAndTips)).append("\n");
sb.append(" medicareTaxWithheld: ").append(toIndentedString(medicareTaxWithheld)).append("\n");
sb.append(" socialSecurityTips: ").append(toIndentedString(socialSecurityTips)).append("\n");
sb.append(" allocatedTips: ").append(toIndentedString(allocatedTips)).append("\n");
sb.append(" box9: ").append(toIndentedString(box9)).append("\n");
sb.append(" dependentCareBenefits: ").append(toIndentedString(dependentCareBenefits)).append("\n");
sb.append(" nonqualifiedPlans: ").append(toIndentedString(nonqualifiedPlans)).append("\n");
sb.append(" box12: ").append(toIndentedString(box12)).append("\n");
sb.append(" statutoryEmployee: ").append(toIndentedString(statutoryEmployee)).append("\n");
sb.append(" retirementPlan: ").append(toIndentedString(retirementPlan)).append("\n");
sb.append(" thirdPartySickPay: ").append(toIndentedString(thirdPartySickPay)).append("\n");
sb.append(" other: ").append(toIndentedString(other)).append("\n");
sb.append(" stateAndLocalWages: ").append(toIndentedString(stateAndLocalWages)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditCategory.java | src/main/java/com/plaid/client/model/CreditCategory.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Information describing the intent of the transaction. Most relevant for credit use cases, but not limited to such use cases. See the [`taxonomy csv file`](https://plaid.com/documents/credit-category-taxonomy.csv) for a full list of credit categories.
*/
@ApiModel(description = "Information describing the intent of the transaction. Most relevant for credit use cases, but not limited to such use cases. See the [`taxonomy csv file`](https://plaid.com/documents/credit-category-taxonomy.csv) for a full list of credit categories.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CreditCategory {
public static final String SERIALIZED_NAME_PRIMARY = "primary";
@SerializedName(SERIALIZED_NAME_PRIMARY)
private String primary;
public static final String SERIALIZED_NAME_DETAILED = "detailed";
@SerializedName(SERIALIZED_NAME_DETAILED)
private String detailed;
public CreditCategory primary(String primary) {
this.primary = primary;
return this;
}
/**
* A high level category that communicates the broad category of the transaction.
* @return primary
**/
@ApiModelProperty(required = true, value = "A high level category that communicates the broad category of the transaction.")
public String getPrimary() {
return primary;
}
public void setPrimary(String primary) {
this.primary = primary;
}
public CreditCategory detailed(String detailed) {
this.detailed = detailed;
return this;
}
/**
* A granular category conveying the transaction's intent. This field can also be used as a unique identifier for the category.
* @return detailed
**/
@ApiModelProperty(required = true, value = "A granular category conveying the transaction's intent. This field can also be used as a unique identifier for the category.")
public String getDetailed() {
return detailed;
}
public void setDetailed(String detailed) {
this.detailed = detailed;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreditCategory creditCategory = (CreditCategory) o;
return Objects.equals(this.primary, creditCategory.primary) &&
Objects.equals(this.detailed, creditCategory.detailed);
}
@Override
public int hashCode() {
return Objects.hash(primary, detailed);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreditCategory {\n");
sb.append(" primary: ").append(toIndentedString(primary)).append("\n");
sb.append(" detailed: ").append(toIndentedString(detailed)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditPayStubDeductions.java | src/main/java/com/plaid/client/model/CreditPayStubDeductions.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.PayStubDeductionsBreakdown;
import com.plaid.client.model.PayStubDeductionsTotal;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* An object with the deduction information found on a pay stub.
*/
@ApiModel(description = "An object with the deduction information found on a pay stub.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CreditPayStubDeductions {
public static final String SERIALIZED_NAME_BREAKDOWN = "breakdown";
@SerializedName(SERIALIZED_NAME_BREAKDOWN)
private List<PayStubDeductionsBreakdown> breakdown = new ArrayList<>();
public static final String SERIALIZED_NAME_TOTAL = "total";
@SerializedName(SERIALIZED_NAME_TOTAL)
private PayStubDeductionsTotal total;
public CreditPayStubDeductions breakdown(List<PayStubDeductionsBreakdown> breakdown) {
this.breakdown = breakdown;
return this;
}
public CreditPayStubDeductions addBreakdownItem(PayStubDeductionsBreakdown breakdownItem) {
this.breakdown.add(breakdownItem);
return this;
}
/**
* Get breakdown
* @return breakdown
**/
@ApiModelProperty(required = true, value = "")
public List<PayStubDeductionsBreakdown> getBreakdown() {
return breakdown;
}
public void setBreakdown(List<PayStubDeductionsBreakdown> breakdown) {
this.breakdown = breakdown;
}
public CreditPayStubDeductions total(PayStubDeductionsTotal total) {
this.total = total;
return this;
}
/**
* Get total
* @return total
**/
@ApiModelProperty(required = true, value = "")
public PayStubDeductionsTotal getTotal() {
return total;
}
public void setTotal(PayStubDeductionsTotal total) {
this.total = total;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreditPayStubDeductions creditPayStubDeductions = (CreditPayStubDeductions) o;
return Objects.equals(this.breakdown, creditPayStubDeductions.breakdown) &&
Objects.equals(this.total, creditPayStubDeductions.total);
}
@Override
public int hashCode() {
return Objects.hash(breakdown, total);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreditPayStubDeductions {\n");
sb.append(" breakdown: ").append(toIndentedString(breakdown)).append("\n");
sb.append(" total: ").append(toIndentedString(total)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/LinkTokenCreateCardSwitch.java | src/main/java/com/plaid/client/model/LinkTokenCreateCardSwitch.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* A map containing data to pass in for the Card Switch flow.
*/
@ApiModel(description = "A map containing data to pass in for the Card Switch flow.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class LinkTokenCreateCardSwitch {
public static final String SERIALIZED_NAME_CARD_BIN = "card_bin";
@SerializedName(SERIALIZED_NAME_CARD_BIN)
private String cardBin;
public LinkTokenCreateCardSwitch cardBin(String cardBin) {
this.cardBin = cardBin;
return this;
}
/**
* The BIN (Bank Identification Number) of the card to switch.
* @return cardBin
**/
@ApiModelProperty(required = true, value = "The BIN (Bank Identification Number) of the card to switch.")
public String getCardBin() {
return cardBin;
}
public void setCardBin(String cardBin) {
this.cardBin = cardBin;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LinkTokenCreateCardSwitch linkTokenCreateCardSwitch = (LinkTokenCreateCardSwitch) o;
return Objects.equals(this.cardBin, linkTokenCreateCardSwitch.cardBin);
}
@Override
public int hashCode() {
return Objects.hash(cardBin);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class LinkTokenCreateCardSwitch {\n");
sb.append(" cardBin: ").append(toIndentedString(cardBin)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaymentInitiationPaymentGetResponse.java | src/main/java/com/plaid/client/model/PaymentInitiationPaymentGetResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.ExternalPaymentRefundDetails;
import com.plaid.client.model.ExternalPaymentScheduleGet;
import com.plaid.client.model.PaymentAmount;
import com.plaid.client.model.PaymentAmountRefunded;
import com.plaid.client.model.PaymentInitiationPayment;
import com.plaid.client.model.PaymentInitiationPaymentStatus;
import com.plaid.client.model.PaymentInitiationRecipientGetResponseAllOf;
import com.plaid.client.model.PaymentScheme;
import com.plaid.client.model.PlaidError;
import com.plaid.client.model.SenderBACSNullable;
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;
/**
* PaymentInitiationPaymentGetResponse defines the response schema for `/payment_initation/payment/get`
*/
@ApiModel(description = "PaymentInitiationPaymentGetResponse defines the response schema for `/payment_initation/payment/get`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class PaymentInitiationPaymentGetResponse {
public static final String SERIALIZED_NAME_PAYMENT_ID = "payment_id";
@SerializedName(SERIALIZED_NAME_PAYMENT_ID)
private String paymentId;
public static final String SERIALIZED_NAME_AMOUNT = "amount";
@SerializedName(SERIALIZED_NAME_AMOUNT)
private PaymentAmount amount;
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private PaymentInitiationPaymentStatus status;
public static final String SERIALIZED_NAME_RECIPIENT_ID = "recipient_id";
@SerializedName(SERIALIZED_NAME_RECIPIENT_ID)
private String recipientId;
public static final String SERIALIZED_NAME_REFERENCE = "reference";
@SerializedName(SERIALIZED_NAME_REFERENCE)
private String reference;
public static final String SERIALIZED_NAME_ADJUSTED_REFERENCE = "adjusted_reference";
@SerializedName(SERIALIZED_NAME_ADJUSTED_REFERENCE)
private String adjustedReference;
public static final String SERIALIZED_NAME_LAST_STATUS_UPDATE = "last_status_update";
@SerializedName(SERIALIZED_NAME_LAST_STATUS_UPDATE)
private OffsetDateTime lastStatusUpdate;
public static final String SERIALIZED_NAME_SCHEDULE = "schedule";
@SerializedName(SERIALIZED_NAME_SCHEDULE)
private ExternalPaymentScheduleGet schedule;
public static final String SERIALIZED_NAME_REFUND_DETAILS = "refund_details";
@SerializedName(SERIALIZED_NAME_REFUND_DETAILS)
private ExternalPaymentRefundDetails refundDetails;
public static final String SERIALIZED_NAME_BACS = "bacs";
@SerializedName(SERIALIZED_NAME_BACS)
private SenderBACSNullable bacs;
public static final String SERIALIZED_NAME_IBAN = "iban";
@SerializedName(SERIALIZED_NAME_IBAN)
private String iban;
public static final String SERIALIZED_NAME_REFUND_IDS = "refund_ids";
@SerializedName(SERIALIZED_NAME_REFUND_IDS)
private List<String> refundIds = null;
public static final String SERIALIZED_NAME_AMOUNT_REFUNDED = "amount_refunded";
@SerializedName(SERIALIZED_NAME_AMOUNT_REFUNDED)
private PaymentAmountRefunded amountRefunded;
public static final String SERIALIZED_NAME_WALLET_ID = "wallet_id";
@SerializedName(SERIALIZED_NAME_WALLET_ID)
private String walletId;
public static final String SERIALIZED_NAME_SCHEME = "scheme";
@SerializedName(SERIALIZED_NAME_SCHEME)
private PaymentScheme scheme;
public static final String SERIALIZED_NAME_ADJUSTED_SCHEME = "adjusted_scheme";
@SerializedName(SERIALIZED_NAME_ADJUSTED_SCHEME)
private PaymentScheme adjustedScheme;
public static final String SERIALIZED_NAME_CONSENT_ID = "consent_id";
@SerializedName(SERIALIZED_NAME_CONSENT_ID)
private String consentId;
public static final String SERIALIZED_NAME_TRANSACTION_ID = "transaction_id";
@SerializedName(SERIALIZED_NAME_TRANSACTION_ID)
private String transactionId;
public static final String SERIALIZED_NAME_END_TO_END_ID = "end_to_end_id";
@SerializedName(SERIALIZED_NAME_END_TO_END_ID)
private String endToEndId;
public static final String SERIALIZED_NAME_ERROR = "error";
@SerializedName(SERIALIZED_NAME_ERROR)
private PlaidError error;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public PaymentInitiationPaymentGetResponse paymentId(String paymentId) {
this.paymentId = paymentId;
return this;
}
/**
* The ID of the payment. Like all Plaid identifiers, the `payment_id` is case sensitive.
* @return paymentId
**/
@ApiModelProperty(required = true, value = "The ID of the payment. Like all Plaid identifiers, the `payment_id` is case sensitive.")
public String getPaymentId() {
return paymentId;
}
public void setPaymentId(String paymentId) {
this.paymentId = paymentId;
}
public PaymentInitiationPaymentGetResponse amount(PaymentAmount amount) {
this.amount = amount;
return this;
}
/**
* Get amount
* @return amount
**/
@ApiModelProperty(required = true, value = "")
public PaymentAmount getAmount() {
return amount;
}
public void setAmount(PaymentAmount amount) {
this.amount = amount;
}
public PaymentInitiationPaymentGetResponse status(PaymentInitiationPaymentStatus status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@ApiModelProperty(required = true, value = "")
public PaymentInitiationPaymentStatus getStatus() {
return status;
}
public void setStatus(PaymentInitiationPaymentStatus status) {
this.status = status;
}
public PaymentInitiationPaymentGetResponse recipientId(String recipientId) {
this.recipientId = recipientId;
return this;
}
/**
* The ID of the recipient
* @return recipientId
**/
@ApiModelProperty(required = true, value = "The ID of the recipient")
public String getRecipientId() {
return recipientId;
}
public void setRecipientId(String recipientId) {
this.recipientId = recipientId;
}
public PaymentInitiationPaymentGetResponse reference(String reference) {
this.reference = reference;
return this;
}
/**
* A reference for the payment.
* @return reference
**/
@ApiModelProperty(required = true, value = "A reference for the payment.")
public String getReference() {
return reference;
}
public void setReference(String reference) {
this.reference = reference;
}
public PaymentInitiationPaymentGetResponse adjustedReference(String adjustedReference) {
this.adjustedReference = adjustedReference;
return this;
}
/**
* The value of the reference sent to the bank after adjustment to pass bank validation rules.
* @return adjustedReference
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The value of the reference sent to the bank after adjustment to pass bank validation rules.")
public String getAdjustedReference() {
return adjustedReference;
}
public void setAdjustedReference(String adjustedReference) {
this.adjustedReference = adjustedReference;
}
public PaymentInitiationPaymentGetResponse lastStatusUpdate(OffsetDateTime lastStatusUpdate) {
this.lastStatusUpdate = lastStatusUpdate;
return this;
}
/**
* The date and time of the last time the `status` was updated, in IS0 8601 format
* @return lastStatusUpdate
**/
@ApiModelProperty(required = true, value = "The date and time of the last time the `status` was updated, in IS0 8601 format")
public OffsetDateTime getLastStatusUpdate() {
return lastStatusUpdate;
}
public void setLastStatusUpdate(OffsetDateTime lastStatusUpdate) {
this.lastStatusUpdate = lastStatusUpdate;
}
public PaymentInitiationPaymentGetResponse schedule(ExternalPaymentScheduleGet schedule) {
this.schedule = schedule;
return this;
}
/**
* Get schedule
* @return schedule
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public ExternalPaymentScheduleGet getSchedule() {
return schedule;
}
public void setSchedule(ExternalPaymentScheduleGet schedule) {
this.schedule = schedule;
}
public PaymentInitiationPaymentGetResponse refundDetails(ExternalPaymentRefundDetails refundDetails) {
this.refundDetails = refundDetails;
return this;
}
/**
* Get refundDetails
* @return refundDetails
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public ExternalPaymentRefundDetails getRefundDetails() {
return refundDetails;
}
public void setRefundDetails(ExternalPaymentRefundDetails refundDetails) {
this.refundDetails = refundDetails;
}
public PaymentInitiationPaymentGetResponse bacs(SenderBACSNullable bacs) {
this.bacs = bacs;
return this;
}
/**
* Get bacs
* @return bacs
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public SenderBACSNullable getBacs() {
return bacs;
}
public void setBacs(SenderBACSNullable bacs) {
this.bacs = bacs;
}
public PaymentInitiationPaymentGetResponse iban(String iban) {
this.iban = iban;
return this;
}
/**
* The International Bank Account Number (IBAN) for the sender, if specified in the `/payment_initiation/payment/create` call.
* @return iban
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The International Bank Account Number (IBAN) for the sender, if specified in the `/payment_initiation/payment/create` call.")
public String getIban() {
return iban;
}
public void setIban(String iban) {
this.iban = iban;
}
public PaymentInitiationPaymentGetResponse refundIds(List<String> refundIds) {
this.refundIds = refundIds;
return this;
}
public PaymentInitiationPaymentGetResponse addRefundIdsItem(String refundIdsItem) {
if (this.refundIds == null) {
this.refundIds = new ArrayList<>();
}
this.refundIds.add(refundIdsItem);
return this;
}
/**
* Refund IDs associated with the payment.
* @return refundIds
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Refund IDs associated with the payment.")
public List<String> getRefundIds() {
return refundIds;
}
public void setRefundIds(List<String> refundIds) {
this.refundIds = refundIds;
}
public PaymentInitiationPaymentGetResponse amountRefunded(PaymentAmountRefunded amountRefunded) {
this.amountRefunded = amountRefunded;
return this;
}
/**
* Get amountRefunded
* @return amountRefunded
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public PaymentAmountRefunded getAmountRefunded() {
return amountRefunded;
}
public void setAmountRefunded(PaymentAmountRefunded amountRefunded) {
this.amountRefunded = amountRefunded;
}
public PaymentInitiationPaymentGetResponse walletId(String walletId) {
this.walletId = walletId;
return this;
}
/**
* The EMI (E-Money Institution) wallet that this payment is associated with, if any. This wallet is used as an intermediary account to enable Plaid to reconcile the settlement of funds for Payment Initiation requests.
* @return walletId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The EMI (E-Money Institution) wallet that this payment is associated with, if any. This wallet is used as an intermediary account to enable Plaid to reconcile the settlement of funds for Payment Initiation requests.")
public String getWalletId() {
return walletId;
}
public void setWalletId(String walletId) {
this.walletId = walletId;
}
public PaymentInitiationPaymentGetResponse scheme(PaymentScheme scheme) {
this.scheme = scheme;
return this;
}
/**
* Get scheme
* @return scheme
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public PaymentScheme getScheme() {
return scheme;
}
public void setScheme(PaymentScheme scheme) {
this.scheme = scheme;
}
public PaymentInitiationPaymentGetResponse adjustedScheme(PaymentScheme adjustedScheme) {
this.adjustedScheme = adjustedScheme;
return this;
}
/**
* Get adjustedScheme
* @return adjustedScheme
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public PaymentScheme getAdjustedScheme() {
return adjustedScheme;
}
public void setAdjustedScheme(PaymentScheme adjustedScheme) {
this.adjustedScheme = adjustedScheme;
}
public PaymentInitiationPaymentGetResponse consentId(String consentId) {
this.consentId = consentId;
return this;
}
/**
* The payment consent ID that this payment was initiated with. Is present only when payment was initiated using the payment consent.
* @return consentId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The payment consent ID that this payment was initiated with. Is present only when payment was initiated using the payment consent.")
public String getConsentId() {
return consentId;
}
public void setConsentId(String consentId) {
this.consentId = consentId;
}
public PaymentInitiationPaymentGetResponse transactionId(String transactionId) {
this.transactionId = transactionId;
return this;
}
/**
* The transaction ID that this payment is associated with, if any. This is present only when a payment was initiated using virtual accounts.
* @return transactionId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The transaction ID that this payment is associated with, if any. This is present only when a payment was initiated using virtual accounts.")
public String getTransactionId() {
return transactionId;
}
public void setTransactionId(String transactionId) {
this.transactionId = transactionId;
}
public PaymentInitiationPaymentGetResponse endToEndId(String endToEndId) {
this.endToEndId = endToEndId;
return this;
}
/**
* A unique identifier assigned by Plaid to each payment for tracking and reconciliation purposes. Note: Not all banks handle `end_to_end_id` consistently. To ensure accurate matching, clients should convert both the incoming `end_to_end_id` and the one provided by Plaid to the same case (either lower or upper) before comparison. For virtual account payments, Plaid manages this field automatically.
* @return endToEndId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A unique identifier assigned by Plaid to each payment for tracking and reconciliation purposes. Note: Not all banks handle `end_to_end_id` consistently. To ensure accurate matching, clients should convert both the incoming `end_to_end_id` and the one provided by Plaid to the same case (either lower or upper) before comparison. For virtual account payments, Plaid manages this field automatically.")
public String getEndToEndId() {
return endToEndId;
}
public void setEndToEndId(String endToEndId) {
this.endToEndId = endToEndId;
}
public PaymentInitiationPaymentGetResponse error(PlaidError error) {
this.error = error;
return this;
}
/**
* Get error
* @return error
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public PlaidError getError() {
return error;
}
public void setError(PlaidError error) {
this.error = error;
}
public PaymentInitiationPaymentGetResponse 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;
}
PaymentInitiationPaymentGetResponse paymentInitiationPaymentGetResponse = (PaymentInitiationPaymentGetResponse) o;
return Objects.equals(this.paymentId, paymentInitiationPaymentGetResponse.paymentId) &&
Objects.equals(this.amount, paymentInitiationPaymentGetResponse.amount) &&
Objects.equals(this.status, paymentInitiationPaymentGetResponse.status) &&
Objects.equals(this.recipientId, paymentInitiationPaymentGetResponse.recipientId) &&
Objects.equals(this.reference, paymentInitiationPaymentGetResponse.reference) &&
Objects.equals(this.adjustedReference, paymentInitiationPaymentGetResponse.adjustedReference) &&
Objects.equals(this.lastStatusUpdate, paymentInitiationPaymentGetResponse.lastStatusUpdate) &&
Objects.equals(this.schedule, paymentInitiationPaymentGetResponse.schedule) &&
Objects.equals(this.refundDetails, paymentInitiationPaymentGetResponse.refundDetails) &&
Objects.equals(this.bacs, paymentInitiationPaymentGetResponse.bacs) &&
Objects.equals(this.iban, paymentInitiationPaymentGetResponse.iban) &&
Objects.equals(this.refundIds, paymentInitiationPaymentGetResponse.refundIds) &&
Objects.equals(this.amountRefunded, paymentInitiationPaymentGetResponse.amountRefunded) &&
Objects.equals(this.walletId, paymentInitiationPaymentGetResponse.walletId) &&
Objects.equals(this.scheme, paymentInitiationPaymentGetResponse.scheme) &&
Objects.equals(this.adjustedScheme, paymentInitiationPaymentGetResponse.adjustedScheme) &&
Objects.equals(this.consentId, paymentInitiationPaymentGetResponse.consentId) &&
Objects.equals(this.transactionId, paymentInitiationPaymentGetResponse.transactionId) &&
Objects.equals(this.endToEndId, paymentInitiationPaymentGetResponse.endToEndId) &&
Objects.equals(this.error, paymentInitiationPaymentGetResponse.error) &&
Objects.equals(this.requestId, paymentInitiationPaymentGetResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(paymentId, amount, status, recipientId, reference, adjustedReference, lastStatusUpdate, schedule, refundDetails, bacs, iban, refundIds, amountRefunded, walletId, scheme, adjustedScheme, consentId, transactionId, endToEndId, error, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PaymentInitiationPaymentGetResponse {\n");
sb.append(" paymentId: ").append(toIndentedString(paymentId)).append("\n");
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" recipientId: ").append(toIndentedString(recipientId)).append("\n");
sb.append(" reference: ").append(toIndentedString(reference)).append("\n");
sb.append(" adjustedReference: ").append(toIndentedString(adjustedReference)).append("\n");
sb.append(" lastStatusUpdate: ").append(toIndentedString(lastStatusUpdate)).append("\n");
sb.append(" schedule: ").append(toIndentedString(schedule)).append("\n");
sb.append(" refundDetails: ").append(toIndentedString(refundDetails)).append("\n");
sb.append(" bacs: ").append(toIndentedString(bacs)).append("\n");
sb.append(" iban: ").append(toIndentedString(iban)).append("\n");
sb.append(" refundIds: ").append(toIndentedString(refundIds)).append("\n");
sb.append(" amountRefunded: ").append(toIndentedString(amountRefunded)).append("\n");
sb.append(" walletId: ").append(toIndentedString(walletId)).append("\n");
sb.append(" scheme: ").append(toIndentedString(scheme)).append("\n");
sb.append(" adjustedScheme: ").append(toIndentedString(adjustedScheme)).append("\n");
sb.append(" consentId: ").append(toIndentedString(consentId)).append("\n");
sb.append(" transactionId: ").append(toIndentedString(transactionId)).append("\n");
sb.append(" endToEndId: ").append(toIndentedString(endToEndId)).append("\n");
sb.append(" error: ").append(toIndentedString(error)).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/PaymentAmount.java | src/main/java/com/plaid/client/model/PaymentAmount.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.PaymentAmountCurrency;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* The amount and currency of a payment
*/
@ApiModel(description = "The amount and currency of a payment")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class PaymentAmount {
public static final String SERIALIZED_NAME_CURRENCY = "currency";
@SerializedName(SERIALIZED_NAME_CURRENCY)
private PaymentAmountCurrency currency;
public static final String SERIALIZED_NAME_VALUE = "value";
@SerializedName(SERIALIZED_NAME_VALUE)
private Double value;
public PaymentAmount currency(PaymentAmountCurrency currency) {
this.currency = currency;
return this;
}
/**
* Get currency
* @return currency
**/
@ApiModelProperty(required = true, value = "")
public PaymentAmountCurrency getCurrency() {
return currency;
}
public void setCurrency(PaymentAmountCurrency currency) {
this.currency = currency;
}
public PaymentAmount value(Double value) {
this.value = value;
return this;
}
/**
* The amount of the payment. Must contain at most two digits of precision e.g. `1.23`. Minimum accepted value is `1`.
* @return value
**/
@ApiModelProperty(required = true, value = "The amount of the payment. Must contain at most two digits of precision e.g. `1.23`. Minimum accepted value is `1`.")
public Double getValue() {
return value;
}
public void setValue(Double value) {
this.value = value;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PaymentAmount paymentAmount = (PaymentAmount) o;
return Objects.equals(this.currency, paymentAmount.currency) &&
Objects.equals(this.value, paymentAmount.value);
}
@Override
public int hashCode() {
return Objects.hash(currency, value);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PaymentAmount {\n");
sb.append(" currency: ").append(toIndentedString(currency)).append("\n");
sb.append(" value: ").append(toIndentedString(value)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CategoriesGetResponse.java | src/main/java/com/plaid/client/model/CategoriesGetResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.Category;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* CategoriesGetResponse defines the response schema for `/categories/get`
*/
@ApiModel(description = "CategoriesGetResponse defines the response schema for `/categories/get`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CategoriesGetResponse {
public static final String SERIALIZED_NAME_CATEGORIES = "categories";
@SerializedName(SERIALIZED_NAME_CATEGORIES)
private List<Category> categories = new ArrayList<>();
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public CategoriesGetResponse categories(List<Category> categories) {
this.categories = categories;
return this;
}
public CategoriesGetResponse addCategoriesItem(Category categoriesItem) {
this.categories.add(categoriesItem);
return this;
}
/**
* An array of all of the transaction categories used by Plaid.
* @return categories
**/
@ApiModelProperty(required = true, value = "An array of all of the transaction categories used by Plaid.")
public List<Category> getCategories() {
return categories;
}
public void setCategories(List<Category> categories) {
this.categories = categories;
}
public CategoriesGetResponse 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;
}
CategoriesGetResponse categoriesGetResponse = (CategoriesGetResponse) o;
return Objects.equals(this.categories, categoriesGetResponse.categories) &&
Objects.equals(this.requestId, categoriesGetResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(categories, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CategoriesGetResponse {\n");
sb.append(" categories: ").append(toIndentedString(categories)).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/SessionTokenCreateResponse.java | src/main/java/com/plaid/client/model/SessionTokenCreateResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.SessionTokenCreateResponseLink;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* SessionTokenCreateResponse defines the response schema for `/session/token/create`
*/
@ApiModel(description = "SessionTokenCreateResponse defines the response schema for `/session/token/create`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class SessionTokenCreateResponse {
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public static final String SERIALIZED_NAME_LINK = "link";
@SerializedName(SERIALIZED_NAME_LINK)
private SessionTokenCreateResponseLink link;
public SessionTokenCreateResponse 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 SessionTokenCreateResponse link(SessionTokenCreateResponseLink link) {
this.link = link;
return this;
}
/**
* Get link
* @return link
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public SessionTokenCreateResponseLink getLink() {
return link;
}
public void setLink(SessionTokenCreateResponseLink link) {
this.link = link;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SessionTokenCreateResponse sessionTokenCreateResponse = (SessionTokenCreateResponse) o;
return Objects.equals(this.requestId, sessionTokenCreateResponse.requestId) &&
Objects.equals(this.link, sessionTokenCreateResponse.link);
}
@Override
public int hashCode() {
return Objects.hash(requestId, link);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SessionTokenCreateResponse {\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append(" link: ").append(toIndentedString(link)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/NegativeBalanceInsights.java | src/main/java/com/plaid/client/model/NegativeBalanceInsights.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.AmountWithCurrency;
import com.plaid.client.model.NegativeBalanceOccurrence;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* Insights into negative balance occurrences, including frequency, duration, and minimum balance details.
*/
@ApiModel(description = "Insights into negative balance occurrences, including frequency, duration, and minimum balance details.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class NegativeBalanceInsights {
public static final String SERIALIZED_NAME_DAYS_SINCE_LAST_OCCURRENCE = "days_since_last_occurrence";
@SerializedName(SERIALIZED_NAME_DAYS_SINCE_LAST_OCCURRENCE)
private Integer daysSinceLastOccurrence;
public static final String SERIALIZED_NAME_DAYS_WITH_NEGATIVE_BALANCE = "days_with_negative_balance";
@SerializedName(SERIALIZED_NAME_DAYS_WITH_NEGATIVE_BALANCE)
private Integer daysWithNegativeBalance;
public static final String SERIALIZED_NAME_MINIMUM_BALANCE = "minimum_balance";
@SerializedName(SERIALIZED_NAME_MINIMUM_BALANCE)
private AmountWithCurrency minimumBalance;
public static final String SERIALIZED_NAME_OCCURRENCES = "occurrences";
@SerializedName(SERIALIZED_NAME_OCCURRENCES)
private List<NegativeBalanceOccurrence> occurrences = null;
public NegativeBalanceInsights daysSinceLastOccurrence(Integer daysSinceLastOccurrence) {
this.daysSinceLastOccurrence = daysSinceLastOccurrence;
return this;
}
/**
* The number of days since the last transaction that caused any account in the report to have a negative balance. This value is inclusive of the date of the last negative balance, meaning that if the last negative balance occurred today, this value will be `0`.
* @return daysSinceLastOccurrence
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The number of days since the last transaction that caused any account in the report to have a negative balance. This value is inclusive of the date of the last negative balance, meaning that if the last negative balance occurred today, this value will be `0`.")
public Integer getDaysSinceLastOccurrence() {
return daysSinceLastOccurrence;
}
public void setDaysSinceLastOccurrence(Integer daysSinceLastOccurrence) {
this.daysSinceLastOccurrence = daysSinceLastOccurrence;
}
public NegativeBalanceInsights daysWithNegativeBalance(Integer daysWithNegativeBalance) {
this.daysWithNegativeBalance = daysWithNegativeBalance;
return this;
}
/**
* The number of aggregated days that the accounts in the report has had a negative balance within the given time window.
* @return daysWithNegativeBalance
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The number of aggregated days that the accounts in the report has had a negative balance within the given time window.")
public Integer getDaysWithNegativeBalance() {
return daysWithNegativeBalance;
}
public void setDaysWithNegativeBalance(Integer daysWithNegativeBalance) {
this.daysWithNegativeBalance = daysWithNegativeBalance;
}
public NegativeBalanceInsights minimumBalance(AmountWithCurrency minimumBalance) {
this.minimumBalance = minimumBalance;
return this;
}
/**
* Get minimumBalance
* @return minimumBalance
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public AmountWithCurrency getMinimumBalance() {
return minimumBalance;
}
public void setMinimumBalance(AmountWithCurrency minimumBalance) {
this.minimumBalance = minimumBalance;
}
public NegativeBalanceInsights occurrences(List<NegativeBalanceOccurrence> occurrences) {
this.occurrences = occurrences;
return this;
}
public NegativeBalanceInsights addOccurrencesItem(NegativeBalanceOccurrence occurrencesItem) {
if (this.occurrences == null) {
this.occurrences = new ArrayList<>();
}
this.occurrences.add(occurrencesItem);
return this;
}
/**
* The summary of the negative balance occurrences for this account. If the user has not had a negative balance in the account in the given time window, this list will be empty.
* @return occurrences
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The summary of the negative balance occurrences for this account. If the user has not had a negative balance in the account in the given time window, this list will be empty.")
public List<NegativeBalanceOccurrence> getOccurrences() {
return occurrences;
}
public void setOccurrences(List<NegativeBalanceOccurrence> occurrences) {
this.occurrences = occurrences;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
NegativeBalanceInsights negativeBalanceInsights = (NegativeBalanceInsights) o;
return Objects.equals(this.daysSinceLastOccurrence, negativeBalanceInsights.daysSinceLastOccurrence) &&
Objects.equals(this.daysWithNegativeBalance, negativeBalanceInsights.daysWithNegativeBalance) &&
Objects.equals(this.minimumBalance, negativeBalanceInsights.minimumBalance) &&
Objects.equals(this.occurrences, negativeBalanceInsights.occurrences);
}
@Override
public int hashCode() {
return Objects.hash(daysSinceLastOccurrence, daysWithNegativeBalance, minimumBalance, occurrences);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class NegativeBalanceInsights {\n");
sb.append(" daysSinceLastOccurrence: ").append(toIndentedString(daysSinceLastOccurrence)).append("\n");
sb.append(" daysWithNegativeBalance: ").append(toIndentedString(daysWithNegativeBalance)).append("\n");
sb.append(" minimumBalance: ").append(toIndentedString(minimumBalance)).append("\n");
sb.append(" occurrences: ").append(toIndentedString(occurrences)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/UserThirdPartyTokenRemoveResponse.java | src/main/java/com/plaid/client/model/UserThirdPartyTokenRemoveResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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;
/**
* UserThirdPartyTokenCreateResponse defines the response schema for `/user/third_party_token/remove`
*/
@ApiModel(description = "UserThirdPartyTokenCreateResponse defines the response schema for `/user/third_party_token/remove`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class UserThirdPartyTokenRemoveResponse {
public static final String SERIALIZED_NAME_REMOVED = "removed";
@SerializedName(SERIALIZED_NAME_REMOVED)
private Boolean removed;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public UserThirdPartyTokenRemoveResponse removed(Boolean removed) {
this.removed = removed;
return this;
}
/**
* `true` if the third-party user token was successfully removed.
* @return removed
**/
@ApiModelProperty(required = true, value = "`true` if the third-party user token was successfully removed.")
public Boolean getRemoved() {
return removed;
}
public void setRemoved(Boolean removed) {
this.removed = removed;
}
public UserThirdPartyTokenRemoveResponse 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;
}
UserThirdPartyTokenRemoveResponse userThirdPartyTokenRemoveResponse = (UserThirdPartyTokenRemoveResponse) o;
return Objects.equals(this.removed, userThirdPartyTokenRemoveResponse.removed) &&
Objects.equals(this.requestId, userThirdPartyTokenRemoveResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(removed, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UserThirdPartyTokenRemoveResponse {\n");
sb.append(" removed: ").append(toIndentedString(removed)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaymentInitiationPaymentTokenCreateResponse.java | src/main/java/com/plaid/client/model/PaymentInitiationPaymentTokenCreateResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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;
/**
* PaymentInitiationPaymentTokenCreateResponse defines the response schema for `/payment_initiation/payment/token/create`
*/
@ApiModel(description = "PaymentInitiationPaymentTokenCreateResponse defines the response schema for `/payment_initiation/payment/token/create`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class PaymentInitiationPaymentTokenCreateResponse {
public static final String SERIALIZED_NAME_PAYMENT_TOKEN = "payment_token";
@SerializedName(SERIALIZED_NAME_PAYMENT_TOKEN)
private String paymentToken;
public static final String SERIALIZED_NAME_PAYMENT_TOKEN_EXPIRATION_TIME = "payment_token_expiration_time";
@SerializedName(SERIALIZED_NAME_PAYMENT_TOKEN_EXPIRATION_TIME)
private OffsetDateTime paymentTokenExpirationTime;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public PaymentInitiationPaymentTokenCreateResponse paymentToken(String paymentToken) {
this.paymentToken = paymentToken;
return this;
}
/**
* A `payment_token` that can be provided to Link initialization to enter the payment initiation flow
* @return paymentToken
**/
@ApiModelProperty(required = true, value = "A `payment_token` that can be provided to Link initialization to enter the payment initiation flow")
public String getPaymentToken() {
return paymentToken;
}
public void setPaymentToken(String paymentToken) {
this.paymentToken = paymentToken;
}
public PaymentInitiationPaymentTokenCreateResponse paymentTokenExpirationTime(OffsetDateTime paymentTokenExpirationTime) {
this.paymentTokenExpirationTime = paymentTokenExpirationTime;
return this;
}
/**
* The date and time at which the token will expire, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format. A `payment_token` expires after 15 minutes.
* @return paymentTokenExpirationTime
**/
@ApiModelProperty(required = true, value = "The date and time at which the token will expire, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format. A `payment_token` expires after 15 minutes.")
public OffsetDateTime getPaymentTokenExpirationTime() {
return paymentTokenExpirationTime;
}
public void setPaymentTokenExpirationTime(OffsetDateTime paymentTokenExpirationTime) {
this.paymentTokenExpirationTime = paymentTokenExpirationTime;
}
public PaymentInitiationPaymentTokenCreateResponse 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;
}
PaymentInitiationPaymentTokenCreateResponse paymentInitiationPaymentTokenCreateResponse = (PaymentInitiationPaymentTokenCreateResponse) o;
return Objects.equals(this.paymentToken, paymentInitiationPaymentTokenCreateResponse.paymentToken) &&
Objects.equals(this.paymentTokenExpirationTime, paymentInitiationPaymentTokenCreateResponse.paymentTokenExpirationTime) &&
Objects.equals(this.requestId, paymentInitiationPaymentTokenCreateResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(paymentToken, paymentTokenExpirationTime, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PaymentInitiationPaymentTokenCreateResponse {\n");
sb.append(" paymentToken: ").append(toIndentedString(paymentToken)).append("\n");
sb.append(" paymentTokenExpirationTime: ").append(toIndentedString(paymentTokenExpirationTime)).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/TransferRecurringCreateRequest.java | src/main/java/com/plaid/client/model/TransferRecurringCreateRequest.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.ACHClass;
import com.plaid.client.model.TransferDevice;
import com.plaid.client.model.TransferRecurringNetwork;
import com.plaid.client.model.TransferRecurringSchedule;
import com.plaid.client.model.TransferType;
import com.plaid.client.model.TransferUserInRequest;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Defines the request schema for `/transfer/recurring/create`
*/
@ApiModel(description = "Defines the request schema for `/transfer/recurring/create`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TransferRecurringCreateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
private String clientId;
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token";
@SerializedName(SERIALIZED_NAME_ACCESS_TOKEN)
private String accessToken;
public static final String SERIALIZED_NAME_IDEMPOTENCY_KEY = "idempotency_key";
@SerializedName(SERIALIZED_NAME_IDEMPOTENCY_KEY)
private String idempotencyKey;
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_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
private TransferType type;
public static final String SERIALIZED_NAME_NETWORK = "network";
@SerializedName(SERIALIZED_NAME_NETWORK)
private TransferRecurringNetwork network;
public static final String SERIALIZED_NAME_ACH_CLASS = "ach_class";
@SerializedName(SERIALIZED_NAME_ACH_CLASS)
private ACHClass achClass;
public static final String SERIALIZED_NAME_AMOUNT = "amount";
@SerializedName(SERIALIZED_NAME_AMOUNT)
private String amount;
public static final String SERIALIZED_NAME_USER_PRESENT = "user_present";
@SerializedName(SERIALIZED_NAME_USER_PRESENT)
private Boolean userPresent;
public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code";
@SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE)
private String isoCurrencyCode;
public static final String SERIALIZED_NAME_DESCRIPTION = "description";
@SerializedName(SERIALIZED_NAME_DESCRIPTION)
private String description;
public static final String SERIALIZED_NAME_TEST_CLOCK_ID = "test_clock_id";
@SerializedName(SERIALIZED_NAME_TEST_CLOCK_ID)
private String testClockId;
public static final String SERIALIZED_NAME_SCHEDULE = "schedule";
@SerializedName(SERIALIZED_NAME_SCHEDULE)
private TransferRecurringSchedule schedule;
public static final String SERIALIZED_NAME_USER = "user";
@SerializedName(SERIALIZED_NAME_USER)
private TransferUserInRequest user;
public static final String SERIALIZED_NAME_DEVICE = "device";
@SerializedName(SERIALIZED_NAME_DEVICE)
private TransferDevice device;
public TransferRecurringCreateRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public TransferRecurringCreateRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public TransferRecurringCreateRequest accessToken(String accessToken) {
this.accessToken = accessToken;
return this;
}
/**
* The Plaid `access_token` for the account that will be debited or credited.
* @return accessToken
**/
@ApiModelProperty(required = true, value = "The Plaid `access_token` for the account that will be debited or credited.")
public String getAccessToken() {
return accessToken;
}
public void setAccessToken(String accessToken) {
this.accessToken = accessToken;
}
public TransferRecurringCreateRequest idempotencyKey(String idempotencyKey) {
this.idempotencyKey = idempotencyKey;
return this;
}
/**
* A random key provided by the client, per unique recurring transfer. Maximum of 50 characters. The API supports idempotency for safely retrying requests without accidentally performing the same operation twice. For example, if a request to create a recurring fails due to a network connection error, you can retry the request with the same idempotency key to guarantee that only a single recurring transfer is created.
* @return idempotencyKey
**/
@ApiModelProperty(required = true, value = "A random key provided by the client, per unique recurring transfer. Maximum of 50 characters. The API supports idempotency for safely retrying requests without accidentally performing the same operation twice. For example, if a request to create a recurring fails due to a network connection error, you can retry the request with the same idempotency key to guarantee that only a single recurring transfer is created.")
public String getIdempotencyKey() {
return idempotencyKey;
}
public void setIdempotencyKey(String idempotencyKey) {
this.idempotencyKey = idempotencyKey;
}
public TransferRecurringCreateRequest accountId(String accountId) {
this.accountId = accountId;
return this;
}
/**
* The Plaid `account_id` corresponding to the end-user account that will be debited or credited.
* @return accountId
**/
@ApiModelProperty(required = true, value = "The Plaid `account_id` corresponding to the end-user account that will be debited or credited.")
public String getAccountId() {
return accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public TransferRecurringCreateRequest fundingAccountId(String fundingAccountId) {
this.fundingAccountId = fundingAccountId;
return this;
}
/**
* Specify the account used to fund the transfer. Customers can find a list of `funding_account_id`s in the Accounts page of your Plaid Dashboard, under the \"Account ID\" column. If this field is left blank, it will default to the default `funding_account_id` specified during onboarding.
* @return fundingAccountId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Specify the account used to fund the transfer. Customers can find a list of `funding_account_id`s in the Accounts page of your Plaid Dashboard, under the \"Account ID\" column. If this field is left blank, it will default to the default `funding_account_id` specified during onboarding.")
public String getFundingAccountId() {
return fundingAccountId;
}
public void setFundingAccountId(String fundingAccountId) {
this.fundingAccountId = fundingAccountId;
}
public TransferRecurringCreateRequest type(TransferType type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
**/
@ApiModelProperty(required = true, value = "")
public TransferType getType() {
return type;
}
public void setType(TransferType type) {
this.type = type;
}
public TransferRecurringCreateRequest network(TransferRecurringNetwork network) {
this.network = network;
return this;
}
/**
* Get network
* @return network
**/
@ApiModelProperty(required = true, value = "")
public TransferRecurringNetwork getNetwork() {
return network;
}
public void setNetwork(TransferRecurringNetwork network) {
this.network = network;
}
public TransferRecurringCreateRequest achClass(ACHClass achClass) {
this.achClass = achClass;
return this;
}
/**
* Get achClass
* @return achClass
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public ACHClass getAchClass() {
return achClass;
}
public void setAchClass(ACHClass achClass) {
this.achClass = achClass;
}
public TransferRecurringCreateRequest amount(String amount) {
this.amount = amount;
return this;
}
/**
* The amount of the transfer (decimal string with two digits of precision e.g. \"10.00\"). When calling `/transfer/authorization/create`, specify the maximum amount to authorize. When calling `/transfer/create`, specify the exact amount of the transfer, up to a maximum of the amount authorized. If this field is left blank when calling `/transfer/create`, the maximum amount authorized in the `authorization_id` will be sent.
* @return amount
**/
@ApiModelProperty(required = true, value = "The amount of the transfer (decimal string with two digits of precision e.g. \"10.00\"). When calling `/transfer/authorization/create`, specify the maximum amount to authorize. When calling `/transfer/create`, specify the exact amount of the transfer, up to a maximum of the amount authorized. If this field is left blank when calling `/transfer/create`, the maximum amount authorized in the `authorization_id` will be sent.")
public String getAmount() {
return amount;
}
public void setAmount(String amount) {
this.amount = amount;
}
public TransferRecurringCreateRequest userPresent(Boolean userPresent) {
this.userPresent = userPresent;
return this;
}
/**
* If the end user is initiating the specific transfer themselves via an interactive UI, this should be `true`; for automatic recurring payments where the end user is not actually initiating each individual transfer, it should be `false`.
* @return userPresent
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "If the end user is initiating the specific transfer themselves via an interactive UI, this should be `true`; for automatic recurring payments where the end user is not actually initiating each individual transfer, it should be `false`.")
public Boolean getUserPresent() {
return userPresent;
}
public void setUserPresent(Boolean userPresent) {
this.userPresent = userPresent;
}
public TransferRecurringCreateRequest isoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
return this;
}
/**
* The currency of the transfer amount. The default value is \"USD\".
* @return isoCurrencyCode
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The currency of the transfer amount. The default value is \"USD\".")
public String getIsoCurrencyCode() {
return isoCurrencyCode;
}
public void setIsoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
}
public TransferRecurringCreateRequest description(String description) {
this.description = description;
return this;
}
/**
* The description of the recurring transfer.
* @return description
**/
@ApiModelProperty(required = true, value = "The description of the recurring transfer.")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public TransferRecurringCreateRequest testClockId(String testClockId) {
this.testClockId = testClockId;
return this;
}
/**
* Plaid’s unique identifier for a test clock. This field may only be used when using the `sandbox` environment. If provided, the created `recurring_transfer` is associated with the `test_clock`. New originations are automatically generated when the associated `test_clock` advances. For more details, see [Simulating recurring transfers](https://plaid.com/docs/transfer/sandbox/#simulating-recurring-transfers).
* @return testClockId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Plaid’s unique identifier for a test clock. This field may only be used when using the `sandbox` environment. If provided, the created `recurring_transfer` is associated with the `test_clock`. New originations are automatically generated when the associated `test_clock` advances. For more details, see [Simulating recurring transfers](https://plaid.com/docs/transfer/sandbox/#simulating-recurring-transfers).")
public String getTestClockId() {
return testClockId;
}
public void setTestClockId(String testClockId) {
this.testClockId = testClockId;
}
public TransferRecurringCreateRequest schedule(TransferRecurringSchedule schedule) {
this.schedule = schedule;
return this;
}
/**
* Get schedule
* @return schedule
**/
@ApiModelProperty(required = true, value = "")
public TransferRecurringSchedule getSchedule() {
return schedule;
}
public void setSchedule(TransferRecurringSchedule schedule) {
this.schedule = schedule;
}
public TransferRecurringCreateRequest user(TransferUserInRequest user) {
this.user = user;
return this;
}
/**
* Get user
* @return user
**/
@ApiModelProperty(required = true, value = "")
public TransferUserInRequest getUser() {
return user;
}
public void setUser(TransferUserInRequest user) {
this.user = user;
}
public TransferRecurringCreateRequest device(TransferDevice device) {
this.device = device;
return this;
}
/**
* Get device
* @return device
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public TransferDevice getDevice() {
return device;
}
public void setDevice(TransferDevice device) {
this.device = device;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransferRecurringCreateRequest transferRecurringCreateRequest = (TransferRecurringCreateRequest) o;
return Objects.equals(this.clientId, transferRecurringCreateRequest.clientId) &&
Objects.equals(this.secret, transferRecurringCreateRequest.secret) &&
Objects.equals(this.accessToken, transferRecurringCreateRequest.accessToken) &&
Objects.equals(this.idempotencyKey, transferRecurringCreateRequest.idempotencyKey) &&
Objects.equals(this.accountId, transferRecurringCreateRequest.accountId) &&
Objects.equals(this.fundingAccountId, transferRecurringCreateRequest.fundingAccountId) &&
Objects.equals(this.type, transferRecurringCreateRequest.type) &&
Objects.equals(this.network, transferRecurringCreateRequest.network) &&
Objects.equals(this.achClass, transferRecurringCreateRequest.achClass) &&
Objects.equals(this.amount, transferRecurringCreateRequest.amount) &&
Objects.equals(this.userPresent, transferRecurringCreateRequest.userPresent) &&
Objects.equals(this.isoCurrencyCode, transferRecurringCreateRequest.isoCurrencyCode) &&
Objects.equals(this.description, transferRecurringCreateRequest.description) &&
Objects.equals(this.testClockId, transferRecurringCreateRequest.testClockId) &&
Objects.equals(this.schedule, transferRecurringCreateRequest.schedule) &&
Objects.equals(this.user, transferRecurringCreateRequest.user) &&
Objects.equals(this.device, transferRecurringCreateRequest.device);
}
@Override
public int hashCode() {
return Objects.hash(clientId, secret, accessToken, idempotencyKey, accountId, fundingAccountId, type, network, achClass, amount, userPresent, isoCurrencyCode, description, testClockId, schedule, user, device);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransferRecurringCreateRequest {\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n");
sb.append(" idempotencyKey: ").append(toIndentedString(idempotencyKey)).append("\n");
sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
sb.append(" fundingAccountId: ").append(toIndentedString(fundingAccountId)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" network: ").append(toIndentedString(network)).append("\n");
sb.append(" achClass: ").append(toIndentedString(achClass)).append("\n");
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
sb.append(" userPresent: ").append(toIndentedString(userPresent)).append("\n");
sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" testClockId: ").append(toIndentedString(testClockId)).append("\n");
sb.append(" schedule: ").append(toIndentedString(schedule)).append("\n");
sb.append(" user: ").append(toIndentedString(user)).append("\n");
sb.append(" device: ").append(toIndentedString(device)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SandboxBankTransferFireWebhookResponse.java | src/main/java/com/plaid/client/model/SandboxBankTransferFireWebhookResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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 `/sandbox/bank_transfer/fire_webhook`
*/
@ApiModel(description = "Defines the response schema for `/sandbox/bank_transfer/fire_webhook`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class SandboxBankTransferFireWebhookResponse {
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public SandboxBankTransferFireWebhookResponse 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;
}
SandboxBankTransferFireWebhookResponse sandboxBankTransferFireWebhookResponse = (SandboxBankTransferFireWebhookResponse) o;
return Objects.equals(this.requestId, sandboxBankTransferFireWebhookResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SandboxBankTransferFireWebhookResponse {\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/IdentityDocumentUploadRiskInsights.java | src/main/java/com/plaid/client/model/IdentityDocumentUploadRiskInsights.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.IdentityDocumentUploadRiskSignal;
import com.plaid.client.model.IdentityDocumentUploadRiskSummary;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* Object representing fraud risk data of the uploaded document. Only provided when using Identity Document Upload with Fraud Risk enabled.
*/
@ApiModel(description = "Object representing fraud risk data of the uploaded document. Only provided when using Identity Document Upload with Fraud Risk enabled.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class IdentityDocumentUploadRiskInsights {
public static final String SERIALIZED_NAME_RISK_SUMMARY = "risk_summary";
@SerializedName(SERIALIZED_NAME_RISK_SUMMARY)
private IdentityDocumentUploadRiskSummary riskSummary;
public static final String SERIALIZED_NAME_RISK_SIGNALS = "risk_signals";
@SerializedName(SERIALIZED_NAME_RISK_SIGNALS)
private List<IdentityDocumentUploadRiskSignal> riskSignals = null;
public IdentityDocumentUploadRiskInsights riskSummary(IdentityDocumentUploadRiskSummary riskSummary) {
this.riskSummary = riskSummary;
return this;
}
/**
* Get riskSummary
* @return riskSummary
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public IdentityDocumentUploadRiskSummary getRiskSummary() {
return riskSummary;
}
public void setRiskSummary(IdentityDocumentUploadRiskSummary riskSummary) {
this.riskSummary = riskSummary;
}
public IdentityDocumentUploadRiskInsights riskSignals(List<IdentityDocumentUploadRiskSignal> riskSignals) {
this.riskSignals = riskSignals;
return this;
}
public IdentityDocumentUploadRiskInsights addRiskSignalsItem(IdentityDocumentUploadRiskSignal riskSignalsItem) {
if (this.riskSignals == null) {
this.riskSignals = new ArrayList<>();
}
this.riskSignals.add(riskSignalsItem);
return this;
}
/**
* An array of risk signals.
* @return riskSignals
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "An array of risk signals.")
public List<IdentityDocumentUploadRiskSignal> getRiskSignals() {
return riskSignals;
}
public void setRiskSignals(List<IdentityDocumentUploadRiskSignal> riskSignals) {
this.riskSignals = riskSignals;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
IdentityDocumentUploadRiskInsights identityDocumentUploadRiskInsights = (IdentityDocumentUploadRiskInsights) o;
return Objects.equals(this.riskSummary, identityDocumentUploadRiskInsights.riskSummary) &&
Objects.equals(this.riskSignals, identityDocumentUploadRiskInsights.riskSignals);
}
@Override
public int hashCode() {
return Objects.hash(riskSummary, riskSignals);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class IdentityDocumentUploadRiskInsights {\n");
sb.append(" riskSummary: ").append(toIndentedString(riskSummary)).append("\n");
sb.append(" riskSignals: ").append(toIndentedString(riskSignals)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/SignalEvaluateRequest.java | src/main/java/com/plaid/client/model/SignalEvaluateRequest.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.SignalDevice;
import com.plaid.client.model.SignalUser;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* SignalEvaluateRequest defines the request schema for `/signal/evaluate`
*/
@ApiModel(description = "SignalEvaluateRequest defines the request schema for `/signal/evaluate`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class SignalEvaluateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
private String clientId;
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token";
@SerializedName(SERIALIZED_NAME_ACCESS_TOKEN)
private String accessToken;
public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
private String accountId;
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_AMOUNT = "amount";
@SerializedName(SERIALIZED_NAME_AMOUNT)
private Double amount;
public static final String SERIALIZED_NAME_USER_PRESENT = "user_present";
@SerializedName(SERIALIZED_NAME_USER_PRESENT)
private Boolean userPresent;
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_IS_RECURRING = "is_recurring";
@SerializedName(SERIALIZED_NAME_IS_RECURRING)
private Boolean isRecurring;
public static final String SERIALIZED_NAME_DEFAULT_PAYMENT_METHOD = "default_payment_method";
@SerializedName(SERIALIZED_NAME_DEFAULT_PAYMENT_METHOD)
private String defaultPaymentMethod;
public static final String SERIALIZED_NAME_USER = "user";
@SerializedName(SERIALIZED_NAME_USER)
private SignalUser user;
public static final String SERIALIZED_NAME_DEVICE = "device";
@SerializedName(SERIALIZED_NAME_DEVICE)
private SignalDevice device;
public static final String SERIALIZED_NAME_RISK_PROFILE_KEY = "risk_profile_key";
@SerializedName(SERIALIZED_NAME_RISK_PROFILE_KEY)
private String riskProfileKey;
public static final String SERIALIZED_NAME_RULESET_KEY = "ruleset_key";
@SerializedName(SERIALIZED_NAME_RULESET_KEY)
private String rulesetKey;
public SignalEvaluateRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public SignalEvaluateRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public SignalEvaluateRequest 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 SignalEvaluateRequest accountId(String accountId) {
this.accountId = accountId;
return this;
}
/**
* The Plaid `account_id` of the account that is the funding source for the proposed transaction. The `account_id` is returned in the `/accounts/get` endpoint as well as the [`onSuccess`](https://plaid.com/docs/link/ios/#link-ios-onsuccess-linkSuccess-metadata-accounts-id) callback metadata. This will return an [`INVALID_ACCOUNT_ID`](https://plaid.com/docs/errors/invalid-input/#invalid_account_id) error if the account has been removed at the bank or if the `account_id` is no longer valid.
* @return accountId
**/
@ApiModelProperty(required = true, value = "The Plaid `account_id` of the account that is the funding source for the proposed transaction. The `account_id` is returned in the `/accounts/get` endpoint as well as the [`onSuccess`](https://plaid.com/docs/link/ios/#link-ios-onsuccess-linkSuccess-metadata-accounts-id) callback metadata. This will return an [`INVALID_ACCOUNT_ID`](https://plaid.com/docs/errors/invalid-input/#invalid_account_id) error if the account has been removed at the bank or if the `account_id` is no longer valid.")
public String getAccountId() {
return accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public SignalEvaluateRequest clientTransactionId(String clientTransactionId) {
this.clientTransactionId = clientTransactionId;
return this;
}
/**
* The unique ID that you would like to use to refer to this evaluation attempt - for example, a payment attempt ID. You will use this later to debug this evaluation, and/or report an ACH return, etc. The max length for this field is 36 characters.
* @return clientTransactionId
**/
@ApiModelProperty(required = true, value = "The unique ID that you would like to use to refer to this evaluation attempt - for example, a payment attempt ID. You will use this later to debug this evaluation, and/or report an ACH return, etc. The max length for this field is 36 characters.")
public String getClientTransactionId() {
return clientTransactionId;
}
public void setClientTransactionId(String clientTransactionId) {
this.clientTransactionId = clientTransactionId;
}
public SignalEvaluateRequest amount(Double amount) {
this.amount = amount;
return this;
}
/**
* The transaction amount, in USD (e.g. `102.05`)
* @return amount
**/
@ApiModelProperty(required = true, value = "The transaction amount, in USD (e.g. `102.05`)")
public Double getAmount() {
return amount;
}
public void setAmount(Double amount) {
this.amount = amount;
}
public SignalEvaluateRequest userPresent(Boolean userPresent) {
this.userPresent = userPresent;
return this;
}
/**
* `true` if the end user is present while initiating the ACH transfer and the endpoint is being called; `false` otherwise (for example, when the ACH transfer is scheduled and the end user is not present, or you call this endpoint after the ACH transfer but before submitting the Nacha file for ACH processing). When using a Balance-only ruleset, this field is ignored. This field is not currently used as part of Signal Transaction Score evaluations, but may be used in the future.
* @return userPresent
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "`true` if the end user is present while initiating the ACH transfer and the endpoint is being called; `false` otherwise (for example, when the ACH transfer is scheduled and the end user is not present, or you call this endpoint after the ACH transfer but before submitting the Nacha file for ACH processing). When using a Balance-only ruleset, this field is ignored. This field is not currently used as part of Signal Transaction Score evaluations, but may be used in the future.")
public Boolean getUserPresent() {
return userPresent;
}
public void setUserPresent(Boolean userPresent) {
this.userPresent = userPresent;
}
public SignalEvaluateRequest clientUserId(String clientUserId) {
this.clientUserId = clientUserId;
return this;
}
/**
* A unique ID that identifies the end user in your system. This ID is used to correlate requests by a user with multiple Items. Personally identifiable information, such as an email address or phone number, should not be used in the `client_user_id`.
* @return clientUserId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A unique ID that identifies the end user in your system. This ID is used to correlate requests by a user with multiple Items. 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 SignalEvaluateRequest isRecurring(Boolean isRecurring) {
this.isRecurring = isRecurring;
return this;
}
/**
* Use `true` if the ACH transaction is a part of recurring schedule (for example, a monthly repayment); `false` otherwise. When using a Balance-only ruleset, this field is ignored.
* @return isRecurring
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Use `true` if the ACH transaction is a part of recurring schedule (for example, a monthly repayment); `false` otherwise. When using a Balance-only ruleset, this field is ignored.")
public Boolean getIsRecurring() {
return isRecurring;
}
public void setIsRecurring(Boolean isRecurring) {
this.isRecurring = isRecurring;
}
public SignalEvaluateRequest defaultPaymentMethod(String defaultPaymentMethod) {
this.defaultPaymentMethod = defaultPaymentMethod;
return this;
}
/**
* The default ACH payment method to complete the transaction. When using a Balance-only ruleset, this field is ignored. `SAME_DAY_ACH`: Same Day ACH by Nacha. The debit transaction is processed and settled on the same day. `STANDARD_ACH`: Standard ACH by Nacha. `MULTIPLE_PAYMENT_METHODS`: If there is no default debit rail or there are multiple payment methods. Possible values: `SAME_DAY_ACH`, `STANDARD_ACH`, `MULTIPLE_PAYMENT_METHODS`
* @return defaultPaymentMethod
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The default ACH payment method to complete the transaction. When using a Balance-only ruleset, this field is ignored. `SAME_DAY_ACH`: Same Day ACH by Nacha. The debit transaction is processed and settled on the same day. `STANDARD_ACH`: Standard ACH by Nacha. `MULTIPLE_PAYMENT_METHODS`: If there is no default debit rail or there are multiple payment methods. Possible values: `SAME_DAY_ACH`, `STANDARD_ACH`, `MULTIPLE_PAYMENT_METHODS`")
public String getDefaultPaymentMethod() {
return defaultPaymentMethod;
}
public void setDefaultPaymentMethod(String defaultPaymentMethod) {
this.defaultPaymentMethod = defaultPaymentMethod;
}
public SignalEvaluateRequest user(SignalUser user) {
this.user = user;
return this;
}
/**
* Get user
* @return user
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public SignalUser getUser() {
return user;
}
public void setUser(SignalUser user) {
this.user = user;
}
public SignalEvaluateRequest device(SignalDevice device) {
this.device = device;
return this;
}
/**
* Get device
* @return device
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public SignalDevice getDevice() {
return device;
}
public void setDevice(SignalDevice device) {
this.device = device;
}
public SignalEvaluateRequest riskProfileKey(String riskProfileKey) {
this.riskProfileKey = riskProfileKey;
return this;
}
/**
* Specifying `risk_profile_key` is deprecated. Please provide `ruleset` instead.
* @return riskProfileKey
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Specifying `risk_profile_key` is deprecated. Please provide `ruleset` instead.")
public String getRiskProfileKey() {
return riskProfileKey;
}
public void setRiskProfileKey(String riskProfileKey) {
this.riskProfileKey = riskProfileKey;
}
public SignalEvaluateRequest rulesetKey(String rulesetKey) {
this.rulesetKey = rulesetKey;
return this;
}
/**
* The key of the ruleset to use for evaluating this transaction. You can create a ruleset using the Plaid Dashboard, under [Signal->Rules](https://dashboard.plaid.com/signal/risk-profiles). If not provided, for all new customers as of October 15, 2025, the `default` ruleset will be used. For existing Signal Transaction Scores customers as of October 15, 2025, by default, no ruleset will be used if the `ruleset_key` is not provided. For more information, or to opt out of using rulesets, see [Signal Rules](https://plaid.com/docs/signal/signal-rules/).
* @return rulesetKey
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The key of the ruleset to use for evaluating this transaction. You can create a ruleset using the Plaid Dashboard, under [Signal->Rules](https://dashboard.plaid.com/signal/risk-profiles). If not provided, for all new customers as of October 15, 2025, the `default` ruleset will be used. For existing Signal Transaction Scores customers as of October 15, 2025, by default, no ruleset will be used if the `ruleset_key` is not provided. For more information, or to opt out of using rulesets, see [Signal Rules](https://plaid.com/docs/signal/signal-rules/).")
public String getRulesetKey() {
return rulesetKey;
}
public void setRulesetKey(String rulesetKey) {
this.rulesetKey = rulesetKey;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SignalEvaluateRequest signalEvaluateRequest = (SignalEvaluateRequest) o;
return Objects.equals(this.clientId, signalEvaluateRequest.clientId) &&
Objects.equals(this.secret, signalEvaluateRequest.secret) &&
Objects.equals(this.accessToken, signalEvaluateRequest.accessToken) &&
Objects.equals(this.accountId, signalEvaluateRequest.accountId) &&
Objects.equals(this.clientTransactionId, signalEvaluateRequest.clientTransactionId) &&
Objects.equals(this.amount, signalEvaluateRequest.amount) &&
Objects.equals(this.userPresent, signalEvaluateRequest.userPresent) &&
Objects.equals(this.clientUserId, signalEvaluateRequest.clientUserId) &&
Objects.equals(this.isRecurring, signalEvaluateRequest.isRecurring) &&
Objects.equals(this.defaultPaymentMethod, signalEvaluateRequest.defaultPaymentMethod) &&
Objects.equals(this.user, signalEvaluateRequest.user) &&
Objects.equals(this.device, signalEvaluateRequest.device) &&
Objects.equals(this.riskProfileKey, signalEvaluateRequest.riskProfileKey) &&
Objects.equals(this.rulesetKey, signalEvaluateRequest.rulesetKey);
}
@Override
public int hashCode() {
return Objects.hash(clientId, secret, accessToken, accountId, clientTransactionId, amount, userPresent, clientUserId, isRecurring, defaultPaymentMethod, user, device, riskProfileKey, rulesetKey);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SignalEvaluateRequest {\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n");
sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
sb.append(" clientTransactionId: ").append(toIndentedString(clientTransactionId)).append("\n");
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
sb.append(" userPresent: ").append(toIndentedString(userPresent)).append("\n");
sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n");
sb.append(" isRecurring: ").append(toIndentedString(isRecurring)).append("\n");
sb.append(" defaultPaymentMethod: ").append(toIndentedString(defaultPaymentMethod)).append("\n");
sb.append(" user: ").append(toIndentedString(user)).append("\n");
sb.append(" device: ").append(toIndentedString(device)).append("\n");
sb.append(" riskProfileKey: ").append(toIndentedString(riskProfileKey)).append("\n");
sb.append(" rulesetKey: ").append(toIndentedString(rulesetKey)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraBankIncomeSource.java | src/main/java/com/plaid/client/model/CraBankIncomeSource.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.CraBankIncomeEmployer;
import com.plaid.client.model.CraBankIncomeHistoricalSummary;
import com.plaid.client.model.CraBankIncomeIncomeProvider;
import com.plaid.client.model.CraBankIncomeStatus;
import com.plaid.client.model.CraPredictionInterval;
import com.plaid.client.model.CreditBankIncomeCategory;
import com.plaid.client.model.CreditBankIncomePayFrequency;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.time.LocalDate;
import java.util.ArrayList;
import java.util.List;
/**
* Detailed information for the income source.
*/
@ApiModel(description = "Detailed information for the income source.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CraBankIncomeSource {
public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
private String accountId;
public static final String SERIALIZED_NAME_INCOME_SOURCE_ID = "income_source_id";
@SerializedName(SERIALIZED_NAME_INCOME_SOURCE_ID)
private String incomeSourceId;
public static final String SERIALIZED_NAME_INCOME_DESCRIPTION = "income_description";
@SerializedName(SERIALIZED_NAME_INCOME_DESCRIPTION)
private String incomeDescription;
public static final String SERIALIZED_NAME_INCOME_CATEGORY = "income_category";
@SerializedName(SERIALIZED_NAME_INCOME_CATEGORY)
private CreditBankIncomeCategory incomeCategory;
public static final String SERIALIZED_NAME_START_DATE = "start_date";
@SerializedName(SERIALIZED_NAME_START_DATE)
private LocalDate startDate;
public static final String SERIALIZED_NAME_END_DATE = "end_date";
@SerializedName(SERIALIZED_NAME_END_DATE)
private LocalDate endDate;
public static final String SERIALIZED_NAME_PAY_FREQUENCY = "pay_frequency";
@SerializedName(SERIALIZED_NAME_PAY_FREQUENCY)
private CreditBankIncomePayFrequency payFrequency;
public static final String SERIALIZED_NAME_TOTAL_AMOUNT = "total_amount";
@SerializedName(SERIALIZED_NAME_TOTAL_AMOUNT)
private Double totalAmount;
public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code";
@SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE)
private String isoCurrencyCode;
public static final String SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE = "unofficial_currency_code";
@SerializedName(SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE)
private String unofficialCurrencyCode;
public static final String SERIALIZED_NAME_TRANSACTION_COUNT = "transaction_count";
@SerializedName(SERIALIZED_NAME_TRANSACTION_COUNT)
private Integer transactionCount;
public static final String SERIALIZED_NAME_NEXT_PAYMENT_DATE = "next_payment_date";
@SerializedName(SERIALIZED_NAME_NEXT_PAYMENT_DATE)
private LocalDate nextPaymentDate;
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private CraBankIncomeStatus status;
public static final String SERIALIZED_NAME_HISTORICAL_AVERAGE_MONTHLY_GROSS_INCOME = "historical_average_monthly_gross_income";
@SerializedName(SERIALIZED_NAME_HISTORICAL_AVERAGE_MONTHLY_GROSS_INCOME)
private Double historicalAverageMonthlyGrossIncome;
public static final String SERIALIZED_NAME_HISTORICAL_AVERAGE_MONTHLY_INCOME = "historical_average_monthly_income";
@SerializedName(SERIALIZED_NAME_HISTORICAL_AVERAGE_MONTHLY_INCOME)
private Double historicalAverageMonthlyIncome;
public static final String SERIALIZED_NAME_FORECASTED_AVERAGE_MONTHLY_INCOME = "forecasted_average_monthly_income";
@SerializedName(SERIALIZED_NAME_FORECASTED_AVERAGE_MONTHLY_INCOME)
private Double forecastedAverageMonthlyIncome;
public static final String SERIALIZED_NAME_FORECASTED_AVERAGE_MONTHLY_INCOME_PREDICTION_INTERVALS = "forecasted_average_monthly_income_prediction_intervals";
@SerializedName(SERIALIZED_NAME_FORECASTED_AVERAGE_MONTHLY_INCOME_PREDICTION_INTERVALS)
private List<CraPredictionInterval> forecastedAverageMonthlyIncomePredictionIntervals = new ArrayList<>();
public static final String SERIALIZED_NAME_EMPLOYER = "employer";
@SerializedName(SERIALIZED_NAME_EMPLOYER)
private CraBankIncomeEmployer employer;
public static final String SERIALIZED_NAME_INCOME_PROVIDER = "income_provider";
@SerializedName(SERIALIZED_NAME_INCOME_PROVIDER)
private CraBankIncomeIncomeProvider incomeProvider;
public static final String SERIALIZED_NAME_HISTORICAL_SUMMARY = "historical_summary";
@SerializedName(SERIALIZED_NAME_HISTORICAL_SUMMARY)
private List<CraBankIncomeHistoricalSummary> historicalSummary = null;
public CraBankIncomeSource accountId(String accountId) {
this.accountId = accountId;
return this;
}
/**
* The account ID with which this income source is associated.
* @return accountId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The account ID with which this income source is associated.")
public String getAccountId() {
return accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public CraBankIncomeSource incomeSourceId(String incomeSourceId) {
this.incomeSourceId = incomeSourceId;
return this;
}
/**
* A unique identifier for an income source. If the report is regenerated and a new `report_id` is created, the new report will have a new set of `income_source_id`s.
* @return incomeSourceId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A unique identifier for an income source. If the report is regenerated and a new `report_id` is created, the new report will have a new set of `income_source_id`s.")
public String getIncomeSourceId() {
return incomeSourceId;
}
public void setIncomeSourceId(String incomeSourceId) {
this.incomeSourceId = incomeSourceId;
}
public CraBankIncomeSource incomeDescription(String incomeDescription) {
this.incomeDescription = incomeDescription;
return this;
}
/**
* The most common name or original description for the underlying income transactions.
* @return incomeDescription
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The most common name or original description for the underlying income transactions.")
public String getIncomeDescription() {
return incomeDescription;
}
public void setIncomeDescription(String incomeDescription) {
this.incomeDescription = incomeDescription;
}
public CraBankIncomeSource incomeCategory(CreditBankIncomeCategory incomeCategory) {
this.incomeCategory = incomeCategory;
return this;
}
/**
* Get incomeCategory
* @return incomeCategory
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public CreditBankIncomeCategory getIncomeCategory() {
return incomeCategory;
}
public void setIncomeCategory(CreditBankIncomeCategory incomeCategory) {
this.incomeCategory = incomeCategory;
}
public CraBankIncomeSource startDate(LocalDate startDate) {
this.startDate = startDate;
return this;
}
/**
* Minimum of all dates within the specific income sources in the user's bank account for days requested by the client. The date will be returned in an ISO 8601 format (YYYY-MM-DD).
* @return startDate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Minimum of all dates within the specific income sources in the user's bank account for days requested by the client. The date will be returned in an ISO 8601 format (YYYY-MM-DD).")
public LocalDate getStartDate() {
return startDate;
}
public void setStartDate(LocalDate startDate) {
this.startDate = startDate;
}
public CraBankIncomeSource endDate(LocalDate endDate) {
this.endDate = endDate;
return this;
}
/**
* Maximum of all dates within the specific income sources in the user’s bank account for days requested by the client. The date will be returned in an ISO 8601 format (YYYY-MM-DD).
* @return endDate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Maximum of all dates within the specific income sources in the user’s bank account for days requested by the client. The date will be returned in an ISO 8601 format (YYYY-MM-DD).")
public LocalDate getEndDate() {
return endDate;
}
public void setEndDate(LocalDate endDate) {
this.endDate = endDate;
}
public CraBankIncomeSource payFrequency(CreditBankIncomePayFrequency payFrequency) {
this.payFrequency = payFrequency;
return this;
}
/**
* Get payFrequency
* @return payFrequency
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public CreditBankIncomePayFrequency getPayFrequency() {
return payFrequency;
}
public void setPayFrequency(CreditBankIncomePayFrequency payFrequency) {
this.payFrequency = payFrequency;
}
public CraBankIncomeSource totalAmount(Double totalAmount) {
this.totalAmount = totalAmount;
return this;
}
/**
* Total amount of earnings in the user’s bank account for the specific income source for days requested by the client.
* @return totalAmount
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Total amount of earnings in the user’s bank account for the specific income source for days requested by the client.")
public Double getTotalAmount() {
return totalAmount;
}
public void setTotalAmount(Double totalAmount) {
this.totalAmount = totalAmount;
}
public CraBankIncomeSource isoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
return this;
}
/**
* The ISO 4217 currency code of the amount or balance.
* @return isoCurrencyCode
**/
@javax.annotation.Nullable
@ApiModelProperty(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 CraBankIncomeSource unofficialCurrencyCode(String unofficialCurrencyCode) {
this.unofficialCurrencyCode = unofficialCurrencyCode;
return this;
}
/**
* 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.
* @return unofficialCurrencyCode
**/
@javax.annotation.Nullable
@ApiModelProperty(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;
}
public CraBankIncomeSource transactionCount(Integer transactionCount) {
this.transactionCount = transactionCount;
return this;
}
/**
* Number of transactions for the income source within the start and end date.
* @return transactionCount
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Number of transactions for the income source within the start and end date.")
public Integer getTransactionCount() {
return transactionCount;
}
public void setTransactionCount(Integer transactionCount) {
this.transactionCount = transactionCount;
}
public CraBankIncomeSource nextPaymentDate(LocalDate nextPaymentDate) {
this.nextPaymentDate = nextPaymentDate;
return this;
}
/**
* The expected date of the end user’s next paycheck for the income source. The date will be returned in an ISO 8601 format (YYYY-MM-DD).
* @return nextPaymentDate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The expected date of the end user’s next paycheck for the income source. The date will be returned in an ISO 8601 format (YYYY-MM-DD).")
public LocalDate getNextPaymentDate() {
return nextPaymentDate;
}
public void setNextPaymentDate(LocalDate nextPaymentDate) {
this.nextPaymentDate = nextPaymentDate;
}
public CraBankIncomeSource status(CraBankIncomeStatus status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public CraBankIncomeStatus getStatus() {
return status;
}
public void setStatus(CraBankIncomeStatus status) {
this.status = status;
}
public CraBankIncomeSource historicalAverageMonthlyGrossIncome(Double historicalAverageMonthlyGrossIncome) {
this.historicalAverageMonthlyGrossIncome = historicalAverageMonthlyGrossIncome;
return this;
}
/**
* An estimate of the average gross monthly income based on the historical net amount and income category for the income source(s).
* @return historicalAverageMonthlyGrossIncome
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "An estimate of the average gross monthly income based on the historical net amount and income category for the income source(s).")
public Double getHistoricalAverageMonthlyGrossIncome() {
return historicalAverageMonthlyGrossIncome;
}
public void setHistoricalAverageMonthlyGrossIncome(Double historicalAverageMonthlyGrossIncome) {
this.historicalAverageMonthlyGrossIncome = historicalAverageMonthlyGrossIncome;
}
public CraBankIncomeSource historicalAverageMonthlyIncome(Double historicalAverageMonthlyIncome) {
this.historicalAverageMonthlyIncome = historicalAverageMonthlyIncome;
return this;
}
/**
* The average monthly net income amount estimated based on the historical data for the income source(s).
* @return historicalAverageMonthlyIncome
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The average monthly net income amount estimated based on the historical data for the income source(s).")
public Double getHistoricalAverageMonthlyIncome() {
return historicalAverageMonthlyIncome;
}
public void setHistoricalAverageMonthlyIncome(Double historicalAverageMonthlyIncome) {
this.historicalAverageMonthlyIncome = historicalAverageMonthlyIncome;
}
public CraBankIncomeSource forecastedAverageMonthlyIncome(Double forecastedAverageMonthlyIncome) {
this.forecastedAverageMonthlyIncome = forecastedAverageMonthlyIncome;
return this;
}
/**
* The predicted average monthly net income amount for the income source(s).
* @return forecastedAverageMonthlyIncome
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The predicted average monthly net income amount for the income source(s).")
public Double getForecastedAverageMonthlyIncome() {
return forecastedAverageMonthlyIncome;
}
public void setForecastedAverageMonthlyIncome(Double forecastedAverageMonthlyIncome) {
this.forecastedAverageMonthlyIncome = forecastedAverageMonthlyIncome;
}
public CraBankIncomeSource forecastedAverageMonthlyIncomePredictionIntervals(List<CraPredictionInterval> forecastedAverageMonthlyIncomePredictionIntervals) {
this.forecastedAverageMonthlyIncomePredictionIntervals = forecastedAverageMonthlyIncomePredictionIntervals;
return this;
}
public CraBankIncomeSource addForecastedAverageMonthlyIncomePredictionIntervalsItem(CraPredictionInterval forecastedAverageMonthlyIncomePredictionIntervalsItem) {
this.forecastedAverageMonthlyIncomePredictionIntervals.add(forecastedAverageMonthlyIncomePredictionIntervalsItem);
return this;
}
/**
* The prediction interval(s) for the forecasted average monthly income.
* @return forecastedAverageMonthlyIncomePredictionIntervals
**/
@ApiModelProperty(required = true, value = "The prediction interval(s) for the forecasted average monthly income.")
public List<CraPredictionInterval> getForecastedAverageMonthlyIncomePredictionIntervals() {
return forecastedAverageMonthlyIncomePredictionIntervals;
}
public void setForecastedAverageMonthlyIncomePredictionIntervals(List<CraPredictionInterval> forecastedAverageMonthlyIncomePredictionIntervals) {
this.forecastedAverageMonthlyIncomePredictionIntervals = forecastedAverageMonthlyIncomePredictionIntervals;
}
public CraBankIncomeSource employer(CraBankIncomeEmployer employer) {
this.employer = employer;
return this;
}
/**
* Get employer
* @return employer
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public CraBankIncomeEmployer getEmployer() {
return employer;
}
public void setEmployer(CraBankIncomeEmployer employer) {
this.employer = employer;
}
public CraBankIncomeSource incomeProvider(CraBankIncomeIncomeProvider incomeProvider) {
this.incomeProvider = incomeProvider;
return this;
}
/**
* Get incomeProvider
* @return incomeProvider
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public CraBankIncomeIncomeProvider getIncomeProvider() {
return incomeProvider;
}
public void setIncomeProvider(CraBankIncomeIncomeProvider incomeProvider) {
this.incomeProvider = incomeProvider;
}
public CraBankIncomeSource historicalSummary(List<CraBankIncomeHistoricalSummary> historicalSummary) {
this.historicalSummary = historicalSummary;
return this;
}
public CraBankIncomeSource addHistoricalSummaryItem(CraBankIncomeHistoricalSummary historicalSummaryItem) {
if (this.historicalSummary == null) {
this.historicalSummary = new ArrayList<>();
}
this.historicalSummary.add(historicalSummaryItem);
return this;
}
/**
* Get historicalSummary
* @return historicalSummary
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public List<CraBankIncomeHistoricalSummary> getHistoricalSummary() {
return historicalSummary;
}
public void setHistoricalSummary(List<CraBankIncomeHistoricalSummary> historicalSummary) {
this.historicalSummary = historicalSummary;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CraBankIncomeSource craBankIncomeSource = (CraBankIncomeSource) o;
return Objects.equals(this.accountId, craBankIncomeSource.accountId) &&
Objects.equals(this.incomeSourceId, craBankIncomeSource.incomeSourceId) &&
Objects.equals(this.incomeDescription, craBankIncomeSource.incomeDescription) &&
Objects.equals(this.incomeCategory, craBankIncomeSource.incomeCategory) &&
Objects.equals(this.startDate, craBankIncomeSource.startDate) &&
Objects.equals(this.endDate, craBankIncomeSource.endDate) &&
Objects.equals(this.payFrequency, craBankIncomeSource.payFrequency) &&
Objects.equals(this.totalAmount, craBankIncomeSource.totalAmount) &&
Objects.equals(this.isoCurrencyCode, craBankIncomeSource.isoCurrencyCode) &&
Objects.equals(this.unofficialCurrencyCode, craBankIncomeSource.unofficialCurrencyCode) &&
Objects.equals(this.transactionCount, craBankIncomeSource.transactionCount) &&
Objects.equals(this.nextPaymentDate, craBankIncomeSource.nextPaymentDate) &&
Objects.equals(this.status, craBankIncomeSource.status) &&
Objects.equals(this.historicalAverageMonthlyGrossIncome, craBankIncomeSource.historicalAverageMonthlyGrossIncome) &&
Objects.equals(this.historicalAverageMonthlyIncome, craBankIncomeSource.historicalAverageMonthlyIncome) &&
Objects.equals(this.forecastedAverageMonthlyIncome, craBankIncomeSource.forecastedAverageMonthlyIncome) &&
Objects.equals(this.forecastedAverageMonthlyIncomePredictionIntervals, craBankIncomeSource.forecastedAverageMonthlyIncomePredictionIntervals) &&
Objects.equals(this.employer, craBankIncomeSource.employer) &&
Objects.equals(this.incomeProvider, craBankIncomeSource.incomeProvider) &&
Objects.equals(this.historicalSummary, craBankIncomeSource.historicalSummary);
}
@Override
public int hashCode() {
return Objects.hash(accountId, incomeSourceId, incomeDescription, incomeCategory, startDate, endDate, payFrequency, totalAmount, isoCurrencyCode, unofficialCurrencyCode, transactionCount, nextPaymentDate, status, historicalAverageMonthlyGrossIncome, historicalAverageMonthlyIncome, forecastedAverageMonthlyIncome, forecastedAverageMonthlyIncomePredictionIntervals, employer, incomeProvider, historicalSummary);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CraBankIncomeSource {\n");
sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
sb.append(" incomeSourceId: ").append(toIndentedString(incomeSourceId)).append("\n");
sb.append(" incomeDescription: ").append(toIndentedString(incomeDescription)).append("\n");
sb.append(" incomeCategory: ").append(toIndentedString(incomeCategory)).append("\n");
sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n");
sb.append(" endDate: ").append(toIndentedString(endDate)).append("\n");
sb.append(" payFrequency: ").append(toIndentedString(payFrequency)).append("\n");
sb.append(" totalAmount: ").append(toIndentedString(totalAmount)).append("\n");
sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n");
sb.append(" unofficialCurrencyCode: ").append(toIndentedString(unofficialCurrencyCode)).append("\n");
sb.append(" transactionCount: ").append(toIndentedString(transactionCount)).append("\n");
sb.append(" nextPaymentDate: ").append(toIndentedString(nextPaymentDate)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" historicalAverageMonthlyGrossIncome: ").append(toIndentedString(historicalAverageMonthlyGrossIncome)).append("\n");
sb.append(" historicalAverageMonthlyIncome: ").append(toIndentedString(historicalAverageMonthlyIncome)).append("\n");
sb.append(" forecastedAverageMonthlyIncome: ").append(toIndentedString(forecastedAverageMonthlyIncome)).append("\n");
sb.append(" forecastedAverageMonthlyIncomePredictionIntervals: ").append(toIndentedString(forecastedAverageMonthlyIncomePredictionIntervals)).append("\n");
sb.append(" employer: ").append(toIndentedString(employer)).append("\n");
sb.append(" incomeProvider: ").append(toIndentedString(incomeProvider)).append("\n");
sb.append(" historicalSummary: ").append(toIndentedString(historicalSummary)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/StandaloneCurrencyCodeList.java | src/main/java/com/plaid/client/model/StandaloneCurrencyCodeList.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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 following currency codes are supported by Plaid.
*/
@ApiModel(description = "The following currency codes are supported by Plaid.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class StandaloneCurrencyCodeList {
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 StandaloneCurrencyCodeList isoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
return this;
}
/**
* Plaid supports all ISO 4217 currency codes.
* @return isoCurrencyCode
**/
@ApiModelProperty(required = true, value = "Plaid supports all ISO 4217 currency codes.")
public String getIsoCurrencyCode() {
return isoCurrencyCode;
}
public void setIsoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
}
public StandaloneCurrencyCodeList unofficialCurrencyCode(String unofficialCurrencyCode) {
this.unofficialCurrencyCode = unofficialCurrencyCode;
return this;
}
/**
* List of unofficial currency codes
* @return unofficialCurrencyCode
**/
@ApiModelProperty(required = true, value = "List of unofficial currency codes")
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;
}
StandaloneCurrencyCodeList standaloneCurrencyCodeList = (StandaloneCurrencyCodeList) o;
return Objects.equals(this.isoCurrencyCode, standaloneCurrencyCodeList.isoCurrencyCode) &&
Objects.equals(this.unofficialCurrencyCode, standaloneCurrencyCodeList.unofficialCurrencyCode);
}
@Override
public int hashCode() {
return Objects.hash(isoCurrencyCode, unofficialCurrencyCode);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class StandaloneCurrencyCodeList {\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/OverrideAccounts.java | src/main/java/com/plaid/client/model/OverrideAccounts.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.AccountSubtype;
import com.plaid.client.model.HoldingsOverride;
import com.plaid.client.model.IncomeOverride;
import com.plaid.client.model.InflowModel;
import com.plaid.client.model.InvestmentsTransactionsOverride;
import com.plaid.client.model.LiabilityOverride;
import com.plaid.client.model.Meta;
import com.plaid.client.model.Numbers;
import com.plaid.client.model.OverrideAccountType;
import com.plaid.client.model.OwnerOverride;
import com.plaid.client.model.TransactionOverride;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* Data to use to set values of test accounts. Some values cannot be specified in the schema and will instead will be calculated from other test data in order to achieve more consistent, realistic test data.
*/
@ApiModel(description = "Data to use to set values of test accounts. Some values cannot be specified in the schema and will instead will be calculated from other test data in order to achieve more consistent, realistic test data.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class OverrideAccounts {
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
private OverrideAccountType type;
public static final String SERIALIZED_NAME_SUBTYPE = "subtype";
@SerializedName(SERIALIZED_NAME_SUBTYPE)
private AccountSubtype subtype;
public static final String SERIALIZED_NAME_STARTING_BALANCE = "starting_balance";
@SerializedName(SERIALIZED_NAME_STARTING_BALANCE)
private Double startingBalance;
public static final String SERIALIZED_NAME_FORCE_AVAILABLE_BALANCE = "force_available_balance";
@SerializedName(SERIALIZED_NAME_FORCE_AVAILABLE_BALANCE)
private Double forceAvailableBalance;
public static final String SERIALIZED_NAME_CURRENCY = "currency";
@SerializedName(SERIALIZED_NAME_CURRENCY)
private String currency;
public static final String SERIALIZED_NAME_META = "meta";
@SerializedName(SERIALIZED_NAME_META)
private Meta meta;
public static final String SERIALIZED_NAME_NUMBERS = "numbers";
@SerializedName(SERIALIZED_NAME_NUMBERS)
private Numbers numbers;
public static final String SERIALIZED_NAME_TRANSACTIONS = "transactions";
@SerializedName(SERIALIZED_NAME_TRANSACTIONS)
private List<TransactionOverride> transactions = new ArrayList<>();
public static final String SERIALIZED_NAME_HOLDINGS = "holdings";
@SerializedName(SERIALIZED_NAME_HOLDINGS)
private HoldingsOverride holdings;
public static final String SERIALIZED_NAME_INVESTMENT_TRANSACTIONS = "investment_transactions";
@SerializedName(SERIALIZED_NAME_INVESTMENT_TRANSACTIONS)
private InvestmentsTransactionsOverride investmentTransactions;
public static final String SERIALIZED_NAME_IDENTITY = "identity";
@SerializedName(SERIALIZED_NAME_IDENTITY)
private OwnerOverride identity;
public static final String SERIALIZED_NAME_LIABILITY = "liability";
@SerializedName(SERIALIZED_NAME_LIABILITY)
private LiabilityOverride liability;
public static final String SERIALIZED_NAME_INFLOW_MODEL = "inflow_model";
@SerializedName(SERIALIZED_NAME_INFLOW_MODEL)
private InflowModel inflowModel;
public static final String SERIALIZED_NAME_INCOME = "income";
@SerializedName(SERIALIZED_NAME_INCOME)
private IncomeOverride income;
public OverrideAccounts type(OverrideAccountType type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
**/
@ApiModelProperty(required = true, value = "")
public OverrideAccountType getType() {
return type;
}
public void setType(OverrideAccountType type) {
this.type = type;
}
public OverrideAccounts subtype(AccountSubtype subtype) {
this.subtype = subtype;
return this;
}
/**
* Get subtype
* @return subtype
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public AccountSubtype getSubtype() {
return subtype;
}
public void setSubtype(AccountSubtype subtype) {
this.subtype = subtype;
}
public OverrideAccounts startingBalance(Double startingBalance) {
this.startingBalance = startingBalance;
return this;
}
/**
* If provided, the account will start with this amount as the current balance.
* @return startingBalance
**/
@ApiModelProperty(required = true, value = "If provided, the account will start with this amount as the current balance. ")
public Double getStartingBalance() {
return startingBalance;
}
public void setStartingBalance(Double startingBalance) {
this.startingBalance = startingBalance;
}
public OverrideAccounts forceAvailableBalance(Double forceAvailableBalance) {
this.forceAvailableBalance = forceAvailableBalance;
return this;
}
/**
* If provided, the account will always have this amount as its available balance, regardless of current balance or changes in transactions over time.
* @return forceAvailableBalance
**/
@ApiModelProperty(required = true, value = "If provided, the account will always have this amount as its available balance, regardless of current balance or changes in transactions over time.")
public Double getForceAvailableBalance() {
return forceAvailableBalance;
}
public void setForceAvailableBalance(Double forceAvailableBalance) {
this.forceAvailableBalance = forceAvailableBalance;
}
public OverrideAccounts currency(String currency) {
this.currency = currency;
return this;
}
/**
* ISO-4217 currency code. If provided, the account will be denominated in the given currency. Transactions will also be in this currency by default.
* @return currency
**/
@ApiModelProperty(required = true, value = "ISO-4217 currency code. If provided, the account will be denominated in the given currency. Transactions will also be in this currency by default.")
public String getCurrency() {
return currency;
}
public void setCurrency(String currency) {
this.currency = currency;
}
public OverrideAccounts meta(Meta meta) {
this.meta = meta;
return this;
}
/**
* Get meta
* @return meta
**/
@ApiModelProperty(required = true, value = "")
public Meta getMeta() {
return meta;
}
public void setMeta(Meta meta) {
this.meta = meta;
}
public OverrideAccounts numbers(Numbers numbers) {
this.numbers = numbers;
return this;
}
/**
* Get numbers
* @return numbers
**/
@ApiModelProperty(required = true, value = "")
public Numbers getNumbers() {
return numbers;
}
public void setNumbers(Numbers numbers) {
this.numbers = numbers;
}
public OverrideAccounts transactions(List<TransactionOverride> transactions) {
this.transactions = transactions;
return this;
}
public OverrideAccounts addTransactionsItem(TransactionOverride transactionsItem) {
this.transactions.add(transactionsItem);
return this;
}
/**
* Specify the list of transactions on the account.
* @return transactions
**/
@ApiModelProperty(required = true, value = "Specify the list of transactions on the account.")
public List<TransactionOverride> getTransactions() {
return transactions;
}
public void setTransactions(List<TransactionOverride> transactions) {
this.transactions = transactions;
}
public OverrideAccounts holdings(HoldingsOverride holdings) {
this.holdings = holdings;
return this;
}
/**
* Get holdings
* @return holdings
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public HoldingsOverride getHoldings() {
return holdings;
}
public void setHoldings(HoldingsOverride holdings) {
this.holdings = holdings;
}
public OverrideAccounts investmentTransactions(InvestmentsTransactionsOverride investmentTransactions) {
this.investmentTransactions = investmentTransactions;
return this;
}
/**
* Get investmentTransactions
* @return investmentTransactions
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public InvestmentsTransactionsOverride getInvestmentTransactions() {
return investmentTransactions;
}
public void setInvestmentTransactions(InvestmentsTransactionsOverride investmentTransactions) {
this.investmentTransactions = investmentTransactions;
}
public OverrideAccounts identity(OwnerOverride identity) {
this.identity = identity;
return this;
}
/**
* Get identity
* @return identity
**/
@ApiModelProperty(required = true, value = "")
public OwnerOverride getIdentity() {
return identity;
}
public void setIdentity(OwnerOverride identity) {
this.identity = identity;
}
public OverrideAccounts liability(LiabilityOverride liability) {
this.liability = liability;
return this;
}
/**
* Get liability
* @return liability
**/
@ApiModelProperty(required = true, value = "")
public LiabilityOverride getLiability() {
return liability;
}
public void setLiability(LiabilityOverride liability) {
this.liability = liability;
}
public OverrideAccounts inflowModel(InflowModel inflowModel) {
this.inflowModel = inflowModel;
return this;
}
/**
* Get inflowModel
* @return inflowModel
**/
@ApiModelProperty(required = true, value = "")
public InflowModel getInflowModel() {
return inflowModel;
}
public void setInflowModel(InflowModel inflowModel) {
this.inflowModel = inflowModel;
}
public OverrideAccounts income(IncomeOverride income) {
this.income = income;
return this;
}
/**
* Get income
* @return income
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public IncomeOverride getIncome() {
return income;
}
public void setIncome(IncomeOverride income) {
this.income = income;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
OverrideAccounts overrideAccounts = (OverrideAccounts) o;
return Objects.equals(this.type, overrideAccounts.type) &&
Objects.equals(this.subtype, overrideAccounts.subtype) &&
Objects.equals(this.startingBalance, overrideAccounts.startingBalance) &&
Objects.equals(this.forceAvailableBalance, overrideAccounts.forceAvailableBalance) &&
Objects.equals(this.currency, overrideAccounts.currency) &&
Objects.equals(this.meta, overrideAccounts.meta) &&
Objects.equals(this.numbers, overrideAccounts.numbers) &&
Objects.equals(this.transactions, overrideAccounts.transactions) &&
Objects.equals(this.holdings, overrideAccounts.holdings) &&
Objects.equals(this.investmentTransactions, overrideAccounts.investmentTransactions) &&
Objects.equals(this.identity, overrideAccounts.identity) &&
Objects.equals(this.liability, overrideAccounts.liability) &&
Objects.equals(this.inflowModel, overrideAccounts.inflowModel) &&
Objects.equals(this.income, overrideAccounts.income);
}
@Override
public int hashCode() {
return Objects.hash(type, subtype, startingBalance, forceAvailableBalance, currency, meta, numbers, transactions, holdings, investmentTransactions, identity, liability, inflowModel, income);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class OverrideAccounts {\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" subtype: ").append(toIndentedString(subtype)).append("\n");
sb.append(" startingBalance: ").append(toIndentedString(startingBalance)).append("\n");
sb.append(" forceAvailableBalance: ").append(toIndentedString(forceAvailableBalance)).append("\n");
sb.append(" currency: ").append(toIndentedString(currency)).append("\n");
sb.append(" meta: ").append(toIndentedString(meta)).append("\n");
sb.append(" numbers: ").append(toIndentedString(numbers)).append("\n");
sb.append(" transactions: ").append(toIndentedString(transactions)).append("\n");
sb.append(" holdings: ").append(toIndentedString(holdings)).append("\n");
sb.append(" investmentTransactions: ").append(toIndentedString(investmentTransactions)).append("\n");
sb.append(" identity: ").append(toIndentedString(identity)).append("\n");
sb.append(" liability: ").append(toIndentedString(liability)).append("\n");
sb.append(" inflowModel: ").append(toIndentedString(inflowModel)).append("\n");
sb.append(" income: ").append(toIndentedString(income)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IndividualWatchlistCode.java | src/main/java/com/plaid/client/model/IndividualWatchlistCode.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* 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;
/**
* Shorthand identifier for a specific screening list for individuals. `AU_CON`: Australia Department of Foreign Affairs and Trade Consolidated List `CA_CON`: Government of Canada Consolidated List of Sanctions `EU_CON`: European External Action Service Consolidated List `IZ_CIA`: CIA List of Chiefs of State and Cabinet Members `IZ_IPL`: Interpol Red Notices for Wanted Persons List `IZ_PEP`: Politically Exposed Persons List `IZ_UNC`: United Nations Consolidated Sanctions `IZ_WBK`: World Bank Listing of Ineligible Firms and Individuals `UK_HMC`: UK HM Treasury Consolidated List `US_DPL`: Bureau of Industry and Security Denied Persons List `US_DTC`: US Department of State AECA Debarred `US_FBI`: US Department of Justice FBI Wanted List `US_FSE`: US OFAC Foreign Sanctions Evaders `US_ISN`: US Department of State Nonproliferation Sanctions `US_PLC`: US OFAC Palestinian Legislative Council `US_SAM`: US System for Award Management Exclusion List `US_SDN`: US OFAC Specially Designated Nationals List `US_SSI`: US OFAC Sectoral Sanctions Identifications `SG_SOF`: Government of Singapore Terrorists and Terrorist Entities `TR_TWL`: Government of Turkey Terrorist Wanted List `TR_DFD`: Government of Turkey Domestic Freezing Decisions `TR_FOR`: Government of Turkey Foreign Freezing Requests `TR_WMD`: Government of Turkey Weapons of Mass Destruction `TR_CMB`: Government of Turkey Capital Markets Board
*/
@JsonAdapter(IndividualWatchlistCode.Adapter.class)
public enum IndividualWatchlistCode {
AU_CON("AU_CON"),
CA_CON("CA_CON"),
EU_CON("EU_CON"),
IZ_CIA("IZ_CIA"),
IZ_IPL("IZ_IPL"),
IZ_PEP("IZ_PEP"),
IZ_UNC("IZ_UNC"),
IZ_WBK("IZ_WBK"),
UK_HMC("UK_HMC"),
US_DPL("US_DPL"),
US_DTC("US_DTC"),
US_FBI("US_FBI"),
US_FSE("US_FSE"),
US_ISN("US_ISN"),
US_MBS("US_MBS"),
US_PLC("US_PLC"),
US_SAM("US_SAM"),
US_SDN("US_SDN"),
US_SSI("US_SSI"),
SG_SOF("SG_SOF"),
TR_TWL("TR_TWL"),
TR_DFD("TR_DFD"),
TR_FOR("TR_FOR"),
TR_WMD("TR_WMD"),
TR_CMB("TR_CMB"),
// 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;
IndividualWatchlistCode(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static IndividualWatchlistCode fromValue(String value) {
for (IndividualWatchlistCode b : IndividualWatchlistCode.values()) {
if (b.value.equals(value)) {
return b;
}
}
return IndividualWatchlistCode.ENUM_UNKNOWN;
}
public static class Adapter extends TypeAdapter<IndividualWatchlistCode> {
@Override
public void write(final JsonWriter jsonWriter, final IndividualWatchlistCode enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public IndividualWatchlistCode read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return IndividualWatchlistCode.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/AssetHolding.java | src/main/java/com/plaid/client/model/AssetHolding.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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;
/**
* 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 AssetHolding {
public static final String SERIALIZED_NAME_ASSET_HOLDING_I_D = "AssetHoldingID";
@SerializedName(SERIALIZED_NAME_ASSET_HOLDING_I_D)
private String assetHoldingID;
public static final String SERIALIZED_NAME_CURRENCY = "Currency";
@SerializedName(SERIALIZED_NAME_CURRENCY)
private String currency;
public static final String SERIALIZED_NAME_ASSET_HOLDING_DESCRIPTION = "AssetHoldingDescription";
@SerializedName(SERIALIZED_NAME_ASSET_HOLDING_DESCRIPTION)
private String assetHoldingDescription;
public static final String SERIALIZED_NAME_ASSET_HOLDING_SYMBOL = "AssetHoldingSymbol";
@SerializedName(SERIALIZED_NAME_ASSET_HOLDING_SYMBOL)
private String assetHoldingSymbol;
public static final String SERIALIZED_NAME_ASSET_HOLDING_SECURITY_NAME = "AssetHoldingSecurityName";
@SerializedName(SERIALIZED_NAME_ASSET_HOLDING_SECURITY_NAME)
private String assetHoldingSecurityName;
public static final String SERIALIZED_NAME_ASSET_HOLDING_UNITS = "AssetHoldingUnits";
@SerializedName(SERIALIZED_NAME_ASSET_HOLDING_UNITS)
private Double assetHoldingUnits;
public static final String SERIALIZED_NAME_ASSET_HOLDING_MARKET_VALUE_AMOUNT = "AssetHoldingMarketValueAmount";
@SerializedName(SERIALIZED_NAME_ASSET_HOLDING_MARKET_VALUE_AMOUNT)
private Double assetHoldingMarketValueAmount;
public static final String SERIALIZED_NAME_ASSET_HOLDING_CURRENT_PRICE_AMOUNT = "AssetHoldingCurrentPriceAmount";
@SerializedName(SERIALIZED_NAME_ASSET_HOLDING_CURRENT_PRICE_AMOUNT)
private Double assetHoldingCurrentPriceAmount;
/**
* Type of holding (e.g. bond, stock, crypto, other)
*/
@JsonAdapter(AssetHoldingTypeEnum.Adapter.class)
public enum AssetHoldingTypeEnum {
BOND("Bond"),
STOCK("Stock"),
CRYPTO("Crypto"),
OTHER("Other");
private String value;
AssetHoldingTypeEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static AssetHoldingTypeEnum fromValue(String value) {
for (AssetHoldingTypeEnum b : AssetHoldingTypeEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
return null;
}
public static class Adapter extends TypeAdapter<AssetHoldingTypeEnum> {
@Override
public void write(final JsonWriter jsonWriter, final AssetHoldingTypeEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public AssetHoldingTypeEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return AssetHoldingTypeEnum.fromValue(value);
}
}
}
public static final String SERIALIZED_NAME_ASSET_HOLDING_TYPE = "AssetHoldingType";
@SerializedName(SERIALIZED_NAME_ASSET_HOLDING_TYPE)
private AssetHoldingTypeEnum assetHoldingType;
/**
* Whether or not the stock is restricted, i.e. \"Restricted\" or \"Not Restricted\"
*/
@JsonAdapter(AssetHoldingRestrictedIndicatorEnum.Adapter.class)
public enum AssetHoldingRestrictedIndicatorEnum {
TRUE("true"),
FALSE("false");
private String value;
AssetHoldingRestrictedIndicatorEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static AssetHoldingRestrictedIndicatorEnum fromValue(String value) {
for (AssetHoldingRestrictedIndicatorEnum b : AssetHoldingRestrictedIndicatorEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
return null;
}
public static class Adapter extends TypeAdapter<AssetHoldingRestrictedIndicatorEnum> {
@Override
public void write(final JsonWriter jsonWriter, final AssetHoldingRestrictedIndicatorEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public AssetHoldingRestrictedIndicatorEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return AssetHoldingRestrictedIndicatorEnum.fromValue(value);
}
}
}
public static final String SERIALIZED_NAME_ASSET_HOLDING_RESTRICTED_INDICATOR = "AssetHoldingRestrictedIndicator";
@SerializedName(SERIALIZED_NAME_ASSET_HOLDING_RESTRICTED_INDICATOR)
private AssetHoldingRestrictedIndicatorEnum assetHoldingRestrictedIndicator;
public static final String SERIALIZED_NAME_ASSET_HOLDING_VESTED_AMOUNT = "AssetHoldingVestedAmount";
@SerializedName(SERIALIZED_NAME_ASSET_HOLDING_VESTED_AMOUNT)
private Double assetHoldingVestedAmount;
public AssetHolding assetHoldingID(String assetHoldingID) {
this.assetHoldingID = assetHoldingID;
return this;
}
/**
* Unique id of investment position
* @return assetHoldingID
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Unique id of investment position")
public String getAssetHoldingID() {
return assetHoldingID;
}
public void setAssetHoldingID(String assetHoldingID) {
this.assetHoldingID = assetHoldingID;
}
public AssetHolding currency(String currency) {
this.currency = currency;
return this;
}
/**
* US Dollar
* @return currency
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "US Dollar")
public String getCurrency() {
return currency;
}
public void setCurrency(String currency) {
this.currency = currency;
}
public AssetHolding assetHoldingDescription(String assetHoldingDescription) {
this.assetHoldingDescription = assetHoldingDescription;
return this;
}
/**
* Description of holding
* @return assetHoldingDescription
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Description of holding")
public String getAssetHoldingDescription() {
return assetHoldingDescription;
}
public void setAssetHoldingDescription(String assetHoldingDescription) {
this.assetHoldingDescription = assetHoldingDescription;
}
public AssetHolding assetHoldingSymbol(String assetHoldingSymbol) {
this.assetHoldingSymbol = assetHoldingSymbol;
return this;
}
/**
* Investment position's market ticker symbol
* @return assetHoldingSymbol
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Investment position's market ticker symbol")
public String getAssetHoldingSymbol() {
return assetHoldingSymbol;
}
public void setAssetHoldingSymbol(String assetHoldingSymbol) {
this.assetHoldingSymbol = assetHoldingSymbol;
}
public AssetHolding assetHoldingSecurityName(String assetHoldingSecurityName) {
this.assetHoldingSecurityName = assetHoldingSecurityName;
return this;
}
/**
* Security name of investment holding
* @return assetHoldingSecurityName
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Security name of investment holding")
public String getAssetHoldingSecurityName() {
return assetHoldingSecurityName;
}
public void setAssetHoldingSecurityName(String assetHoldingSecurityName) {
this.assetHoldingSecurityName = assetHoldingSecurityName;
}
public AssetHolding assetHoldingUnits(Double assetHoldingUnits) {
this.assetHoldingUnits = assetHoldingUnits;
return this;
}
/**
* Number of units of holding
* @return assetHoldingUnits
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Number of units of holding")
public Double getAssetHoldingUnits() {
return assetHoldingUnits;
}
public void setAssetHoldingUnits(Double assetHoldingUnits) {
this.assetHoldingUnits = assetHoldingUnits;
}
public AssetHolding assetHoldingMarketValueAmount(Double assetHoldingMarketValueAmount) {
this.assetHoldingMarketValueAmount = assetHoldingMarketValueAmount;
return this;
}
/**
* market value of investment position
* @return assetHoldingMarketValueAmount
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "market value of investment position")
public Double getAssetHoldingMarketValueAmount() {
return assetHoldingMarketValueAmount;
}
public void setAssetHoldingMarketValueAmount(Double assetHoldingMarketValueAmount) {
this.assetHoldingMarketValueAmount = assetHoldingMarketValueAmount;
}
public AssetHolding assetHoldingCurrentPriceAmount(Double assetHoldingCurrentPriceAmount) {
this.assetHoldingCurrentPriceAmount = assetHoldingCurrentPriceAmount;
return this;
}
/**
* current price of investment holding
* @return assetHoldingCurrentPriceAmount
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "current price of investment holding")
public Double getAssetHoldingCurrentPriceAmount() {
return assetHoldingCurrentPriceAmount;
}
public void setAssetHoldingCurrentPriceAmount(Double assetHoldingCurrentPriceAmount) {
this.assetHoldingCurrentPriceAmount = assetHoldingCurrentPriceAmount;
}
public AssetHolding assetHoldingType(AssetHoldingTypeEnum assetHoldingType) {
this.assetHoldingType = assetHoldingType;
return this;
}
/**
* Type of holding (e.g. bond, stock, crypto, other)
* @return assetHoldingType
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Type of holding (e.g. bond, stock, crypto, other)")
public AssetHoldingTypeEnum getAssetHoldingType() {
return assetHoldingType;
}
public void setAssetHoldingType(AssetHoldingTypeEnum assetHoldingType) {
this.assetHoldingType = assetHoldingType;
}
public AssetHolding assetHoldingRestrictedIndicator(AssetHoldingRestrictedIndicatorEnum assetHoldingRestrictedIndicator) {
this.assetHoldingRestrictedIndicator = assetHoldingRestrictedIndicator;
return this;
}
/**
* Whether or not the stock is restricted, i.e. \"Restricted\" or \"Not Restricted\"
* @return assetHoldingRestrictedIndicator
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Whether or not the stock is restricted, i.e. \"Restricted\" or \"Not Restricted\"")
public AssetHoldingRestrictedIndicatorEnum getAssetHoldingRestrictedIndicator() {
return assetHoldingRestrictedIndicator;
}
public void setAssetHoldingRestrictedIndicator(AssetHoldingRestrictedIndicatorEnum assetHoldingRestrictedIndicator) {
this.assetHoldingRestrictedIndicator = assetHoldingRestrictedIndicator;
}
public AssetHolding assetHoldingVestedAmount(Double assetHoldingVestedAmount) {
this.assetHoldingVestedAmount = assetHoldingVestedAmount;
return this;
}
/**
* Amount of holding vested
* @return assetHoldingVestedAmount
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Amount of holding vested")
public Double getAssetHoldingVestedAmount() {
return assetHoldingVestedAmount;
}
public void setAssetHoldingVestedAmount(Double assetHoldingVestedAmount) {
this.assetHoldingVestedAmount = assetHoldingVestedAmount;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AssetHolding assetHolding = (AssetHolding) o;
return Objects.equals(this.assetHoldingID, assetHolding.assetHoldingID) &&
Objects.equals(this.currency, assetHolding.currency) &&
Objects.equals(this.assetHoldingDescription, assetHolding.assetHoldingDescription) &&
Objects.equals(this.assetHoldingSymbol, assetHolding.assetHoldingSymbol) &&
Objects.equals(this.assetHoldingSecurityName, assetHolding.assetHoldingSecurityName) &&
Objects.equals(this.assetHoldingUnits, assetHolding.assetHoldingUnits) &&
Objects.equals(this.assetHoldingMarketValueAmount, assetHolding.assetHoldingMarketValueAmount) &&
Objects.equals(this.assetHoldingCurrentPriceAmount, assetHolding.assetHoldingCurrentPriceAmount) &&
Objects.equals(this.assetHoldingType, assetHolding.assetHoldingType) &&
Objects.equals(this.assetHoldingRestrictedIndicator, assetHolding.assetHoldingRestrictedIndicator) &&
Objects.equals(this.assetHoldingVestedAmount, assetHolding.assetHoldingVestedAmount);
}
@Override
public int hashCode() {
return Objects.hash(assetHoldingID, currency, assetHoldingDescription, assetHoldingSymbol, assetHoldingSecurityName, assetHoldingUnits, assetHoldingMarketValueAmount, assetHoldingCurrentPriceAmount, assetHoldingType, assetHoldingRestrictedIndicator, assetHoldingVestedAmount);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AssetHolding {\n");
sb.append(" assetHoldingID: ").append(toIndentedString(assetHoldingID)).append("\n");
sb.append(" currency: ").append(toIndentedString(currency)).append("\n");
sb.append(" assetHoldingDescription: ").append(toIndentedString(assetHoldingDescription)).append("\n");
sb.append(" assetHoldingSymbol: ").append(toIndentedString(assetHoldingSymbol)).append("\n");
sb.append(" assetHoldingSecurityName: ").append(toIndentedString(assetHoldingSecurityName)).append("\n");
sb.append(" assetHoldingUnits: ").append(toIndentedString(assetHoldingUnits)).append("\n");
sb.append(" assetHoldingMarketValueAmount: ").append(toIndentedString(assetHoldingMarketValueAmount)).append("\n");
sb.append(" assetHoldingCurrentPriceAmount: ").append(toIndentedString(assetHoldingCurrentPriceAmount)).append("\n");
sb.append(" assetHoldingType: ").append(toIndentedString(assetHoldingType)).append("\n");
sb.append(" assetHoldingRestrictedIndicator: ").append(toIndentedString(assetHoldingRestrictedIndicator)).append("\n");
sb.append(" assetHoldingVestedAmount: ").append(toIndentedString(assetHoldingVestedAmount)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/EarningsBreakdownCanonicalDescription.java | src/main/java/com/plaid/client/model/EarningsBreakdownCanonicalDescription.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* 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;
/**
* Commonly used term to describe the earning line item.
*/
@JsonAdapter(EarningsBreakdownCanonicalDescription.Adapter.class)
public enum EarningsBreakdownCanonicalDescription {
BONUS("BONUS"),
COMMISSION("COMMISSION"),
OVERTIME("OVERTIME"),
PAID_TIME_OFF("PAID TIME OFF"),
REGULAR_PAY("REGULAR PAY"),
VACATION("VACATION"),
BASIC_ALLOWANCE_HOUSING("BASIC ALLOWANCE HOUSING"),
BASIC_ALLOWANCE_SUBSISTENCE("BASIC ALLOWANCE SUBSISTENCE"),
OTHER("OTHER"),
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;
EarningsBreakdownCanonicalDescription(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static EarningsBreakdownCanonicalDescription fromValue(String value) {
for (EarningsBreakdownCanonicalDescription b : EarningsBreakdownCanonicalDescription.values()) {
if (b.value.equals(value)) {
return b;
}
}
return null; }
public static class Adapter extends TypeAdapter<EarningsBreakdownCanonicalDescription> {
@Override
public void write(final JsonWriter jsonWriter, final EarningsBreakdownCanonicalDescription enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public EarningsBreakdownCanonicalDescription read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return EarningsBreakdownCanonicalDescription.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/CraCheckReportCashflowInsightsGetRequest.java | src/main/java/com/plaid/client/model/CraCheckReportCashflowInsightsGetRequest.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.CraCheckReportCashflowInsightsGetOptions;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* CraCheckReportCashflowInsightsGetRequest defines the request schema for `/cra/check_report/cashflow_insights/get`.
*/
@ApiModel(description = "CraCheckReportCashflowInsightsGetRequest defines the request schema for `/cra/check_report/cashflow_insights/get`.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CraCheckReportCashflowInsightsGetRequest {
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 CraCheckReportCashflowInsightsGetOptions options;
public CraCheckReportCashflowInsightsGetRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public CraCheckReportCashflowInsightsGetRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public CraCheckReportCashflowInsightsGetRequest userId(String userId) {
this.userId = userId;
return this;
}
/**
* 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).
* @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 CraCheckReportCashflowInsightsGetRequest 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 CraCheckReportCashflowInsightsGetRequest 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 `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).
* @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 CraCheckReportCashflowInsightsGetRequest options(CraCheckReportCashflowInsightsGetOptions options) {
this.options = options;
return this;
}
/**
* Get options
* @return options
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public CraCheckReportCashflowInsightsGetOptions getOptions() {
return options;
}
public void setOptions(CraCheckReportCashflowInsightsGetOptions options) {
this.options = options;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CraCheckReportCashflowInsightsGetRequest craCheckReportCashflowInsightsGetRequest = (CraCheckReportCashflowInsightsGetRequest) o;
return Objects.equals(this.clientId, craCheckReportCashflowInsightsGetRequest.clientId) &&
Objects.equals(this.secret, craCheckReportCashflowInsightsGetRequest.secret) &&
Objects.equals(this.userId, craCheckReportCashflowInsightsGetRequest.userId) &&
Objects.equals(this.thirdPartyUserToken, craCheckReportCashflowInsightsGetRequest.thirdPartyUserToken) &&
Objects.equals(this.userToken, craCheckReportCashflowInsightsGetRequest.userToken) &&
Objects.equals(this.options, craCheckReportCashflowInsightsGetRequest.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 CraCheckReportCashflowInsightsGetRequest {\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/TransferPlatformPersonName.java | src/main/java/com/plaid/client/model/TransferPlatformPersonName.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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 person's legal name
*/
@ApiModel(description = "The person's legal name")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TransferPlatformPersonName {
public static final String SERIALIZED_NAME_GIVEN_NAME = "given_name";
@SerializedName(SERIALIZED_NAME_GIVEN_NAME)
private String givenName;
public static final String SERIALIZED_NAME_FAMILY_NAME = "family_name";
@SerializedName(SERIALIZED_NAME_FAMILY_NAME)
private String familyName;
public TransferPlatformPersonName givenName(String givenName) {
this.givenName = givenName;
return this;
}
/**
* A string with at least one non-whitespace character, with a max length of 100 characters.
* @return givenName
**/
@ApiModelProperty(example = "Leslie", required = true, value = "A string with at least one non-whitespace character, with a max length of 100 characters.")
public String getGivenName() {
return givenName;
}
public void setGivenName(String givenName) {
this.givenName = givenName;
}
public TransferPlatformPersonName familyName(String familyName) {
this.familyName = familyName;
return this;
}
/**
* A string with at least one non-whitespace character, with a max length of 100 characters.
* @return familyName
**/
@ApiModelProperty(example = "Knope", required = true, value = "A string with at least one non-whitespace character, with a max length of 100 characters.")
public String getFamilyName() {
return familyName;
}
public void setFamilyName(String familyName) {
this.familyName = familyName;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransferPlatformPersonName transferPlatformPersonName = (TransferPlatformPersonName) o;
return Objects.equals(this.givenName, transferPlatformPersonName.givenName) &&
Objects.equals(this.familyName, transferPlatformPersonName.familyName);
}
@Override
public int hashCode() {
return Objects.hash(givenName, familyName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransferPlatformPersonName {\n");
sb.append(" givenName: ").append(toIndentedString(givenName)).append("\n");
sb.append(" familyName: ").append(toIndentedString(familyName)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramListResponse.java | src/main/java/com/plaid/client/model/WatchlistScreeningIndividualProgramListResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.IndividualWatchlistProgram;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* Paginated list of individual watchlist screening programs
*/
@ApiModel(description = "Paginated list of individual watchlist screening programs")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class WatchlistScreeningIndividualProgramListResponse {
public static final String SERIALIZED_NAME_WATCHLIST_PROGRAMS = "watchlist_programs";
@SerializedName(SERIALIZED_NAME_WATCHLIST_PROGRAMS)
private List<IndividualWatchlistProgram> watchlistPrograms = new ArrayList<>();
public static final String SERIALIZED_NAME_NEXT_CURSOR = "next_cursor";
@SerializedName(SERIALIZED_NAME_NEXT_CURSOR)
private String nextCursor;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public WatchlistScreeningIndividualProgramListResponse watchlistPrograms(List<IndividualWatchlistProgram> watchlistPrograms) {
this.watchlistPrograms = watchlistPrograms;
return this;
}
public WatchlistScreeningIndividualProgramListResponse addWatchlistProgramsItem(IndividualWatchlistProgram watchlistProgramsItem) {
this.watchlistPrograms.add(watchlistProgramsItem);
return this;
}
/**
* List of individual watchlist screening programs
* @return watchlistPrograms
**/
@ApiModelProperty(required = true, value = "List of individual watchlist screening programs")
public List<IndividualWatchlistProgram> getWatchlistPrograms() {
return watchlistPrograms;
}
public void setWatchlistPrograms(List<IndividualWatchlistProgram> watchlistPrograms) {
this.watchlistPrograms = watchlistPrograms;
}
public WatchlistScreeningIndividualProgramListResponse nextCursor(String nextCursor) {
this.nextCursor = nextCursor;
return this;
}
/**
* An identifier that determines which page of results you receive.
* @return nextCursor
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "eyJkaXJlY3Rpb24iOiJuZXh0Iiwib2Zmc2V0IjoiMTU5NDM", required = true, value = "An identifier that determines which page of results you receive.")
public String getNextCursor() {
return nextCursor;
}
public void setNextCursor(String nextCursor) {
this.nextCursor = nextCursor;
}
public WatchlistScreeningIndividualProgramListResponse 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;
}
WatchlistScreeningIndividualProgramListResponse watchlistScreeningIndividualProgramListResponse = (WatchlistScreeningIndividualProgramListResponse) o;
return Objects.equals(this.watchlistPrograms, watchlistScreeningIndividualProgramListResponse.watchlistPrograms) &&
Objects.equals(this.nextCursor, watchlistScreeningIndividualProgramListResponse.nextCursor) &&
Objects.equals(this.requestId, watchlistScreeningIndividualProgramListResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(watchlistPrograms, nextCursor, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class WatchlistScreeningIndividualProgramListResponse {\n");
sb.append(" watchlistPrograms: ").append(toIndentedString(watchlistPrograms)).append("\n");
sb.append(" nextCursor: ").append(toIndentedString(nextCursor)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PrismDetect.java | src/main/java/com/plaid/client/model/PrismDetect.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.PrismCashScoreMetadata;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* The data from the CashScore® Detect product returned by Prism Data.
*/
@ApiModel(description = "The data from the CashScore® Detect product returned by Prism Data.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class PrismDetect {
public static final String SERIALIZED_NAME_MODEL_VERSION = "model_version";
@SerializedName(SERIALIZED_NAME_MODEL_VERSION)
private String modelVersion;
public static final String SERIALIZED_NAME_SCORE = "score";
@SerializedName(SERIALIZED_NAME_SCORE)
private Integer score;
public static final String SERIALIZED_NAME_REASON_CODES = "reason_codes";
@SerializedName(SERIALIZED_NAME_REASON_CODES)
private List<String> reasonCodes = null;
public static final String SERIALIZED_NAME_METADATA = "metadata";
@SerializedName(SERIALIZED_NAME_METADATA)
private PrismCashScoreMetadata metadata;
public static final String SERIALIZED_NAME_ERROR_REASON = "error_reason";
@SerializedName(SERIALIZED_NAME_ERROR_REASON)
private String errorReason;
public PrismDetect modelVersion(String modelVersion) {
this.modelVersion = modelVersion;
return this;
}
/**
* The version of Prism Data's CashScore® Detect model used.
* @return modelVersion
**/
@ApiModelProperty(required = true, value = "The version of Prism Data's CashScore® Detect model used.")
public String getModelVersion() {
return modelVersion;
}
public void setModelVersion(String modelVersion) {
this.modelVersion = modelVersion;
}
public PrismDetect score(Integer score) {
this.score = score;
return this;
}
/**
* The score returned by Prism Data. Ranges from 1-999, with higher score indicating lower risk.
* @return score
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The score returned by Prism Data. Ranges from 1-999, with higher score indicating lower risk.")
public Integer getScore() {
return score;
}
public void setScore(Integer score) {
this.score = score;
}
public PrismDetect reasonCodes(List<String> reasonCodes) {
this.reasonCodes = reasonCodes;
return this;
}
public PrismDetect addReasonCodesItem(String reasonCodesItem) {
if (this.reasonCodes == null) {
this.reasonCodes = new ArrayList<>();
}
this.reasonCodes.add(reasonCodesItem);
return this;
}
/**
* The reasons for an individual having risk according to the CashScore® Detect score.
* @return reasonCodes
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The reasons for an individual having risk according to the CashScore® Detect score.")
public List<String> getReasonCodes() {
return reasonCodes;
}
public void setReasonCodes(List<String> reasonCodes) {
this.reasonCodes = reasonCodes;
}
public PrismDetect metadata(PrismCashScoreMetadata metadata) {
this.metadata = metadata;
return this;
}
/**
* Get metadata
* @return metadata
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public PrismCashScoreMetadata getMetadata() {
return metadata;
}
public void setMetadata(PrismCashScoreMetadata metadata) {
this.metadata = metadata;
}
public PrismDetect errorReason(String errorReason) {
this.errorReason = errorReason;
return this;
}
/**
* The error returned by Prism for this product.
* @return errorReason
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The error returned by Prism for this product.")
public String getErrorReason() {
return errorReason;
}
public void setErrorReason(String errorReason) {
this.errorReason = errorReason;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PrismDetect prismDetect = (PrismDetect) o;
return Objects.equals(this.modelVersion, prismDetect.modelVersion) &&
Objects.equals(this.score, prismDetect.score) &&
Objects.equals(this.reasonCodes, prismDetect.reasonCodes) &&
Objects.equals(this.metadata, prismDetect.metadata) &&
Objects.equals(this.errorReason, prismDetect.errorReason);
}
@Override
public int hashCode() {
return Objects.hash(modelVersion, score, reasonCodes, metadata, errorReason);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PrismDetect {\n");
sb.append(" modelVersion: ").append(toIndentedString(modelVersion)).append("\n");
sb.append(" score: ").append(toIndentedString(score)).append("\n");
sb.append(" reasonCodes: ").append(toIndentedString(reasonCodes)).append("\n");
sb.append(" metadata: ").append(toIndentedString(metadata)).append("\n");
sb.append(" errorReason: ").append(toIndentedString(errorReason)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BeaconUserUpdateRequest.java | src/main/java/com/plaid/client/model/BeaconUserUpdateRequest.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.BeaconUserUpdateRequestData;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* Request input for updating the identity data of a Beacon User.
*/
@ApiModel(description = "Request input for updating the identity data of a Beacon User.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class BeaconUserUpdateRequest {
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_USER = "user";
@SerializedName(SERIALIZED_NAME_USER)
private BeaconUserUpdateRequestData user;
public static final String SERIALIZED_NAME_ACCESS_TOKENS = "access_tokens";
@SerializedName(SERIALIZED_NAME_ACCESS_TOKENS)
private List<String> accessTokens = null;
public static final String SERIALIZED_NAME_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 BeaconUserUpdateRequest 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 BeaconUserUpdateRequest user(BeaconUserUpdateRequestData user) {
this.user = user;
return this;
}
/**
* Get user
* @return user
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public BeaconUserUpdateRequestData getUser() {
return user;
}
public void setUser(BeaconUserUpdateRequestData user) {
this.user = user;
}
public BeaconUserUpdateRequest accessTokens(List<String> accessTokens) {
this.accessTokens = accessTokens;
return this;
}
public BeaconUserUpdateRequest addAccessTokensItem(String accessTokensItem) {
if (this.accessTokens == null) {
this.accessTokens = new ArrayList<>();
}
this.accessTokens.add(accessTokensItem);
return this;
}
/**
* Send this array of access tokens to add accounts to this user for evaluation. This will add accounts to this Beacon User. If left null only existing accounts will be returned in response. A maximum of 50 accounts total can be added to a Beacon User.
* @return accessTokens
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Send this array of access tokens to add accounts to this user for evaluation. This will add accounts to this Beacon User. If left null only existing accounts will be returned in response. A maximum of 50 accounts total can be added to a Beacon User.")
public List<String> getAccessTokens() {
return accessTokens;
}
public void setAccessTokens(List<String> accessTokens) {
this.accessTokens = accessTokens;
}
public BeaconUserUpdateRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public BeaconUserUpdateRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BeaconUserUpdateRequest beaconUserUpdateRequest = (BeaconUserUpdateRequest) o;
return Objects.equals(this.beaconUserId, beaconUserUpdateRequest.beaconUserId) &&
Objects.equals(this.user, beaconUserUpdateRequest.user) &&
Objects.equals(this.accessTokens, beaconUserUpdateRequest.accessTokens) &&
Objects.equals(this.clientId, beaconUserUpdateRequest.clientId) &&
Objects.equals(this.secret, beaconUserUpdateRequest.secret);
}
@Override
public int hashCode() {
return Objects.hash(beaconUserId, user, accessTokens, clientId, secret);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BeaconUserUpdateRequest {\n");
sb.append(" beaconUserId: ").append(toIndentedString(beaconUserId)).append("\n");
sb.append(" user: ").append(toIndentedString(user)).append("\n");
sb.append(" accessTokens: ").append(toIndentedString(accessTokens)).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/SignalPaymentMethod.java | src/main/java/com/plaid/client/model/SignalPaymentMethod.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* 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 method to complete the transaction after the risk assessment. It may be different from the default payment method. `SAME_DAY_ACH`: Same Day ACH by Nacha. The debit transaction is processed and settled on the same day. `STANDARD_ACH`: Standard ACH by Nacha. `MULTIPLE_PAYMENT_METHODS`: if there is no default debit rail or there are multiple payment methods.
*/
@JsonAdapter(SignalPaymentMethod.Adapter.class)
public enum SignalPaymentMethod {
SAME_DAY_ACH("SAME_DAY_ACH"),
NEXT_DAY_ACH("NEXT_DAY_ACH"),
STANDARD_ACH("STANDARD_ACH"),
MULTIPLE_PAYMENT_METHODS("MULTIPLE_PAYMENT_METHODS"),
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;
SignalPaymentMethod(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static SignalPaymentMethod fromValue(String value) {
for (SignalPaymentMethod b : SignalPaymentMethod.values()) {
if (b.value.equals(value)) {
return b;
}
}
return null; }
public static class Adapter extends TypeAdapter<SignalPaymentMethod> {
@Override
public void write(final JsonWriter jsonWriter, final SignalPaymentMethod enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public SignalPaymentMethod read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return SignalPaymentMethod.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/AuthVerifyRequestNumbers.java | src/main/java/com/plaid/client/model/AuthVerifyRequestNumbers.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.AuthVerifyNumbersACH;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* An object containing identifying account numbers for verification via Database Auth
*/
@ApiModel(description = "An object containing identifying account numbers for verification via Database Auth")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class AuthVerifyRequestNumbers {
public static final String SERIALIZED_NAME_ACH = "ach";
@SerializedName(SERIALIZED_NAME_ACH)
private AuthVerifyNumbersACH ach;
public AuthVerifyRequestNumbers ach(AuthVerifyNumbersACH ach) {
this.ach = ach;
return this;
}
/**
* Get ach
* @return ach
**/
@ApiModelProperty(required = true, value = "")
public AuthVerifyNumbersACH getAch() {
return ach;
}
public void setAch(AuthVerifyNumbersACH ach) {
this.ach = ach;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AuthVerifyRequestNumbers authVerifyRequestNumbers = (AuthVerifyRequestNumbers) o;
return Objects.equals(this.ach, authVerifyRequestNumbers.ach);
}
@Override
public int hashCode() {
return Objects.hash(ach);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AuthVerifyRequestNumbers {\n");
sb.append(" ach: ").append(toIndentedString(ach)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/AssetReportGetRequestOptions.java | src/main/java/com/plaid/client/model/AssetReportGetRequestOptions.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* An optional object to filter or add data to `/asset_report/get` results. If provided, must be non-`null`.
*/
@ApiModel(description = "An optional object to filter or add data to `/asset_report/get` results. If provided, must be non-`null`.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class AssetReportGetRequestOptions {
public static final String SERIALIZED_NAME_DAYS_TO_INCLUDE = "days_to_include";
@SerializedName(SERIALIZED_NAME_DAYS_TO_INCLUDE)
private Integer daysToInclude;
public AssetReportGetRequestOptions daysToInclude(Integer daysToInclude) {
this.daysToInclude = daysToInclude;
return this;
}
/**
* The maximum number of days of history to include in the Asset Report.
* minimum: 0
* maximum: 731
* @return daysToInclude
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The maximum number of days of history to include in the Asset Report.")
public Integer getDaysToInclude() {
return daysToInclude;
}
public void setDaysToInclude(Integer daysToInclude) {
this.daysToInclude = daysToInclude;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AssetReportGetRequestOptions assetReportGetRequestOptions = (AssetReportGetRequestOptions) o;
return Objects.equals(this.daysToInclude, assetReportGetRequestOptions.daysToInclude);
}
@Override
public int hashCode() {
return Objects.hash(daysToInclude);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AssetReportGetRequestOptions {\n");
sb.append(" daysToInclude: ").append(toIndentedString(daysToInclude)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraMonitoringInsightsItem.java | src/main/java/com/plaid/client/model/CraMonitoringInsightsItem.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.BaseReportAccount;
import com.plaid.client.model.MonitoringInsights;
import com.plaid.client.model.MonitoringInsightsItemStatus;
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;
/**
* An object representing a Monitoring Insights Item
*/
@ApiModel(description = "An object representing a Monitoring Insights Item")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CraMonitoringInsightsItem {
public static final String SERIALIZED_NAME_DATE_GENERATED = "date_generated";
@SerializedName(SERIALIZED_NAME_DATE_GENERATED)
private OffsetDateTime dateGenerated;
public static final String SERIALIZED_NAME_ITEM_ID = "item_id";
@SerializedName(SERIALIZED_NAME_ITEM_ID)
private String itemId;
public static final String SERIALIZED_NAME_INSTITUTION_ID = "institution_id";
@SerializedName(SERIALIZED_NAME_INSTITUTION_ID)
private String institutionId;
public static final String SERIALIZED_NAME_INSTITUTION_NAME = "institution_name";
@SerializedName(SERIALIZED_NAME_INSTITUTION_NAME)
private String institutionName;
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private MonitoringInsightsItemStatus status;
public static final String SERIALIZED_NAME_INSIGHTS = "insights";
@SerializedName(SERIALIZED_NAME_INSIGHTS)
private MonitoringInsights insights;
public static final String SERIALIZED_NAME_ACCOUNTS = "accounts";
@SerializedName(SERIALIZED_NAME_ACCOUNTS)
private List<BaseReportAccount> accounts = null;
public CraMonitoringInsightsItem dateGenerated(OffsetDateTime dateGenerated) {
this.dateGenerated = dateGenerated;
return this;
}
/**
* The date and time when the specific insights were generated (per-item), in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (e.g. \"2018-04-12T03:32:11Z\").
* @return dateGenerated
**/
@ApiModelProperty(required = true, value = "The date and time when the specific insights were generated (per-item), in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (e.g. \"2018-04-12T03:32:11Z\").")
public OffsetDateTime getDateGenerated() {
return dateGenerated;
}
public void setDateGenerated(OffsetDateTime dateGenerated) {
this.dateGenerated = dateGenerated;
}
public CraMonitoringInsightsItem itemId(String itemId) {
this.itemId = itemId;
return this;
}
/**
* The `item_id` of the Item associated with the insights
* @return itemId
**/
@ApiModelProperty(required = true, value = "The `item_id` of the Item associated with the insights")
public String getItemId() {
return itemId;
}
public void setItemId(String itemId) {
this.itemId = itemId;
}
public CraMonitoringInsightsItem institutionId(String institutionId) {
this.institutionId = institutionId;
return this;
}
/**
* The id of the financial institution associated with the Item.
* @return institutionId
**/
@ApiModelProperty(required = true, value = "The id of the financial institution associated with the Item.")
public String getInstitutionId() {
return institutionId;
}
public void setInstitutionId(String institutionId) {
this.institutionId = institutionId;
}
public CraMonitoringInsightsItem institutionName(String institutionName) {
this.institutionName = institutionName;
return this;
}
/**
* The full financial institution name associated with the Item.
* @return institutionName
**/
@ApiModelProperty(required = true, value = "The full financial institution name associated with the Item.")
public String getInstitutionName() {
return institutionName;
}
public void setInstitutionName(String institutionName) {
this.institutionName = institutionName;
}
public CraMonitoringInsightsItem status(MonitoringInsightsItemStatus status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@ApiModelProperty(required = true, value = "")
public MonitoringInsightsItemStatus getStatus() {
return status;
}
public void setStatus(MonitoringInsightsItemStatus status) {
this.status = status;
}
public CraMonitoringInsightsItem insights(MonitoringInsights insights) {
this.insights = insights;
return this;
}
/**
* Get insights
* @return insights
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "")
public MonitoringInsights getInsights() {
return insights;
}
public void setInsights(MonitoringInsights insights) {
this.insights = insights;
}
public CraMonitoringInsightsItem accounts(List<BaseReportAccount> accounts) {
this.accounts = accounts;
return this;
}
public CraMonitoringInsightsItem addAccountsItem(BaseReportAccount accountsItem) {
if (this.accounts == null) {
this.accounts = new ArrayList<>();
}
this.accounts.add(accountsItem);
return this;
}
/**
* Data about each of the accounts open on the Item.
* @return accounts
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Data about each of the accounts open on the Item.")
public List<BaseReportAccount> getAccounts() {
return accounts;
}
public void setAccounts(List<BaseReportAccount> accounts) {
this.accounts = accounts;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CraMonitoringInsightsItem craMonitoringInsightsItem = (CraMonitoringInsightsItem) o;
return Objects.equals(this.dateGenerated, craMonitoringInsightsItem.dateGenerated) &&
Objects.equals(this.itemId, craMonitoringInsightsItem.itemId) &&
Objects.equals(this.institutionId, craMonitoringInsightsItem.institutionId) &&
Objects.equals(this.institutionName, craMonitoringInsightsItem.institutionName) &&
Objects.equals(this.status, craMonitoringInsightsItem.status) &&
Objects.equals(this.insights, craMonitoringInsightsItem.insights) &&
Objects.equals(this.accounts, craMonitoringInsightsItem.accounts);
}
@Override
public int hashCode() {
return Objects.hash(dateGenerated, itemId, institutionId, institutionName, status, insights, accounts);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CraMonitoringInsightsItem {\n");
sb.append(" dateGenerated: ").append(toIndentedString(dateGenerated)).append("\n");
sb.append(" itemId: ").append(toIndentedString(itemId)).append("\n");
sb.append(" institutionId: ").append(toIndentedString(institutionId)).append("\n");
sb.append(" institutionName: ").append(toIndentedString(institutionName)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" insights: ").append(toIndentedString(insights)).append("\n");
sb.append(" accounts: ").append(toIndentedString(accounts)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/GetRecipientResponse.java | src/main/java/com/plaid/client/model/GetRecipientResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.FDXRecipientMetadata;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* GetRecipientResponse defines the response schema for `/fdx/recipient/{recipientId}`
*/
@ApiModel(description = "GetRecipientResponse defines the response schema for `/fdx/recipient/{recipientId}`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class GetRecipientResponse {
public static final String SERIALIZED_NAME_RECIPIENT_ID = "recipient_id";
@SerializedName(SERIALIZED_NAME_RECIPIENT_ID)
private String recipientId;
public static final String SERIALIZED_NAME_CLIENT_NAME = "client_name";
@SerializedName(SERIALIZED_NAME_CLIENT_NAME)
private String clientName;
public static final String SERIALIZED_NAME_LOGO_URI = "logo_uri";
@SerializedName(SERIALIZED_NAME_LOGO_URI)
private String logoUri;
public static final String SERIALIZED_NAME_THIRD_PARTY_LEGAL_NAME = "third_party_legal_name";
@SerializedName(SERIALIZED_NAME_THIRD_PARTY_LEGAL_NAME)
private String thirdPartyLegalName;
public GetRecipientResponse recipientId(String recipientId) {
this.recipientId = recipientId;
return this;
}
/**
* The recipient identifier
* @return recipientId
**/
@ApiModelProperty(required = true, value = "The recipient identifier")
public String getRecipientId() {
return recipientId;
}
public void setRecipientId(String recipientId) {
this.recipientId = recipientId;
}
public GetRecipientResponse clientName(String clientName) {
this.clientName = clientName;
return this;
}
/**
* The recipient name displayed by the Data Provider during the consent flow
* @return clientName
**/
@ApiModelProperty(required = true, value = "The recipient name displayed by the Data Provider during the consent flow")
public String getClientName() {
return clientName;
}
public void setClientName(String clientName) {
this.clientName = clientName;
}
public GetRecipientResponse logoUri(String logoUri) {
this.logoUri = logoUri;
return this;
}
/**
* Data Recipient Logo URL location
* @return logoUri
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Data Recipient Logo URL location")
public String getLogoUri() {
return logoUri;
}
public void setLogoUri(String logoUri) {
this.logoUri = logoUri;
}
public GetRecipientResponse thirdPartyLegalName(String thirdPartyLegalName) {
this.thirdPartyLegalName = thirdPartyLegalName;
return this;
}
/**
* The legal name of the recipient
* @return thirdPartyLegalName
**/
@ApiModelProperty(required = true, value = "The legal name of the recipient")
public String getThirdPartyLegalName() {
return thirdPartyLegalName;
}
public void setThirdPartyLegalName(String thirdPartyLegalName) {
this.thirdPartyLegalName = thirdPartyLegalName;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
GetRecipientResponse getRecipientResponse = (GetRecipientResponse) o;
return Objects.equals(this.recipientId, getRecipientResponse.recipientId) &&
Objects.equals(this.clientName, getRecipientResponse.clientName) &&
Objects.equals(this.logoUri, getRecipientResponse.logoUri) &&
Objects.equals(this.thirdPartyLegalName, getRecipientResponse.thirdPartyLegalName);
}
@Override
public int hashCode() {
return Objects.hash(recipientId, clientName, logoUri, thirdPartyLegalName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class GetRecipientResponse {\n");
sb.append(" recipientId: ").append(toIndentedString(recipientId)).append("\n");
sb.append(" clientName: ").append(toIndentedString(clientName)).append("\n");
sb.append(" logoUri: ").append(toIndentedString(logoUri)).append("\n");
sb.append(" thirdPartyLegalName: ").append(toIndentedString(thirdPartyLegalName)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/InvestmentsAuthGetRequestOptions.java | src/main/java/com/plaid/client/model/InvestmentsAuthGetRequestOptions.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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 `/investments/auth/get` results.
*/
@ApiModel(description = "An optional object to filter `/investments/auth/get` results.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class InvestmentsAuthGetRequestOptions {
public static final String SERIALIZED_NAME_ACCOUNT_IDS = "account_ids";
@SerializedName(SERIALIZED_NAME_ACCOUNT_IDS)
private List<String> accountIds = null;
public InvestmentsAuthGetRequestOptions accountIds(List<String> accountIds) {
this.accountIds = accountIds;
return this;
}
public InvestmentsAuthGetRequestOptions addAccountIdsItem(String accountIdsItem) {
if (this.accountIds == null) {
this.accountIds = new ArrayList<>();
}
this.accountIds.add(accountIdsItem);
return this;
}
/**
* An array of `account_id`s to retrieve for the Item. An error will be returned if a provided `account_id` is not associated with the Item.
* @return accountIds
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "An array of `account_id`s to retrieve for the Item. 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;
}
InvestmentsAuthGetRequestOptions investmentsAuthGetRequestOptions = (InvestmentsAuthGetRequestOptions) o;
return Objects.equals(this.accountIds, investmentsAuthGetRequestOptions.accountIds);
}
@Override
public int hashCode() {
return Objects.hash(accountIds);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class InvestmentsAuthGetRequestOptions {\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/EmployersSearchResponse.java | src/main/java/com/plaid/client/model/EmployersSearchResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.Employer;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* EmployersSearchResponse defines the response schema for `/employers/search`.
*/
@ApiModel(description = "EmployersSearchResponse defines the response schema for `/employers/search`.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class EmployersSearchResponse {
public static final String SERIALIZED_NAME_EMPLOYERS = "employers";
@SerializedName(SERIALIZED_NAME_EMPLOYERS)
private List<Employer> employers = new ArrayList<>();
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public EmployersSearchResponse employers(List<Employer> employers) {
this.employers = employers;
return this;
}
public EmployersSearchResponse addEmployersItem(Employer employersItem) {
this.employers.add(employersItem);
return this;
}
/**
* A list of employers matching the search criteria.
* @return employers
**/
@ApiModelProperty(required = true, value = "A list of employers matching the search criteria.")
public List<Employer> getEmployers() {
return employers;
}
public void setEmployers(List<Employer> employers) {
this.employers = employers;
}
public EmployersSearchResponse 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;
}
EmployersSearchResponse employersSearchResponse = (EmployersSearchResponse) o;
return Objects.equals(this.employers, employersSearchResponse.employers) &&
Objects.equals(this.requestId, employersSearchResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(employers, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class EmployersSearchResponse {\n");
sb.append(" employers: ").append(toIndentedString(employers)).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/Loans.java | src/main/java/com/plaid/client/model/Loans.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.Loan;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* A collection of loans that are part of a single deal.
*/
@ApiModel(description = "A collection of loans that are part of a single deal.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class Loans {
public static final String SERIALIZED_NAME_L_O_A_N = "LOAN";
@SerializedName(SERIALIZED_NAME_L_O_A_N)
private Loan LOAN;
public Loans LOAN(Loan LOAN) {
this.LOAN = LOAN;
return this;
}
/**
* Get LOAN
* @return LOAN
**/
@ApiModelProperty(required = true, value = "")
public Loan getLOAN() {
return LOAN;
}
public void setLOAN(Loan LOAN) {
this.LOAN = LOAN;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Loans loans = (Loans) o;
return Objects.equals(this.LOAN, loans.LOAN);
}
@Override
public int hashCode() {
return Objects.hash(LOAN);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Loans {\n");
sb.append(" LOAN: ").append(toIndentedString(LOAN)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferAuthorizationCancelResponse.java | src/main/java/com/plaid/client/model/TransferAuthorizationCancelResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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 `/transfer/authorization/cancel`
*/
@ApiModel(description = "Defines the response schema for `/transfer/authorization/cancel`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TransferAuthorizationCancelResponse {
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public TransferAuthorizationCancelResponse 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;
}
TransferAuthorizationCancelResponse transferAuthorizationCancelResponse = (TransferAuthorizationCancelResponse) o;
return Objects.equals(this.requestId, transferAuthorizationCancelResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransferAuthorizationCancelResponse {\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/StandaloneInvestmentTransactionType.java | src/main/java/com/plaid/client/model/StandaloneInvestmentTransactionType.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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;
/**
* Valid values for investment transaction types and subtypes. Note that transactions representing inflow of cash will appear as negative amounts, outflow of cash will appear as positive amounts.
*/
@ApiModel(description = "Valid values for investment transaction types and subtypes. Note that transactions representing inflow of cash will appear as negative amounts, outflow of cash will appear as positive amounts.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class StandaloneInvestmentTransactionType {
public static final String SERIALIZED_NAME_BUY = "buy";
@SerializedName(SERIALIZED_NAME_BUY)
private String buy;
public static final String SERIALIZED_NAME_SELL = "sell";
@SerializedName(SERIALIZED_NAME_SELL)
private String sell;
public static final String SERIALIZED_NAME_CANCEL = "cancel";
@SerializedName(SERIALIZED_NAME_CANCEL)
private String cancel;
public static final String SERIALIZED_NAME_CASH = "cash";
@SerializedName(SERIALIZED_NAME_CASH)
private String cash;
public static final String SERIALIZED_NAME_FEE = "fee";
@SerializedName(SERIALIZED_NAME_FEE)
private String fee;
public static final String SERIALIZED_NAME_TRANSFER = "transfer";
@SerializedName(SERIALIZED_NAME_TRANSFER)
private String transfer;
public StandaloneInvestmentTransactionType buy(String buy) {
this.buy = buy;
return this;
}
/**
* Buying an investment
* @return buy
**/
@ApiModelProperty(required = true, value = "Buying an investment")
public String getBuy() {
return buy;
}
public void setBuy(String buy) {
this.buy = buy;
}
public StandaloneInvestmentTransactionType sell(String sell) {
this.sell = sell;
return this;
}
/**
* Selling an investment
* @return sell
**/
@ApiModelProperty(required = true, value = "Selling an investment")
public String getSell() {
return sell;
}
public void setSell(String sell) {
this.sell = sell;
}
public StandaloneInvestmentTransactionType cancel(String cancel) {
this.cancel = cancel;
return this;
}
/**
* A cancellation of a pending transaction
* @return cancel
**/
@ApiModelProperty(required = true, value = "A cancellation of a pending transaction")
public String getCancel() {
return cancel;
}
public void setCancel(String cancel) {
this.cancel = cancel;
}
public StandaloneInvestmentTransactionType cash(String cash) {
this.cash = cash;
return this;
}
/**
* Activity that modifies a cash position
* @return cash
**/
@ApiModelProperty(required = true, value = "Activity that modifies a cash position")
public String getCash() {
return cash;
}
public void setCash(String cash) {
this.cash = cash;
}
public StandaloneInvestmentTransactionType fee(String fee) {
this.fee = fee;
return this;
}
/**
* Fees on the account, e.g. commission, bookkeeping, options-related.
* @return fee
**/
@ApiModelProperty(required = true, value = "Fees on the account, e.g. commission, bookkeeping, options-related.")
public String getFee() {
return fee;
}
public void setFee(String fee) {
this.fee = fee;
}
public StandaloneInvestmentTransactionType transfer(String transfer) {
this.transfer = transfer;
return this;
}
/**
* Activity that modifies a position, but not through buy/sell activity e.g. options exercise, portfolio transfer
* @return transfer
**/
@ApiModelProperty(required = true, value = "Activity that modifies a position, but not through buy/sell activity e.g. options exercise, portfolio transfer")
public String getTransfer() {
return transfer;
}
public void setTransfer(String transfer) {
this.transfer = transfer;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
StandaloneInvestmentTransactionType standaloneInvestmentTransactionType = (StandaloneInvestmentTransactionType) o;
return Objects.equals(this.buy, standaloneInvestmentTransactionType.buy) &&
Objects.equals(this.sell, standaloneInvestmentTransactionType.sell) &&
Objects.equals(this.cancel, standaloneInvestmentTransactionType.cancel) &&
Objects.equals(this.cash, standaloneInvestmentTransactionType.cash) &&
Objects.equals(this.fee, standaloneInvestmentTransactionType.fee) &&
Objects.equals(this.transfer, standaloneInvestmentTransactionType.transfer);
}
@Override
public int hashCode() {
return Objects.hash(buy, sell, cancel, cash, fee, transfer);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class StandaloneInvestmentTransactionType {\n");
sb.append(" buy: ").append(toIndentedString(buy)).append("\n");
sb.append(" sell: ").append(toIndentedString(sell)).append("\n");
sb.append(" cancel: ").append(toIndentedString(cancel)).append("\n");
sb.append(" cash: ").append(toIndentedString(cash)).append("\n");
sb.append(" fee: ").append(toIndentedString(fee)).append("\n");
sb.append(" transfer: ").append(toIndentedString(transfer)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BeaconAccountRiskAttributes.java | src/main/java/com/plaid/client/model/BeaconAccountRiskAttributes.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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 attributes object contains data that can be used to assess account risk. Examples of data include: `days_since_first_plaid_connection`: The number of days since the first time the Item was connected to an application via Plaid `plaid_connections_count_7d`: The number of times the Item has been connected to applications via Plaid over the past 7 days `plaid_connections_count_30d`: The number of times the Item has been connected to applications via Plaid over the past 30 days `total_plaid_connections_count`: The number of times the Item has been connected to applications via Plaid For the full list and detailed documentation of core attributes available, or to request that core attributes not be returned, contact Sales or your Plaid account manager
*/
@ApiModel(description = "The attributes object contains data that can be used to assess account risk. Examples of data include: `days_since_first_plaid_connection`: The number of days since the first time the Item was connected to an application via Plaid `plaid_connections_count_7d`: The number of times the Item has been connected to applications via Plaid over the past 7 days `plaid_connections_count_30d`: The number of times the Item has been connected to applications via Plaid over the past 30 days `total_plaid_connections_count`: The number of times the Item has been connected to applications via Plaid For the full list and detailed documentation of core attributes available, or to request that core attributes not be returned, contact Sales or your Plaid account manager")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class BeaconAccountRiskAttributes {
public static final String SERIALIZED_NAME_DAYS_SINCE_FIRST_PLAID_CONNECTION = "days_since_first_plaid_connection";
@SerializedName(SERIALIZED_NAME_DAYS_SINCE_FIRST_PLAID_CONNECTION)
private Integer daysSinceFirstPlaidConnection;
public static final String SERIALIZED_NAME_IS_ACCOUNT_CLOSED = "is_account_closed";
@SerializedName(SERIALIZED_NAME_IS_ACCOUNT_CLOSED)
private Boolean isAccountClosed;
public static final String SERIALIZED_NAME_IS_ACCOUNT_FROZEN_OR_RESTRICTED = "is_account_frozen_or_restricted";
@SerializedName(SERIALIZED_NAME_IS_ACCOUNT_FROZEN_OR_RESTRICTED)
private Boolean isAccountFrozenOrRestricted;
public static final String SERIALIZED_NAME_TOTAL_PLAID_CONNECTIONS_COUNT = "total_plaid_connections_count";
@SerializedName(SERIALIZED_NAME_TOTAL_PLAID_CONNECTIONS_COUNT)
private Integer totalPlaidConnectionsCount;
public static final String SERIALIZED_NAME_PLAID_CONNECTIONS_COUNT7D = "plaid_connections_count_7d";
@SerializedName(SERIALIZED_NAME_PLAID_CONNECTIONS_COUNT7D)
private Integer plaidConnectionsCount7d;
public static final String SERIALIZED_NAME_PLAID_CONNECTIONS_COUNT30D = "plaid_connections_count_30d";
@SerializedName(SERIALIZED_NAME_PLAID_CONNECTIONS_COUNT30D)
private Integer plaidConnectionsCount30d;
public static final String SERIALIZED_NAME_FAILED_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT3D = "failed_plaid_non_oauth_authentication_attempts_count_3d";
@SerializedName(SERIALIZED_NAME_FAILED_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT3D)
private Integer failedPlaidNonOauthAuthenticationAttemptsCount3d;
public static final String SERIALIZED_NAME_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT3D = "plaid_non_oauth_authentication_attempts_count_3d";
@SerializedName(SERIALIZED_NAME_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT3D)
private Integer plaidNonOauthAuthenticationAttemptsCount3d;
public static final String SERIALIZED_NAME_FAILED_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT7D = "failed_plaid_non_oauth_authentication_attempts_count_7d";
@SerializedName(SERIALIZED_NAME_FAILED_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT7D)
private Integer failedPlaidNonOauthAuthenticationAttemptsCount7d;
public static final String SERIALIZED_NAME_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT7D = "plaid_non_oauth_authentication_attempts_count_7d";
@SerializedName(SERIALIZED_NAME_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT7D)
private Integer plaidNonOauthAuthenticationAttemptsCount7d;
public static final String SERIALIZED_NAME_FAILED_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT30D = "failed_plaid_non_oauth_authentication_attempts_count_30d";
@SerializedName(SERIALIZED_NAME_FAILED_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT30D)
private Integer failedPlaidNonOauthAuthenticationAttemptsCount30d;
public static final String SERIALIZED_NAME_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT30D = "plaid_non_oauth_authentication_attempts_count_30d";
@SerializedName(SERIALIZED_NAME_PLAID_NON_OAUTH_AUTHENTICATION_ATTEMPTS_COUNT30D)
private Integer plaidNonOauthAuthenticationAttemptsCount30d;
public static final String SERIALIZED_NAME_DISTINCT_IP_ADDRESSES_COUNT3D = "distinct_ip_addresses_count_3d";
@SerializedName(SERIALIZED_NAME_DISTINCT_IP_ADDRESSES_COUNT3D)
private Integer distinctIpAddressesCount3d;
public static final String SERIALIZED_NAME_DISTINCT_IP_ADDRESSES_COUNT7D = "distinct_ip_addresses_count_7d";
@SerializedName(SERIALIZED_NAME_DISTINCT_IP_ADDRESSES_COUNT7D)
private Integer distinctIpAddressesCount7d;
public static final String SERIALIZED_NAME_DISTINCT_IP_ADDRESSES_COUNT30D = "distinct_ip_addresses_count_30d";
@SerializedName(SERIALIZED_NAME_DISTINCT_IP_ADDRESSES_COUNT30D)
private Integer distinctIpAddressesCount30d;
public static final String SERIALIZED_NAME_DISTINCT_IP_ADDRESSES_COUNT90D = "distinct_ip_addresses_count_90d";
@SerializedName(SERIALIZED_NAME_DISTINCT_IP_ADDRESSES_COUNT90D)
private Integer distinctIpAddressesCount90d;
public static final String SERIALIZED_NAME_DISTINCT_USER_AGENTS_COUNT3D = "distinct_user_agents_count_3d";
@SerializedName(SERIALIZED_NAME_DISTINCT_USER_AGENTS_COUNT3D)
private Integer distinctUserAgentsCount3d;
public static final String SERIALIZED_NAME_DISTINCT_USER_AGENTS_COUNT7D = "distinct_user_agents_count_7d";
@SerializedName(SERIALIZED_NAME_DISTINCT_USER_AGENTS_COUNT7D)
private Integer distinctUserAgentsCount7d;
public static final String SERIALIZED_NAME_DISTINCT_USER_AGENTS_COUNT30D = "distinct_user_agents_count_30d";
@SerializedName(SERIALIZED_NAME_DISTINCT_USER_AGENTS_COUNT30D)
private Integer distinctUserAgentsCount30d;
public static final String SERIALIZED_NAME_DISTINCT_USER_AGENTS_COUNT90D = "distinct_user_agents_count_90d";
@SerializedName(SERIALIZED_NAME_DISTINCT_USER_AGENTS_COUNT90D)
private Integer distinctUserAgentsCount90d;
public static final String SERIALIZED_NAME_ADDRESS_CHANGE_COUNT28D = "address_change_count_28d";
@SerializedName(SERIALIZED_NAME_ADDRESS_CHANGE_COUNT28D)
private Integer addressChangeCount28d;
public static final String SERIALIZED_NAME_EMAIL_CHANGE_COUNT28D = "email_change_count_28d";
@SerializedName(SERIALIZED_NAME_EMAIL_CHANGE_COUNT28D)
private Integer emailChangeCount28d;
public static final String SERIALIZED_NAME_PHONE_CHANGE_COUNT28D = "phone_change_count_28d";
@SerializedName(SERIALIZED_NAME_PHONE_CHANGE_COUNT28D)
private Integer phoneChangeCount28d;
public static final String SERIALIZED_NAME_ADDRESS_CHANGE_COUNT90D = "address_change_count_90d";
@SerializedName(SERIALIZED_NAME_ADDRESS_CHANGE_COUNT90D)
private Integer addressChangeCount90d;
public static final String SERIALIZED_NAME_EMAIL_CHANGE_COUNT90D = "email_change_count_90d";
@SerializedName(SERIALIZED_NAME_EMAIL_CHANGE_COUNT90D)
private Integer emailChangeCount90d;
public static final String SERIALIZED_NAME_PHONE_CHANGE_COUNT90D = "phone_change_count_90d";
@SerializedName(SERIALIZED_NAME_PHONE_CHANGE_COUNT90D)
private Integer phoneChangeCount90d;
public static final String SERIALIZED_NAME_DAYS_SINCE_ACCOUNT_OPENING = "days_since_account_opening";
@SerializedName(SERIALIZED_NAME_DAYS_SINCE_ACCOUNT_OPENING)
private Integer daysSinceAccountOpening;
public static final String SERIALIZED_NAME_DAYS_SINCE_FIRST_OBSERVED_TRANSACTION = "days_since_first_observed_transaction";
@SerializedName(SERIALIZED_NAME_DAYS_SINCE_FIRST_OBSERVED_TRANSACTION)
private Integer daysSinceFirstObservedTransaction;
public BeaconAccountRiskAttributes daysSinceFirstPlaidConnection(Integer daysSinceFirstPlaidConnection) {
this.daysSinceFirstPlaidConnection = daysSinceFirstPlaidConnection;
return this;
}
/**
* The number of days since the first time the Item was connected to an application via Plaid
* @return daysSinceFirstPlaidConnection
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The number of days since the first time the Item was connected to an application via Plaid")
public Integer getDaysSinceFirstPlaidConnection() {
return daysSinceFirstPlaidConnection;
}
public void setDaysSinceFirstPlaidConnection(Integer daysSinceFirstPlaidConnection) {
this.daysSinceFirstPlaidConnection = daysSinceFirstPlaidConnection;
}
public BeaconAccountRiskAttributes isAccountClosed(Boolean isAccountClosed) {
this.isAccountClosed = isAccountClosed;
return this;
}
/**
* Indicates if the account has been closed by the financial institution or the consumer, or is at risk of being closed
* @return isAccountClosed
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "false", required = true, value = "Indicates if the account has been closed by the financial institution or the consumer, or is at risk of being closed")
public Boolean getIsAccountClosed() {
return isAccountClosed;
}
public void setIsAccountClosed(Boolean isAccountClosed) {
this.isAccountClosed = isAccountClosed;
}
public BeaconAccountRiskAttributes isAccountFrozenOrRestricted(Boolean isAccountFrozenOrRestricted) {
this.isAccountFrozenOrRestricted = isAccountFrozenOrRestricted;
return this;
}
/**
* Indicates whether the account has withdrawals and transfers disabled or if access to the account is restricted. This could be due to a freeze by the credit issuer, legal restrictions (e.g., sanctions), or regulatory requirements limiting monthly withdrawals, among other reasons
* @return isAccountFrozenOrRestricted
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "false", required = true, value = "Indicates whether the account has withdrawals and transfers disabled or if access to the account is restricted. This could be due to a freeze by the credit issuer, legal restrictions (e.g., sanctions), or regulatory requirements limiting monthly withdrawals, among other reasons")
public Boolean getIsAccountFrozenOrRestricted() {
return isAccountFrozenOrRestricted;
}
public void setIsAccountFrozenOrRestricted(Boolean isAccountFrozenOrRestricted) {
this.isAccountFrozenOrRestricted = isAccountFrozenOrRestricted;
}
public BeaconAccountRiskAttributes totalPlaidConnectionsCount(Integer totalPlaidConnectionsCount) {
this.totalPlaidConnectionsCount = totalPlaidConnectionsCount;
return this;
}
/**
* The total number of times the item has been connected to applications via Plaid
* @return totalPlaidConnectionsCount
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The total number of times the item has been connected to applications via Plaid")
public Integer getTotalPlaidConnectionsCount() {
return totalPlaidConnectionsCount;
}
public void setTotalPlaidConnectionsCount(Integer totalPlaidConnectionsCount) {
this.totalPlaidConnectionsCount = totalPlaidConnectionsCount;
}
public BeaconAccountRiskAttributes plaidConnectionsCount7d(Integer plaidConnectionsCount7d) {
this.plaidConnectionsCount7d = plaidConnectionsCount7d;
return this;
}
/**
* The number of times the Item has been connected to applications via Plaid over the past 7 days
* @return plaidConnectionsCount7d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The number of times the Item has been connected to applications via Plaid over the past 7 days")
public Integer getPlaidConnectionsCount7d() {
return plaidConnectionsCount7d;
}
public void setPlaidConnectionsCount7d(Integer plaidConnectionsCount7d) {
this.plaidConnectionsCount7d = plaidConnectionsCount7d;
}
public BeaconAccountRiskAttributes plaidConnectionsCount30d(Integer plaidConnectionsCount30d) {
this.plaidConnectionsCount30d = plaidConnectionsCount30d;
return this;
}
/**
* The number of times the Item has been connected to applications via Plaid over the past 30 days
* @return plaidConnectionsCount30d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The number of times the Item has been connected to applications via Plaid over the past 30 days")
public Integer getPlaidConnectionsCount30d() {
return plaidConnectionsCount30d;
}
public void setPlaidConnectionsCount30d(Integer plaidConnectionsCount30d) {
this.plaidConnectionsCount30d = plaidConnectionsCount30d;
}
public BeaconAccountRiskAttributes failedPlaidNonOauthAuthenticationAttemptsCount3d(Integer failedPlaidNonOauthAuthenticationAttemptsCount3d) {
this.failedPlaidNonOauthAuthenticationAttemptsCount3d = failedPlaidNonOauthAuthenticationAttemptsCount3d;
return this;
}
/**
* The number of failed non-OAuth authentication attempts via Plaid for this bank account over the past 3 days
* @return failedPlaidNonOauthAuthenticationAttemptsCount3d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The number of failed non-OAuth authentication attempts via Plaid for this bank account over the past 3 days")
public Integer getFailedPlaidNonOauthAuthenticationAttemptsCount3d() {
return failedPlaidNonOauthAuthenticationAttemptsCount3d;
}
public void setFailedPlaidNonOauthAuthenticationAttemptsCount3d(Integer failedPlaidNonOauthAuthenticationAttemptsCount3d) {
this.failedPlaidNonOauthAuthenticationAttemptsCount3d = failedPlaidNonOauthAuthenticationAttemptsCount3d;
}
public BeaconAccountRiskAttributes plaidNonOauthAuthenticationAttemptsCount3d(Integer plaidNonOauthAuthenticationAttemptsCount3d) {
this.plaidNonOauthAuthenticationAttemptsCount3d = plaidNonOauthAuthenticationAttemptsCount3d;
return this;
}
/**
* The number of non-OAuth authentication attempts via Plaid for this bank account over the past 3 days
* @return plaidNonOauthAuthenticationAttemptsCount3d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The number of non-OAuth authentication attempts via Plaid for this bank account over the past 3 days")
public Integer getPlaidNonOauthAuthenticationAttemptsCount3d() {
return plaidNonOauthAuthenticationAttemptsCount3d;
}
public void setPlaidNonOauthAuthenticationAttemptsCount3d(Integer plaidNonOauthAuthenticationAttemptsCount3d) {
this.plaidNonOauthAuthenticationAttemptsCount3d = plaidNonOauthAuthenticationAttemptsCount3d;
}
public BeaconAccountRiskAttributes failedPlaidNonOauthAuthenticationAttemptsCount7d(Integer failedPlaidNonOauthAuthenticationAttemptsCount7d) {
this.failedPlaidNonOauthAuthenticationAttemptsCount7d = failedPlaidNonOauthAuthenticationAttemptsCount7d;
return this;
}
/**
* The number of failed non-OAuth authentication attempts via Plaid for this bank account over the past 7 days
* @return failedPlaidNonOauthAuthenticationAttemptsCount7d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The number of failed non-OAuth authentication attempts via Plaid for this bank account over the past 7 days")
public Integer getFailedPlaidNonOauthAuthenticationAttemptsCount7d() {
return failedPlaidNonOauthAuthenticationAttemptsCount7d;
}
public void setFailedPlaidNonOauthAuthenticationAttemptsCount7d(Integer failedPlaidNonOauthAuthenticationAttemptsCount7d) {
this.failedPlaidNonOauthAuthenticationAttemptsCount7d = failedPlaidNonOauthAuthenticationAttemptsCount7d;
}
public BeaconAccountRiskAttributes plaidNonOauthAuthenticationAttemptsCount7d(Integer plaidNonOauthAuthenticationAttemptsCount7d) {
this.plaidNonOauthAuthenticationAttemptsCount7d = plaidNonOauthAuthenticationAttemptsCount7d;
return this;
}
/**
* The number of non-OAuth authentication attempts via Plaid for this bank account over the past 7 days
* @return plaidNonOauthAuthenticationAttemptsCount7d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The number of non-OAuth authentication attempts via Plaid for this bank account over the past 7 days")
public Integer getPlaidNonOauthAuthenticationAttemptsCount7d() {
return plaidNonOauthAuthenticationAttemptsCount7d;
}
public void setPlaidNonOauthAuthenticationAttemptsCount7d(Integer plaidNonOauthAuthenticationAttemptsCount7d) {
this.plaidNonOauthAuthenticationAttemptsCount7d = plaidNonOauthAuthenticationAttemptsCount7d;
}
public BeaconAccountRiskAttributes failedPlaidNonOauthAuthenticationAttemptsCount30d(Integer failedPlaidNonOauthAuthenticationAttemptsCount30d) {
this.failedPlaidNonOauthAuthenticationAttemptsCount30d = failedPlaidNonOauthAuthenticationAttemptsCount30d;
return this;
}
/**
* The number of failed non-OAuth authentication attempts via Plaid for this bank account over the past 30 days
* @return failedPlaidNonOauthAuthenticationAttemptsCount30d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The number of failed non-OAuth authentication attempts via Plaid for this bank account over the past 30 days")
public Integer getFailedPlaidNonOauthAuthenticationAttemptsCount30d() {
return failedPlaidNonOauthAuthenticationAttemptsCount30d;
}
public void setFailedPlaidNonOauthAuthenticationAttemptsCount30d(Integer failedPlaidNonOauthAuthenticationAttemptsCount30d) {
this.failedPlaidNonOauthAuthenticationAttemptsCount30d = failedPlaidNonOauthAuthenticationAttemptsCount30d;
}
public BeaconAccountRiskAttributes plaidNonOauthAuthenticationAttemptsCount30d(Integer plaidNonOauthAuthenticationAttemptsCount30d) {
this.plaidNonOauthAuthenticationAttemptsCount30d = plaidNonOauthAuthenticationAttemptsCount30d;
return this;
}
/**
* The number of non-OAuth authentication attempts via Plaid for this bank account over the past 30 days
* @return plaidNonOauthAuthenticationAttemptsCount30d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The number of non-OAuth authentication attempts via Plaid for this bank account over the past 30 days")
public Integer getPlaidNonOauthAuthenticationAttemptsCount30d() {
return plaidNonOauthAuthenticationAttemptsCount30d;
}
public void setPlaidNonOauthAuthenticationAttemptsCount30d(Integer plaidNonOauthAuthenticationAttemptsCount30d) {
this.plaidNonOauthAuthenticationAttemptsCount30d = plaidNonOauthAuthenticationAttemptsCount30d;
}
public BeaconAccountRiskAttributes distinctIpAddressesCount3d(Integer distinctIpAddressesCount3d) {
this.distinctIpAddressesCount3d = distinctIpAddressesCount3d;
return this;
}
/**
* The number of distinct IP addresses linked to the same bank account during Plaid authentication in the last 3 days
* @return distinctIpAddressesCount3d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The number of distinct IP addresses linked to the same bank account during Plaid authentication in the last 3 days")
public Integer getDistinctIpAddressesCount3d() {
return distinctIpAddressesCount3d;
}
public void setDistinctIpAddressesCount3d(Integer distinctIpAddressesCount3d) {
this.distinctIpAddressesCount3d = distinctIpAddressesCount3d;
}
public BeaconAccountRiskAttributes distinctIpAddressesCount7d(Integer distinctIpAddressesCount7d) {
this.distinctIpAddressesCount7d = distinctIpAddressesCount7d;
return this;
}
/**
* The number of distinct IP addresses linked to the same bank account during Plaid authentication in the last 7 days
* @return distinctIpAddressesCount7d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The number of distinct IP addresses linked to the same bank account during Plaid authentication in the last 7 days")
public Integer getDistinctIpAddressesCount7d() {
return distinctIpAddressesCount7d;
}
public void setDistinctIpAddressesCount7d(Integer distinctIpAddressesCount7d) {
this.distinctIpAddressesCount7d = distinctIpAddressesCount7d;
}
public BeaconAccountRiskAttributes distinctIpAddressesCount30d(Integer distinctIpAddressesCount30d) {
this.distinctIpAddressesCount30d = distinctIpAddressesCount30d;
return this;
}
/**
* The number of distinct IP addresses linked to the same bank account during Plaid authentication in the last 30 days
* @return distinctIpAddressesCount30d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The number of distinct IP addresses linked to the same bank account during Plaid authentication in the last 30 days")
public Integer getDistinctIpAddressesCount30d() {
return distinctIpAddressesCount30d;
}
public void setDistinctIpAddressesCount30d(Integer distinctIpAddressesCount30d) {
this.distinctIpAddressesCount30d = distinctIpAddressesCount30d;
}
public BeaconAccountRiskAttributes distinctIpAddressesCount90d(Integer distinctIpAddressesCount90d) {
this.distinctIpAddressesCount90d = distinctIpAddressesCount90d;
return this;
}
/**
* The number of distinct IP addresses linked to the same bank account during Plaid authentication in the last 90 days
* @return distinctIpAddressesCount90d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The number of distinct IP addresses linked to the same bank account during Plaid authentication in the last 90 days")
public Integer getDistinctIpAddressesCount90d() {
return distinctIpAddressesCount90d;
}
public void setDistinctIpAddressesCount90d(Integer distinctIpAddressesCount90d) {
this.distinctIpAddressesCount90d = distinctIpAddressesCount90d;
}
public BeaconAccountRiskAttributes distinctUserAgentsCount3d(Integer distinctUserAgentsCount3d) {
this.distinctUserAgentsCount3d = distinctUserAgentsCount3d;
return this;
}
/**
* The number of distinct user agents linked to the same bank account during Plaid authentication in the last 3 days
* @return distinctUserAgentsCount3d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The number of distinct user agents linked to the same bank account during Plaid authentication in the last 3 days")
public Integer getDistinctUserAgentsCount3d() {
return distinctUserAgentsCount3d;
}
public void setDistinctUserAgentsCount3d(Integer distinctUserAgentsCount3d) {
this.distinctUserAgentsCount3d = distinctUserAgentsCount3d;
}
public BeaconAccountRiskAttributes distinctUserAgentsCount7d(Integer distinctUserAgentsCount7d) {
this.distinctUserAgentsCount7d = distinctUserAgentsCount7d;
return this;
}
/**
* The number of distinct user agents linked to the same bank account during Plaid authentication in the last 7 days
* @return distinctUserAgentsCount7d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The number of distinct user agents linked to the same bank account during Plaid authentication in the last 7 days")
public Integer getDistinctUserAgentsCount7d() {
return distinctUserAgentsCount7d;
}
public void setDistinctUserAgentsCount7d(Integer distinctUserAgentsCount7d) {
this.distinctUserAgentsCount7d = distinctUserAgentsCount7d;
}
public BeaconAccountRiskAttributes distinctUserAgentsCount30d(Integer distinctUserAgentsCount30d) {
this.distinctUserAgentsCount30d = distinctUserAgentsCount30d;
return this;
}
/**
* The number of distinct user agents linked to the same bank account during Plaid authentication in the last 30 days
* @return distinctUserAgentsCount30d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The number of distinct user agents linked to the same bank account during Plaid authentication in the last 30 days")
public Integer getDistinctUserAgentsCount30d() {
return distinctUserAgentsCount30d;
}
public void setDistinctUserAgentsCount30d(Integer distinctUserAgentsCount30d) {
this.distinctUserAgentsCount30d = distinctUserAgentsCount30d;
}
public BeaconAccountRiskAttributes distinctUserAgentsCount90d(Integer distinctUserAgentsCount90d) {
this.distinctUserAgentsCount90d = distinctUserAgentsCount90d;
return this;
}
/**
* The number of distinct user agents linked to the same bank account during Plaid authentication in the last 90 days
* @return distinctUserAgentsCount90d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The number of distinct user agents linked to the same bank account during Plaid authentication in the last 90 days")
public Integer getDistinctUserAgentsCount90d() {
return distinctUserAgentsCount90d;
}
public void setDistinctUserAgentsCount90d(Integer distinctUserAgentsCount90d) {
this.distinctUserAgentsCount90d = distinctUserAgentsCount90d;
}
public BeaconAccountRiskAttributes addressChangeCount28d(Integer addressChangeCount28d) {
this.addressChangeCount28d = addressChangeCount28d;
return this;
}
/**
* The number of times the account's addresses on file have changed over the past 28 days
* @return addressChangeCount28d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The number of times the account's addresses on file have changed over the past 28 days")
public Integer getAddressChangeCount28d() {
return addressChangeCount28d;
}
public void setAddressChangeCount28d(Integer addressChangeCount28d) {
this.addressChangeCount28d = addressChangeCount28d;
}
public BeaconAccountRiskAttributes emailChangeCount28d(Integer emailChangeCount28d) {
this.emailChangeCount28d = emailChangeCount28d;
return this;
}
/**
* The number of times the account's email addresses on file have changed over the past 28 days
* @return emailChangeCount28d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "2", required = true, value = "The number of times the account's email addresses on file have changed over the past 28 days")
public Integer getEmailChangeCount28d() {
return emailChangeCount28d;
}
public void setEmailChangeCount28d(Integer emailChangeCount28d) {
this.emailChangeCount28d = emailChangeCount28d;
}
public BeaconAccountRiskAttributes phoneChangeCount28d(Integer phoneChangeCount28d) {
this.phoneChangeCount28d = phoneChangeCount28d;
return this;
}
/**
* The number of times the account's phone numbers on file have changed over the past 28 days
* @return phoneChangeCount28d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", required = true, value = "The number of times the account's phone numbers on file have changed over the past 28 days")
public Integer getPhoneChangeCount28d() {
return phoneChangeCount28d;
}
public void setPhoneChangeCount28d(Integer phoneChangeCount28d) {
this.phoneChangeCount28d = phoneChangeCount28d;
}
public BeaconAccountRiskAttributes addressChangeCount90d(Integer addressChangeCount90d) {
this.addressChangeCount90d = addressChangeCount90d;
return this;
}
/**
* The number of times the account's addresses on file have changed over the past 90 days
* @return addressChangeCount90d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "3", required = true, value = "The number of times the account's addresses on file have changed over the past 90 days")
public Integer getAddressChangeCount90d() {
return addressChangeCount90d;
}
public void setAddressChangeCount90d(Integer addressChangeCount90d) {
this.addressChangeCount90d = addressChangeCount90d;
}
public BeaconAccountRiskAttributes emailChangeCount90d(Integer emailChangeCount90d) {
this.emailChangeCount90d = emailChangeCount90d;
return this;
}
/**
* The number of times the account's email addresses on file have changed over the past 90 days
* @return emailChangeCount90d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "4", required = true, value = "The number of times the account's email addresses on file have changed over the past 90 days")
public Integer getEmailChangeCount90d() {
return emailChangeCount90d;
}
public void setEmailChangeCount90d(Integer emailChangeCount90d) {
this.emailChangeCount90d = emailChangeCount90d;
}
public BeaconAccountRiskAttributes phoneChangeCount90d(Integer phoneChangeCount90d) {
this.phoneChangeCount90d = phoneChangeCount90d;
return this;
}
/**
* The number of times the account's phone numbers on file have changed over the past 90 days
* @return phoneChangeCount90d
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "2", required = true, value = "The number of times the account's phone numbers on file have changed over the past 90 days")
public Integer getPhoneChangeCount90d() {
return phoneChangeCount90d;
}
public void setPhoneChangeCount90d(Integer phoneChangeCount90d) {
this.phoneChangeCount90d = phoneChangeCount90d;
}
public BeaconAccountRiskAttributes daysSinceAccountOpening(Integer daysSinceAccountOpening) {
this.daysSinceAccountOpening = daysSinceAccountOpening;
return this;
}
/**
* The number of days since the bank account was opened, as reported by the financial institution
* @return daysSinceAccountOpening
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "365", required = true, value = "The number of days since the bank account was opened, as reported by the financial institution")
public Integer getDaysSinceAccountOpening() {
return daysSinceAccountOpening;
}
public void setDaysSinceAccountOpening(Integer daysSinceAccountOpening) {
this.daysSinceAccountOpening = daysSinceAccountOpening;
}
public BeaconAccountRiskAttributes daysSinceFirstObservedTransaction(Integer daysSinceFirstObservedTransaction) {
this.daysSinceFirstObservedTransaction = daysSinceFirstObservedTransaction;
return this;
}
/**
* The number of days since the oldest transaction available to Plaid for this account. This measure, combined with Plaid connection history, can be used to infer the age of the account
* @return daysSinceFirstObservedTransaction
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "180", required = true, value = "The number of days since the oldest transaction available to Plaid for this account. This measure, combined with Plaid connection history, can be used to infer the age of the account")
public Integer getDaysSinceFirstObservedTransaction() {
return daysSinceFirstObservedTransaction;
}
public void setDaysSinceFirstObservedTransaction(Integer daysSinceFirstObservedTransaction) {
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | true |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ItemApplicationScopesUpdateResponse.java | src/main/java/com/plaid/client/model/ItemApplicationScopesUpdateResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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;
/**
* ItemApplicationScopesUpdateResponse defines the response schema for `/item/application/scopes/update`
*/
@ApiModel(description = "ItemApplicationScopesUpdateResponse defines the response schema for `/item/application/scopes/update`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ItemApplicationScopesUpdateResponse {
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public ItemApplicationScopesUpdateResponse 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;
}
ItemApplicationScopesUpdateResponse itemApplicationScopesUpdateResponse = (ItemApplicationScopesUpdateResponse) o;
return Objects.equals(this.requestId, itemApplicationScopesUpdateResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ItemApplicationScopesUpdateResponse {\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/LiabilitiesGetResponse.java | src/main/java/com/plaid/client/model/LiabilitiesGetResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.AccountBase;
import com.plaid.client.model.Item;
import com.plaid.client.model.LiabilitiesObject;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* LiabilitiesGetResponse defines the response schema for `/liabilities/get`
*/
@ApiModel(description = "LiabilitiesGetResponse defines the response schema for `/liabilities/get`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class LiabilitiesGetResponse {
public static final String SERIALIZED_NAME_ACCOUNTS = "accounts";
@SerializedName(SERIALIZED_NAME_ACCOUNTS)
private List<AccountBase> accounts = new ArrayList<>();
public static final String SERIALIZED_NAME_ITEM = "item";
@SerializedName(SERIALIZED_NAME_ITEM)
private Item item;
public static final String SERIALIZED_NAME_LIABILITIES = "liabilities";
@SerializedName(SERIALIZED_NAME_LIABILITIES)
private LiabilitiesObject liabilities;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public LiabilitiesGetResponse accounts(List<AccountBase> accounts) {
this.accounts = accounts;
return this;
}
public LiabilitiesGetResponse addAccountsItem(AccountBase accountsItem) {
this.accounts.add(accountsItem);
return this;
}
/**
* An array of accounts associated with the Item
* @return accounts
**/
@ApiModelProperty(required = true, value = "An array of accounts associated with the Item")
public List<AccountBase> getAccounts() {
return accounts;
}
public void setAccounts(List<AccountBase> accounts) {
this.accounts = accounts;
}
public LiabilitiesGetResponse 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 LiabilitiesGetResponse liabilities(LiabilitiesObject liabilities) {
this.liabilities = liabilities;
return this;
}
/**
* Get liabilities
* @return liabilities
**/
@ApiModelProperty(required = true, value = "")
public LiabilitiesObject getLiabilities() {
return liabilities;
}
public void setLiabilities(LiabilitiesObject liabilities) {
this.liabilities = liabilities;
}
public LiabilitiesGetResponse 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;
}
LiabilitiesGetResponse liabilitiesGetResponse = (LiabilitiesGetResponse) o;
return Objects.equals(this.accounts, liabilitiesGetResponse.accounts) &&
Objects.equals(this.item, liabilitiesGetResponse.item) &&
Objects.equals(this.liabilities, liabilitiesGetResponse.liabilities) &&
Objects.equals(this.requestId, liabilitiesGetResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(accounts, item, liabilities, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class LiabilitiesGetResponse {\n");
sb.append(" accounts: ").append(toIndentedString(accounts)).append("\n");
sb.append(" item: ").append(toIndentedString(item)).append("\n");
sb.append(" liabilities: ").append(toIndentedString(liabilities)).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/InstitutionsSearchResponse.java | src/main/java/com/plaid/client/model/InstitutionsSearchResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.Institution;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* InstitutionsSearchResponse defines the response schema for `/institutions/search`
*/
@ApiModel(description = "InstitutionsSearchResponse defines the response schema for `/institutions/search`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class InstitutionsSearchResponse {
public static final String SERIALIZED_NAME_INSTITUTIONS = "institutions";
@SerializedName(SERIALIZED_NAME_INSTITUTIONS)
private List<Institution> institutions = new ArrayList<>();
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public InstitutionsSearchResponse institutions(List<Institution> institutions) {
this.institutions = institutions;
return this;
}
public InstitutionsSearchResponse addInstitutionsItem(Institution institutionsItem) {
this.institutions.add(institutionsItem);
return this;
}
/**
* An array of institutions matching the search criteria
* @return institutions
**/
@ApiModelProperty(required = true, value = "An array of institutions matching the search criteria")
public List<Institution> getInstitutions() {
return institutions;
}
public void setInstitutions(List<Institution> institutions) {
this.institutions = institutions;
}
public InstitutionsSearchResponse 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;
}
InstitutionsSearchResponse institutionsSearchResponse = (InstitutionsSearchResponse) o;
return Objects.equals(this.institutions, institutionsSearchResponse.institutions) &&
Objects.equals(this.requestId, institutionsSearchResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(institutions, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class InstitutionsSearchResponse {\n");
sb.append(" institutions: ").append(toIndentedString(institutions)).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/TransferMetricsGetAuthorizationUsage.java | src/main/java/com/plaid/client/model/TransferMetricsGetAuthorizationUsage.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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;
/**
* Details regarding authorization usage.
*/
@ApiModel(description = "Details regarding authorization usage.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TransferMetricsGetAuthorizationUsage {
public static final String SERIALIZED_NAME_DAILY_CREDIT_UTILIZATION = "daily_credit_utilization";
@SerializedName(SERIALIZED_NAME_DAILY_CREDIT_UTILIZATION)
private String dailyCreditUtilization;
public static final String SERIALIZED_NAME_DAILY_DEBIT_UTILIZATION = "daily_debit_utilization";
@SerializedName(SERIALIZED_NAME_DAILY_DEBIT_UTILIZATION)
private String dailyDebitUtilization;
public static final String SERIALIZED_NAME_MONTHLY_CREDIT_UTILIZATION = "monthly_credit_utilization";
@SerializedName(SERIALIZED_NAME_MONTHLY_CREDIT_UTILIZATION)
private String monthlyCreditUtilization;
public static final String SERIALIZED_NAME_MONTHLY_DEBIT_UTILIZATION = "monthly_debit_utilization";
@SerializedName(SERIALIZED_NAME_MONTHLY_DEBIT_UTILIZATION)
private String monthlyDebitUtilization;
public TransferMetricsGetAuthorizationUsage dailyCreditUtilization(String dailyCreditUtilization) {
this.dailyCreditUtilization = dailyCreditUtilization;
return this;
}
/**
* The daily credit utilization formatted as a decimal.
* @return dailyCreditUtilization
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The daily credit utilization formatted as a decimal.")
public String getDailyCreditUtilization() {
return dailyCreditUtilization;
}
public void setDailyCreditUtilization(String dailyCreditUtilization) {
this.dailyCreditUtilization = dailyCreditUtilization;
}
public TransferMetricsGetAuthorizationUsage dailyDebitUtilization(String dailyDebitUtilization) {
this.dailyDebitUtilization = dailyDebitUtilization;
return this;
}
/**
* The daily debit utilization formatted as a decimal.
* @return dailyDebitUtilization
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The daily debit utilization formatted as a decimal.")
public String getDailyDebitUtilization() {
return dailyDebitUtilization;
}
public void setDailyDebitUtilization(String dailyDebitUtilization) {
this.dailyDebitUtilization = dailyDebitUtilization;
}
public TransferMetricsGetAuthorizationUsage monthlyCreditUtilization(String monthlyCreditUtilization) {
this.monthlyCreditUtilization = monthlyCreditUtilization;
return this;
}
/**
* The monthly credit utilization formatted as a decimal.
* @return monthlyCreditUtilization
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The monthly credit utilization formatted as a decimal.")
public String getMonthlyCreditUtilization() {
return monthlyCreditUtilization;
}
public void setMonthlyCreditUtilization(String monthlyCreditUtilization) {
this.monthlyCreditUtilization = monthlyCreditUtilization;
}
public TransferMetricsGetAuthorizationUsage monthlyDebitUtilization(String monthlyDebitUtilization) {
this.monthlyDebitUtilization = monthlyDebitUtilization;
return this;
}
/**
* The monthly debit utilization formatted as a decimal.
* @return monthlyDebitUtilization
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The monthly debit utilization formatted as a decimal.")
public String getMonthlyDebitUtilization() {
return monthlyDebitUtilization;
}
public void setMonthlyDebitUtilization(String monthlyDebitUtilization) {
this.monthlyDebitUtilization = monthlyDebitUtilization;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransferMetricsGetAuthorizationUsage transferMetricsGetAuthorizationUsage = (TransferMetricsGetAuthorizationUsage) o;
return Objects.equals(this.dailyCreditUtilization, transferMetricsGetAuthorizationUsage.dailyCreditUtilization) &&
Objects.equals(this.dailyDebitUtilization, transferMetricsGetAuthorizationUsage.dailyDebitUtilization) &&
Objects.equals(this.monthlyCreditUtilization, transferMetricsGetAuthorizationUsage.monthlyCreditUtilization) &&
Objects.equals(this.monthlyDebitUtilization, transferMetricsGetAuthorizationUsage.monthlyDebitUtilization);
}
@Override
public int hashCode() {
return Objects.hash(dailyCreditUtilization, dailyDebitUtilization, monthlyCreditUtilization, monthlyDebitUtilization);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransferMetricsGetAuthorizationUsage {\n");
sb.append(" dailyCreditUtilization: ").append(toIndentedString(dailyCreditUtilization)).append("\n");
sb.append(" dailyDebitUtilization: ").append(toIndentedString(dailyDebitUtilization)).append("\n");
sb.append(" monthlyCreditUtilization: ").append(toIndentedString(monthlyCreditUtilization)).append("\n");
sb.append(" monthlyDebitUtilization: ").append(toIndentedString(monthlyDebitUtilization)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/StatementsRefreshResponse.java | src/main/java/com/plaid/client/model/StatementsRefreshResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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;
/**
* StatementsRefreshResponse defines the response schema for `/statements/refresh`
*/
@ApiModel(description = "StatementsRefreshResponse defines the response schema for `/statements/refresh`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class StatementsRefreshResponse {
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public StatementsRefreshResponse 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;
}
StatementsRefreshResponse statementsRefreshResponse = (StatementsRefreshResponse) o;
return Objects.equals(this.requestId, statementsRefreshResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class StatementsRefreshResponse {\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/ItemWebhookUpdateRequest.java | src/main/java/com/plaid/client/model/ItemWebhookUpdateRequest.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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;
/**
* ItemWebhookUpdateRequest defines the request schema for `/item/webhook/update`
*/
@ApiModel(description = "ItemWebhookUpdateRequest defines the request schema for `/item/webhook/update`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ItemWebhookUpdateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
private String clientId;
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token";
@SerializedName(SERIALIZED_NAME_ACCESS_TOKEN)
private String accessToken;
public static final String SERIALIZED_NAME_WEBHOOK = "webhook";
@SerializedName(SERIALIZED_NAME_WEBHOOK)
private String webhook;
public ItemWebhookUpdateRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public ItemWebhookUpdateRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public ItemWebhookUpdateRequest 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 ItemWebhookUpdateRequest webhook(String webhook) {
this.webhook = webhook;
return this;
}
/**
* The new webhook URL to associate with the Item. To remove a webhook from an Item, set to `null`.
* @return webhook
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The new webhook URL to associate with the Item. To remove a webhook from an Item, set to `null`.")
public String getWebhook() {
return webhook;
}
public void setWebhook(String webhook) {
this.webhook = webhook;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ItemWebhookUpdateRequest itemWebhookUpdateRequest = (ItemWebhookUpdateRequest) o;
return Objects.equals(this.clientId, itemWebhookUpdateRequest.clientId) &&
Objects.equals(this.secret, itemWebhookUpdateRequest.secret) &&
Objects.equals(this.accessToken, itemWebhookUpdateRequest.accessToken) &&
Objects.equals(this.webhook, itemWebhookUpdateRequest.webhook);
}
@Override
public int hashCode() {
return Objects.hash(clientId, secret, accessToken, webhook);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ItemWebhookUpdateRequest {\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n");
sb.append(" webhook: ").append(toIndentedString(webhook)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ClientCustomization.java | src/main/java/com/plaid/client/model/ClientCustomization.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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;
/**
* Custom client fields
*/
@ApiModel(description = "Custom client fields")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ClientCustomization {
public static final String SERIALIZED_NAME_CUSTOM_ENTITY_ID = "custom_entity_id";
@SerializedName(SERIALIZED_NAME_CUSTOM_ENTITY_ID)
private String customEntityId;
public ClientCustomization customEntityId(String customEntityId) {
this.customEntityId = customEntityId;
return this;
}
/**
* Custom entity ID that maps to a merchant or counterparty. This is different from the `merchant_entity_id` as well as the `entity_id` on the counterparties object to meet client specific needs.
* @return customEntityId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Custom entity ID that maps to a merchant or counterparty. This is different from the `merchant_entity_id` as well as the `entity_id` on the counterparties object to meet client specific needs.")
public String getCustomEntityId() {
return customEntityId;
}
public void setCustomEntityId(String customEntityId) {
this.customEntityId = customEntityId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ClientCustomization clientCustomization = (ClientCustomization) o;
return Objects.equals(this.customEntityId, clientCustomization.customEntityId);
}
@Override
public int hashCode() {
return Objects.hash(customEntityId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ClientCustomization {\n");
sb.append(" customEntityId: ").append(toIndentedString(customEntityId)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditFreddieMacAssets.java | src/main/java/com/plaid/client/model/CreditFreddieMacAssets.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.CreditFreddieMacAsset;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* Documentation not found in the MISMO model viewer and not provided by Freddie Mac.
*/
@ApiModel(description = "Documentation not found in the MISMO model viewer and not provided by Freddie Mac.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CreditFreddieMacAssets {
public static final String SERIALIZED_NAME_A_S_S_E_T = "ASSET";
@SerializedName(SERIALIZED_NAME_A_S_S_E_T)
private List<CreditFreddieMacAsset> ASSET = new ArrayList<>();
public CreditFreddieMacAssets ASSET(List<CreditFreddieMacAsset> ASSET) {
this.ASSET = ASSET;
return this;
}
public CreditFreddieMacAssets addASSETItem(CreditFreddieMacAsset ASSETItem) {
this.ASSET.add(ASSETItem);
return this;
}
/**
* Documentation not found in the MISMO model viewer and not provided by Freddie Mac.
* @return ASSET
**/
@ApiModelProperty(required = true, value = "Documentation not found in the MISMO model viewer and not provided by Freddie Mac.")
public List<CreditFreddieMacAsset> getASSET() {
return ASSET;
}
public void setASSET(List<CreditFreddieMacAsset> ASSET) {
this.ASSET = ASSET;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreditFreddieMacAssets creditFreddieMacAssets = (CreditFreddieMacAssets) o;
return Objects.equals(this.ASSET, creditFreddieMacAssets.ASSET);
}
@Override
public int hashCode() {
return Objects.hash(ASSET);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreditFreddieMacAssets {\n");
sb.append(" ASSET: ").append(toIndentedString(ASSET)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/TransferAuthorizationCreateRequest.java | src/main/java/com/plaid/client/model/TransferAuthorizationCreateRequest.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.ACHClass;
import com.plaid.client.model.TransferAuthorizationDevice;
import com.plaid.client.model.TransferAuthorizationUserInRequest;
import com.plaid.client.model.TransferCreditFundsSource;
import com.plaid.client.model.TransferNetwork;
import com.plaid.client.model.TransferType;
import com.plaid.client.model.TransferWireDetails;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Defines the request schema for `/transfer/authorization/create`
*/
@ApiModel(description = "Defines the request schema for `/transfer/authorization/create`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class TransferAuthorizationCreateRequest {
public static final String SERIALIZED_NAME_CLIENT_ID = "client_id";
@SerializedName(SERIALIZED_NAME_CLIENT_ID)
private String clientId;
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token";
@SerializedName(SERIALIZED_NAME_ACCESS_TOKEN)
private String accessToken;
public static final String SERIALIZED_NAME_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_PAYMENT_PROFILE_TOKEN = "payment_profile_token";
@SerializedName(SERIALIZED_NAME_PAYMENT_PROFILE_TOKEN)
private String paymentProfileToken;
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
private TransferType type;
public static final String SERIALIZED_NAME_NETWORK = "network";
@SerializedName(SERIALIZED_NAME_NETWORK)
private TransferNetwork network;
public static final String SERIALIZED_NAME_AMOUNT = "amount";
@SerializedName(SERIALIZED_NAME_AMOUNT)
private String amount;
public static final String SERIALIZED_NAME_ACH_CLASS = "ach_class";
@SerializedName(SERIALIZED_NAME_ACH_CLASS)
private ACHClass achClass;
public static final String SERIALIZED_NAME_WIRE_DETAILS = "wire_details";
@SerializedName(SERIALIZED_NAME_WIRE_DETAILS)
private TransferWireDetails wireDetails;
public static final String SERIALIZED_NAME_USER = "user";
@SerializedName(SERIALIZED_NAME_USER)
private TransferAuthorizationUserInRequest user;
public static final String SERIALIZED_NAME_DEVICE = "device";
@SerializedName(SERIALIZED_NAME_DEVICE)
private TransferAuthorizationDevice device;
public static final String SERIALIZED_NAME_ORIGINATION_ACCOUNT_ID = "origination_account_id";
@SerializedName(SERIALIZED_NAME_ORIGINATION_ACCOUNT_ID)
private String originationAccountId;
public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code";
@SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE)
private String isoCurrencyCode;
public static final String SERIALIZED_NAME_IDEMPOTENCY_KEY = "idempotency_key";
@SerializedName(SERIALIZED_NAME_IDEMPOTENCY_KEY)
private String idempotencyKey;
public static final String SERIALIZED_NAME_USER_PRESENT = "user_present";
@SerializedName(SERIALIZED_NAME_USER_PRESENT)
private Boolean userPresent;
public static final String SERIALIZED_NAME_WITH_GUARANTEE = "with_guarantee";
@SerializedName(SERIALIZED_NAME_WITH_GUARANTEE)
private Boolean withGuarantee = true;
public static final String SERIALIZED_NAME_REQUEST_GUARANTEE = "request_guarantee";
@SerializedName(SERIALIZED_NAME_REQUEST_GUARANTEE)
private Boolean requestGuarantee;
public static final String SERIALIZED_NAME_BEACON_SESSION_ID = "beacon_session_id";
@SerializedName(SERIALIZED_NAME_BEACON_SESSION_ID)
private String beaconSessionId;
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_CREDIT_FUNDS_SOURCE = "credit_funds_source";
@SerializedName(SERIALIZED_NAME_CREDIT_FUNDS_SOURCE)
private TransferCreditFundsSource creditFundsSource;
public static final String SERIALIZED_NAME_TEST_CLOCK_ID = "test_clock_id";
@SerializedName(SERIALIZED_NAME_TEST_CLOCK_ID)
private String testClockId;
public static final String SERIALIZED_NAME_RULESET_KEY = "ruleset_key";
@SerializedName(SERIALIZED_NAME_RULESET_KEY)
private String rulesetKey;
public TransferAuthorizationCreateRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public TransferAuthorizationCreateRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public TransferAuthorizationCreateRequest accessToken(String accessToken) {
this.accessToken = accessToken;
return this;
}
/**
* The Plaid `access_token` for the account that will be debited or credited.
* @return accessToken
**/
@ApiModelProperty(required = true, value = "The Plaid `access_token` for the account that will be debited or credited.")
public String getAccessToken() {
return accessToken;
}
public void setAccessToken(String accessToken) {
this.accessToken = accessToken;
}
public TransferAuthorizationCreateRequest accountId(String accountId) {
this.accountId = accountId;
return this;
}
/**
* The Plaid `account_id` corresponding to the end-user account that will be debited or credited.
* @return accountId
**/
@ApiModelProperty(required = true, value = "The Plaid `account_id` corresponding to the end-user account that will be debited or credited.")
public String getAccountId() {
return accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public TransferAuthorizationCreateRequest fundingAccountId(String fundingAccountId) {
this.fundingAccountId = fundingAccountId;
return this;
}
/**
* Specify the account used to fund the transfer. Should be specified if using legacy funding methods only. If using Plaid Ledger, leave this field blank. Customers can find a list of `funding_account_id`s in the Accounts page of your Plaid Dashboard, under the \"Account ID\" column. If this field is left blank and you are using legacy funding methods, this will default to the default `funding_account_id` specified during onboarding. Otherwise, Plaid Ledger will be used.
* @return fundingAccountId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Specify the account used to fund the transfer. Should be specified if using legacy funding methods only. If using Plaid Ledger, leave this field blank. Customers can find a list of `funding_account_id`s in the Accounts page of your Plaid Dashboard, under the \"Account ID\" column. If this field is left blank and you are using legacy funding methods, this will default to the default `funding_account_id` specified during onboarding. Otherwise, Plaid Ledger will be used.")
public String getFundingAccountId() {
return fundingAccountId;
}
public void setFundingAccountId(String fundingAccountId) {
this.fundingAccountId = fundingAccountId;
}
public TransferAuthorizationCreateRequest ledgerId(String ledgerId) {
this.ledgerId = ledgerId;
return this;
}
/**
* Specify which ledger balance should be used to fund the transfer. You can find a list of `ledger_id`s in the Accounts page of your Plaid Dashboard. If this field is left blank, this will default to id of the default ledger balance.
* @return ledgerId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Specify which ledger balance should be used to fund the transfer. You can find a list of `ledger_id`s in the Accounts page of your Plaid Dashboard. If this field is left blank, this will default to id of the default ledger balance.")
public String getLedgerId() {
return ledgerId;
}
public void setLedgerId(String ledgerId) {
this.ledgerId = ledgerId;
}
public TransferAuthorizationCreateRequest paymentProfileToken(String paymentProfileToken) {
this.paymentProfileToken = paymentProfileToken;
return this;
}
/**
* The payment profile token associated with the Payment Profile that will be debited or credited. Required if not using `access_token`.
* @return paymentProfileToken
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The payment profile token associated with the Payment Profile that will be debited or credited. Required if not using `access_token`.")
public String getPaymentProfileToken() {
return paymentProfileToken;
}
public void setPaymentProfileToken(String paymentProfileToken) {
this.paymentProfileToken = paymentProfileToken;
}
public TransferAuthorizationCreateRequest type(TransferType type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
**/
@ApiModelProperty(required = true, value = "")
public TransferType getType() {
return type;
}
public void setType(TransferType type) {
this.type = type;
}
public TransferAuthorizationCreateRequest network(TransferNetwork network) {
this.network = network;
return this;
}
/**
* Get network
* @return network
**/
@ApiModelProperty(required = true, value = "")
public TransferNetwork getNetwork() {
return network;
}
public void setNetwork(TransferNetwork network) {
this.network = network;
}
public TransferAuthorizationCreateRequest amount(String amount) {
this.amount = amount;
return this;
}
/**
* The amount of the transfer (decimal string with two digits of precision e.g. \"10.00\"). When calling `/transfer/authorization/create`, specify the maximum amount to authorize. When calling `/transfer/create`, specify the exact amount of the transfer, up to a maximum of the amount authorized. If this field is left blank when calling `/transfer/create`, the maximum amount authorized in the `authorization_id` will be sent.
* @return amount
**/
@ApiModelProperty(required = true, value = "The amount of the transfer (decimal string with two digits of precision e.g. \"10.00\"). When calling `/transfer/authorization/create`, specify the maximum amount to authorize. When calling `/transfer/create`, specify the exact amount of the transfer, up to a maximum of the amount authorized. If this field is left blank when calling `/transfer/create`, the maximum amount authorized in the `authorization_id` will be sent.")
public String getAmount() {
return amount;
}
public void setAmount(String amount) {
this.amount = amount;
}
public TransferAuthorizationCreateRequest achClass(ACHClass achClass) {
this.achClass = achClass;
return this;
}
/**
* Get achClass
* @return achClass
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public ACHClass getAchClass() {
return achClass;
}
public void setAchClass(ACHClass achClass) {
this.achClass = achClass;
}
public TransferAuthorizationCreateRequest wireDetails(TransferWireDetails wireDetails) {
this.wireDetails = wireDetails;
return this;
}
/**
* Get wireDetails
* @return wireDetails
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public TransferWireDetails getWireDetails() {
return wireDetails;
}
public void setWireDetails(TransferWireDetails wireDetails) {
this.wireDetails = wireDetails;
}
public TransferAuthorizationCreateRequest user(TransferAuthorizationUserInRequest user) {
this.user = user;
return this;
}
/**
* Get user
* @return user
**/
@ApiModelProperty(required = true, value = "")
public TransferAuthorizationUserInRequest getUser() {
return user;
}
public void setUser(TransferAuthorizationUserInRequest user) {
this.user = user;
}
public TransferAuthorizationCreateRequest device(TransferAuthorizationDevice device) {
this.device = device;
return this;
}
/**
* Get device
* @return device
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public TransferAuthorizationDevice getDevice() {
return device;
}
public void setDevice(TransferAuthorizationDevice device) {
this.device = device;
}
public TransferAuthorizationCreateRequest originationAccountId(String originationAccountId) {
this.originationAccountId = originationAccountId;
return this;
}
/**
* Plaid's unique identifier for the origination account for this authorization. If not specified, the default account will be used.
* @return originationAccountId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Plaid's unique identifier for the origination account for this authorization. If not specified, the default account will be used.")
public String getOriginationAccountId() {
return originationAccountId;
}
public void setOriginationAccountId(String originationAccountId) {
this.originationAccountId = originationAccountId;
}
public TransferAuthorizationCreateRequest isoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
return this;
}
/**
* The currency of the transfer amount. The default value is \"USD\".
* @return isoCurrencyCode
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The currency of the transfer amount. The default value is \"USD\".")
public String getIsoCurrencyCode() {
return isoCurrencyCode;
}
public void setIsoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
}
public TransferAuthorizationCreateRequest idempotencyKey(String idempotencyKey) {
this.idempotencyKey = idempotencyKey;
return this;
}
/**
* A random key provided by the client, per unique authorization, which expires after 48 hours. Maximum of 50 characters. The API supports idempotency for safely retrying requests without accidentally performing the same operation twice. For example, if a request to create an authorization fails due to a network connection error, you can retry the request with the same idempotency key to guarantee that only a single authorization is created. Idempotency does not apply to authorizations whose decisions are `user_action_required`. Therefore you may re-attempt the authorization after completing the required user action without changing `idempotency_key`. This idempotency key expires after 48 hours, after which the same key can be reused. Failure to provide this key may result in duplicate charges.
* @return idempotencyKey
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A random key provided by the client, per unique authorization, which expires after 48 hours. Maximum of 50 characters. The API supports idempotency for safely retrying requests without accidentally performing the same operation twice. For example, if a request to create an authorization fails due to a network connection error, you can retry the request with the same idempotency key to guarantee that only a single authorization is created. Idempotency does not apply to authorizations whose decisions are `user_action_required`. Therefore you may re-attempt the authorization after completing the required user action without changing `idempotency_key`. This idempotency key expires after 48 hours, after which the same key can be reused. Failure to provide this key may result in duplicate charges.")
public String getIdempotencyKey() {
return idempotencyKey;
}
public void setIdempotencyKey(String idempotencyKey) {
this.idempotencyKey = idempotencyKey;
}
public TransferAuthorizationCreateRequest userPresent(Boolean userPresent) {
this.userPresent = userPresent;
return this;
}
/**
* If the end user is initiating the specific transfer themselves via an interactive UI, this should be `true`; for automatic recurring payments where the end user is not actually initiating each individual transfer, it should be `false`. This field is not currently used and is present to support planned future functionality.
* @return userPresent
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "If the end user is initiating the specific transfer themselves via an interactive UI, this should be `true`; for automatic recurring payments where the end user is not actually initiating each individual transfer, it should be `false`. This field is not currently used and is present to support planned future functionality.")
public Boolean getUserPresent() {
return userPresent;
}
public void setUserPresent(Boolean userPresent) {
this.userPresent = userPresent;
}
public TransferAuthorizationCreateRequest withGuarantee(Boolean withGuarantee) {
this.withGuarantee = withGuarantee;
return this;
}
/**
* If set to `false`, Plaid will not offer a `guarantee_decision` for this request (Guarantee customers only). This field is deprecated in favor for `guarantee`.
* @return withGuarantee
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "If set to `false`, Plaid will not offer a `guarantee_decision` for this request (Guarantee customers only). This field is deprecated in favor for `guarantee`.")
public Boolean getWithGuarantee() {
return withGuarantee;
}
public void setWithGuarantee(Boolean withGuarantee) {
this.withGuarantee = withGuarantee;
}
public TransferAuthorizationCreateRequest requestGuarantee(Boolean requestGuarantee) {
this.requestGuarantee = requestGuarantee;
return this;
}
/**
* Indicates whether the transfer should be evaluated for guarantee coverage. When set to `true`, Plaid assesses the transfer for guarantee coverage and returns a decision in the authorization response. When omitted or set to `false`, the authorization is evaluated without guarantee coverage.
* @return requestGuarantee
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Indicates whether the transfer should be evaluated for guarantee coverage. When set to `true`, Plaid assesses the transfer for guarantee coverage and returns a decision in the authorization response. When omitted or set to `false`, the authorization is evaluated without guarantee coverage.")
public Boolean getRequestGuarantee() {
return requestGuarantee;
}
public void setRequestGuarantee(Boolean requestGuarantee) {
this.requestGuarantee = requestGuarantee;
}
public TransferAuthorizationCreateRequest beaconSessionId(String beaconSessionId) {
this.beaconSessionId = beaconSessionId;
return this;
}
/**
* The unique identifier returned by Plaid's [beacon](https://plaid.com/docs/transfer/guarantee/#using-a-beacon) when it is run on your webpage.
* @return beaconSessionId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The unique identifier returned by Plaid's [beacon](https://plaid.com/docs/transfer/guarantee/#using-a-beacon) when it is run on your webpage.")
public String getBeaconSessionId() {
return beaconSessionId;
}
public void setBeaconSessionId(String beaconSessionId) {
this.beaconSessionId = beaconSessionId;
}
public TransferAuthorizationCreateRequest originatorClientId(String originatorClientId) {
this.originatorClientId = originatorClientId;
return this;
}
/**
* The Plaid client ID that is the originator of this transfer. Only needed if creating transfers on behalf of another client as a [Platform customer](https://plaid.com/docs/transfer/application/#originators-vs-platforms).
* @return originatorClientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The Plaid client ID that is the originator of this transfer. Only needed if creating transfers on behalf of another client as a [Platform customer](https://plaid.com/docs/transfer/application/#originators-vs-platforms).")
public String getOriginatorClientId() {
return originatorClientId;
}
public void setOriginatorClientId(String originatorClientId) {
this.originatorClientId = originatorClientId;
}
public TransferAuthorizationCreateRequest creditFundsSource(TransferCreditFundsSource creditFundsSource) {
this.creditFundsSource = creditFundsSource;
return this;
}
/**
* Get creditFundsSource
* @return creditFundsSource
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public TransferCreditFundsSource getCreditFundsSource() {
return creditFundsSource;
}
public void setCreditFundsSource(TransferCreditFundsSource creditFundsSource) {
this.creditFundsSource = creditFundsSource;
}
public TransferAuthorizationCreateRequest testClockId(String testClockId) {
this.testClockId = testClockId;
return this;
}
/**
* Plaid’s unique identifier for a test clock. This field may only be used when using `sandbox` environment. If provided, the `authorization` is created at the `virtual_time` on the provided test clock.
* @return testClockId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Plaid’s unique identifier for a test clock. This field may only be used when using `sandbox` environment. If provided, the `authorization` is created at the `virtual_time` on the provided test clock.")
public String getTestClockId() {
return testClockId;
}
public void setTestClockId(String testClockId) {
this.testClockId = testClockId;
}
public TransferAuthorizationCreateRequest rulesetKey(String rulesetKey) {
this.rulesetKey = rulesetKey;
return this;
}
/**
* The key of the Ruleset for the transaction. This feature is currently in closed beta; to request access, contact your account manager.
* @return rulesetKey
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The key of the Ruleset for the transaction. This feature is currently in closed beta; to request access, contact your account manager.")
public String getRulesetKey() {
return rulesetKey;
}
public void setRulesetKey(String rulesetKey) {
this.rulesetKey = rulesetKey;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransferAuthorizationCreateRequest transferAuthorizationCreateRequest = (TransferAuthorizationCreateRequest) o;
return Objects.equals(this.clientId, transferAuthorizationCreateRequest.clientId) &&
Objects.equals(this.secret, transferAuthorizationCreateRequest.secret) &&
Objects.equals(this.accessToken, transferAuthorizationCreateRequest.accessToken) &&
Objects.equals(this.accountId, transferAuthorizationCreateRequest.accountId) &&
Objects.equals(this.fundingAccountId, transferAuthorizationCreateRequest.fundingAccountId) &&
Objects.equals(this.ledgerId, transferAuthorizationCreateRequest.ledgerId) &&
Objects.equals(this.paymentProfileToken, transferAuthorizationCreateRequest.paymentProfileToken) &&
Objects.equals(this.type, transferAuthorizationCreateRequest.type) &&
Objects.equals(this.network, transferAuthorizationCreateRequest.network) &&
Objects.equals(this.amount, transferAuthorizationCreateRequest.amount) &&
Objects.equals(this.achClass, transferAuthorizationCreateRequest.achClass) &&
Objects.equals(this.wireDetails, transferAuthorizationCreateRequest.wireDetails) &&
Objects.equals(this.user, transferAuthorizationCreateRequest.user) &&
Objects.equals(this.device, transferAuthorizationCreateRequest.device) &&
Objects.equals(this.originationAccountId, transferAuthorizationCreateRequest.originationAccountId) &&
Objects.equals(this.isoCurrencyCode, transferAuthorizationCreateRequest.isoCurrencyCode) &&
Objects.equals(this.idempotencyKey, transferAuthorizationCreateRequest.idempotencyKey) &&
Objects.equals(this.userPresent, transferAuthorizationCreateRequest.userPresent) &&
Objects.equals(this.withGuarantee, transferAuthorizationCreateRequest.withGuarantee) &&
Objects.equals(this.requestGuarantee, transferAuthorizationCreateRequest.requestGuarantee) &&
Objects.equals(this.beaconSessionId, transferAuthorizationCreateRequest.beaconSessionId) &&
Objects.equals(this.originatorClientId, transferAuthorizationCreateRequest.originatorClientId) &&
Objects.equals(this.creditFundsSource, transferAuthorizationCreateRequest.creditFundsSource) &&
Objects.equals(this.testClockId, transferAuthorizationCreateRequest.testClockId) &&
Objects.equals(this.rulesetKey, transferAuthorizationCreateRequest.rulesetKey);
}
@Override
public int hashCode() {
return Objects.hash(clientId, secret, accessToken, accountId, fundingAccountId, ledgerId, paymentProfileToken, type, network, amount, achClass, wireDetails, user, device, originationAccountId, isoCurrencyCode, idempotencyKey, userPresent, withGuarantee, requestGuarantee, beaconSessionId, originatorClientId, creditFundsSource, testClockId, rulesetKey);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransferAuthorizationCreateRequest {\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n");
sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
sb.append(" fundingAccountId: ").append(toIndentedString(fundingAccountId)).append("\n");
sb.append(" ledgerId: ").append(toIndentedString(ledgerId)).append("\n");
sb.append(" paymentProfileToken: ").append(toIndentedString(paymentProfileToken)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" network: ").append(toIndentedString(network)).append("\n");
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
sb.append(" achClass: ").append(toIndentedString(achClass)).append("\n");
sb.append(" wireDetails: ").append(toIndentedString(wireDetails)).append("\n");
sb.append(" user: ").append(toIndentedString(user)).append("\n");
sb.append(" device: ").append(toIndentedString(device)).append("\n");
sb.append(" originationAccountId: ").append(toIndentedString(originationAccountId)).append("\n");
sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n");
sb.append(" idempotencyKey: ").append(toIndentedString(idempotencyKey)).append("\n");
sb.append(" userPresent: ").append(toIndentedString(userPresent)).append("\n");
sb.append(" withGuarantee: ").append(toIndentedString(withGuarantee)).append("\n");
sb.append(" requestGuarantee: ").append(toIndentedString(requestGuarantee)).append("\n");
sb.append(" beaconSessionId: ").append(toIndentedString(beaconSessionId)).append("\n");
sb.append(" originatorClientId: ").append(toIndentedString(originatorClientId)).append("\n");
sb.append(" creditFundsSource: ").append(toIndentedString(creditFundsSource)).append("\n");
sb.append(" testClockId: ").append(toIndentedString(testClockId)).append("\n");
sb.append(" rulesetKey: ").append(toIndentedString(rulesetKey)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewCreateRequest.java | src/main/java/com/plaid/client/model/WatchlistScreeningIndividualReviewCreateRequest.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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;
/**
* Request input for creating a screening review
*/
@ApiModel(description = "Request input for creating a screening review")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class WatchlistScreeningIndividualReviewCreateRequest {
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_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_WATCHLIST_SCREENING_ID = "watchlist_screening_id";
@SerializedName(SERIALIZED_NAME_WATCHLIST_SCREENING_ID)
private String watchlistScreeningId;
public WatchlistScreeningIndividualReviewCreateRequest confirmedHits(List<String> confirmedHits) {
this.confirmedHits = confirmedHits;
return this;
}
public WatchlistScreeningIndividualReviewCreateRequest addConfirmedHitsItem(String confirmedHitsItem) {
this.confirmedHits.add(confirmedHitsItem);
return this;
}
/**
* Hits to mark 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 to mark 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 WatchlistScreeningIndividualReviewCreateRequest dismissedHits(List<String> dismissedHits) {
this.dismissedHits = dismissedHits;
return this;
}
public WatchlistScreeningIndividualReviewCreateRequest addDismissedHitsItem(String dismissedHitsItem) {
this.dismissedHits.add(dismissedHitsItem);
return this;
}
/**
* Hits to mark 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 to mark 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 WatchlistScreeningIndividualReviewCreateRequest 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.", 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 WatchlistScreeningIndividualReviewCreateRequest clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public WatchlistScreeningIndividualReviewCreateRequest secret(String secret) {
this.secret = secret;
return this;
}
/**
* Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
* @return secret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.")
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public WatchlistScreeningIndividualReviewCreateRequest 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;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
WatchlistScreeningIndividualReviewCreateRequest watchlistScreeningIndividualReviewCreateRequest = (WatchlistScreeningIndividualReviewCreateRequest) o;
return Objects.equals(this.confirmedHits, watchlistScreeningIndividualReviewCreateRequest.confirmedHits) &&
Objects.equals(this.dismissedHits, watchlistScreeningIndividualReviewCreateRequest.dismissedHits) &&
Objects.equals(this.comment, watchlistScreeningIndividualReviewCreateRequest.comment) &&
Objects.equals(this.clientId, watchlistScreeningIndividualReviewCreateRequest.clientId) &&
Objects.equals(this.secret, watchlistScreeningIndividualReviewCreateRequest.secret) &&
Objects.equals(this.watchlistScreeningId, watchlistScreeningIndividualReviewCreateRequest.watchlistScreeningId);
}
@Override
public int hashCode() {
return Objects.hash(confirmedHits, dismissedHits, comment, clientId, secret, watchlistScreeningId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class WatchlistScreeningIndividualReviewCreateRequest {\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(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).append("\n");
sb.append(" watchlistScreeningId: ").append(toIndentedString(watchlistScreeningId)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/W2Box12.java | src/main/java/com/plaid/client/model/W2Box12.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Data on the W2 Box 12
*/
@ApiModel(description = "Data on the W2 Box 12")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class W2Box12 {
public static final String SERIALIZED_NAME_CODE = "code";
@SerializedName(SERIALIZED_NAME_CODE)
private String code;
public static final String SERIALIZED_NAME_AMOUNT = "amount";
@SerializedName(SERIALIZED_NAME_AMOUNT)
private String amount;
public W2Box12 code(String code) {
this.code = code;
return this;
}
/**
* W2 Box 12 code.
* @return code
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "W2 Box 12 code.")
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public W2Box12 amount(String amount) {
this.amount = amount;
return this;
}
/**
* W2 Box 12 amount.
* @return amount
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "W2 Box 12 amount.")
public String getAmount() {
return amount;
}
public void setAmount(String amount) {
this.amount = amount;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
W2Box12 w2Box12 = (W2Box12) o;
return Objects.equals(this.code, w2Box12.code) &&
Objects.equals(this.amount, w2Box12.amount);
}
@Override
public int hashCode() {
return Objects.hash(code, amount);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class W2Box12 {\n");
sb.append(" code: ").append(toIndentedString(code)).append("\n");
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/IssuingCountry.java | src/main/java/com/plaid/client/model/IssuingCountry.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* 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 binary match indicator specifying whether the country that issued the provided document matches the country that the user separately provided to Plaid. Note: You can configure whether a `no_match` on `issuing_country` fails the `documentary_verification` by editing your Plaid Template.
*/
@JsonAdapter(IssuingCountry.Adapter.class)
public enum IssuingCountry {
MATCH("match"),
NO_MATCH("no_match"),
// 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;
IssuingCountry(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static IssuingCountry fromValue(String value) {
for (IssuingCountry b : IssuingCountry.values()) {
if (b.value.equals(value)) {
return b;
}
}
return IssuingCountry.ENUM_UNKNOWN;
}
public static class Adapter extends TypeAdapter<IssuingCountry> {
@Override
public void write(final JsonWriter jsonWriter, final IssuingCountry enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public IssuingCountry read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return IssuingCountry.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/BankTransferFailure.java | src/main/java/com/plaid/client/model/BankTransferFailure.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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 failure reason if the type of this transfer is `\"failed\"` or `\"reversed\"`. Null value otherwise.
*/
@ApiModel(description = "The failure reason if the type of this transfer is `\"failed\"` or `\"reversed\"`. Null value otherwise.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class BankTransferFailure {
public static final String SERIALIZED_NAME_ACH_RETURN_CODE = "ach_return_code";
@SerializedName(SERIALIZED_NAME_ACH_RETURN_CODE)
private String achReturnCode;
public static final String SERIALIZED_NAME_DESCRIPTION = "description";
@SerializedName(SERIALIZED_NAME_DESCRIPTION)
private String description;
public BankTransferFailure achReturnCode(String achReturnCode) {
this.achReturnCode = achReturnCode;
return this;
}
/**
* The ACH return code, e.g. `R01`. A return code will be provided if and only if the transfer status is `reversed`. For a full listing of ACH return codes, see [Bank Transfers errors](https://plaid.com/docs/errors/bank-transfers/#ach-return-codes).
* @return achReturnCode
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The ACH return code, e.g. `R01`. A return code will be provided if and only if the transfer status is `reversed`. For a full listing of ACH return codes, see [Bank Transfers errors](https://plaid.com/docs/errors/bank-transfers/#ach-return-codes).")
public String getAchReturnCode() {
return achReturnCode;
}
public void setAchReturnCode(String achReturnCode) {
this.achReturnCode = achReturnCode;
}
public BankTransferFailure description(String description) {
this.description = description;
return this;
}
/**
* A human-readable description of the reason for the failure or reversal.
* @return description
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A human-readable description of the reason for the failure or reversal.")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BankTransferFailure bankTransferFailure = (BankTransferFailure) o;
return Objects.equals(this.achReturnCode, bankTransferFailure.achReturnCode) &&
Objects.equals(this.description, bankTransferFailure.description);
}
@Override
public int hashCode() {
return Objects.hash(achReturnCode, description);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BankTransferFailure {\n");
sb.append(" achReturnCode: ").append(toIndentedString(achReturnCode)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CreditBankIncomeHistoricalSummary.java | src/main/java/com/plaid/client/model/CreditBankIncomeHistoricalSummary.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.CreditAmountWithCurrency;
import com.plaid.client.model.CreditBankIncomeTransaction;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.time.LocalDate;
import java.util.ArrayList;
import java.util.List;
/**
* The end user's monthly summary for the income source(s).
*/
@ApiModel(description = "The end user's monthly summary for the income source(s).")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CreditBankIncomeHistoricalSummary {
public static final String SERIALIZED_NAME_TOTAL_AMOUNT = "total_amount";
@SerializedName(SERIALIZED_NAME_TOTAL_AMOUNT)
private Double totalAmount;
public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code";
@SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE)
private String isoCurrencyCode;
public static final String SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE = "unofficial_currency_code";
@SerializedName(SERIALIZED_NAME_UNOFFICIAL_CURRENCY_CODE)
private String unofficialCurrencyCode;
public static final String SERIALIZED_NAME_TOTAL_AMOUNTS = "total_amounts";
@SerializedName(SERIALIZED_NAME_TOTAL_AMOUNTS)
private List<CreditAmountWithCurrency> totalAmounts = null;
public static final String SERIALIZED_NAME_START_DATE = "start_date";
@SerializedName(SERIALIZED_NAME_START_DATE)
private LocalDate startDate;
public static final String SERIALIZED_NAME_END_DATE = "end_date";
@SerializedName(SERIALIZED_NAME_END_DATE)
private LocalDate endDate;
public static final String SERIALIZED_NAME_TRANSACTIONS = "transactions";
@SerializedName(SERIALIZED_NAME_TRANSACTIONS)
private List<CreditBankIncomeTransaction> transactions = null;
public CreditBankIncomeHistoricalSummary totalAmount(Double totalAmount) {
this.totalAmount = totalAmount;
return this;
}
/**
* Total amount of earnings for the income source(s) of the user for the month in the summary. This may return an incorrect value if the summary includes income sources in multiple currencies. Please use [`total_amounts`](https://plaid.com/docs/api/products/income/#credit-bank_income-get-response-bank-income-items-bank-income-sources-historical-summary-total-amounts) instead.
* @return totalAmount
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Total amount of earnings for the income source(s) of the user for the month in the summary. This may return an incorrect value if the summary includes income sources in multiple currencies. Please use [`total_amounts`](https://plaid.com/docs/api/products/income/#credit-bank_income-get-response-bank-income-items-bank-income-sources-historical-summary-total-amounts) instead.")
public Double getTotalAmount() {
return totalAmount;
}
public void setTotalAmount(Double totalAmount) {
this.totalAmount = totalAmount;
}
public CreditBankIncomeHistoricalSummary isoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
return this;
}
/**
* The ISO 4217 currency code of the amount or balance. Please use [`total_amounts`](https://plaid.com/docs/api/products/income/#credit-bank_income-get-response-bank-income-items-bank-income-sources-historical-summary-total-amounts) instead.
* @return isoCurrencyCode
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The ISO 4217 currency code of the amount or balance. Please use [`total_amounts`](https://plaid.com/docs/api/products/income/#credit-bank_income-get-response-bank-income-items-bank-income-sources-historical-summary-total-amounts) instead.")
public String getIsoCurrencyCode() {
return isoCurrencyCode;
}
public void setIsoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
}
public CreditBankIncomeHistoricalSummary unofficialCurrencyCode(String unofficialCurrencyCode) {
this.unofficialCurrencyCode = unofficialCurrencyCode;
return this;
}
/**
* 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. Please use [`total_amounts`](https://plaid.com/docs/api/products/income/#credit-bank_income-get-response-bank-income-items-bank-income-sources-historical-summary-total-amounts) instead.
* @return unofficialCurrencyCode
**/
@javax.annotation.Nullable
@ApiModelProperty(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. Please use [`total_amounts`](https://plaid.com/docs/api/products/income/#credit-bank_income-get-response-bank-income-items-bank-income-sources-historical-summary-total-amounts) instead.")
public String getUnofficialCurrencyCode() {
return unofficialCurrencyCode;
}
public void setUnofficialCurrencyCode(String unofficialCurrencyCode) {
this.unofficialCurrencyCode = unofficialCurrencyCode;
}
public CreditBankIncomeHistoricalSummary totalAmounts(List<CreditAmountWithCurrency> totalAmounts) {
this.totalAmounts = totalAmounts;
return this;
}
public CreditBankIncomeHistoricalSummary addTotalAmountsItem(CreditAmountWithCurrency totalAmountsItem) {
if (this.totalAmounts == null) {
this.totalAmounts = new ArrayList<>();
}
this.totalAmounts.add(totalAmountsItem);
return this;
}
/**
* Total amount of earnings for the income source(s) of the user for the month in the summary. This can contain multiple amounts, with each amount denominated in one unique currency.
* @return totalAmounts
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Total amount of earnings for the income source(s) of the user for the month in the summary. This can contain multiple amounts, with each amount denominated in one unique currency.")
public List<CreditAmountWithCurrency> getTotalAmounts() {
return totalAmounts;
}
public void setTotalAmounts(List<CreditAmountWithCurrency> totalAmounts) {
this.totalAmounts = totalAmounts;
}
public CreditBankIncomeHistoricalSummary startDate(LocalDate startDate) {
this.startDate = startDate;
return this;
}
/**
* The start date of the period covered in this monthly summary. This date will be the first day of the month, unless the month being covered is a partial month because it is the first month included in the summary and the date range being requested does not begin with the first day of the month. The date will be returned in an ISO 8601 format (YYYY-MM-DD).
* @return startDate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The start date of the period covered in this monthly summary. This date will be the first day of the month, unless the month being covered is a partial month because it is the first month included in the summary and the date range being requested does not begin with the first day of the month. The date will be returned in an ISO 8601 format (YYYY-MM-DD).")
public LocalDate getStartDate() {
return startDate;
}
public void setStartDate(LocalDate startDate) {
this.startDate = startDate;
}
public CreditBankIncomeHistoricalSummary endDate(LocalDate endDate) {
this.endDate = endDate;
return this;
}
/**
* The end date of the period included in this monthly summary. This date will be the last day of the month, unless the month being covered is a partial month because it is the last month included in the summary and the date range being requested does not end with the last day of the month. The date will be returned in an ISO 8601 format (YYYY-MM-DD).
* @return endDate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The end date of the period included in this monthly summary. This date will be the last day of the month, unless the month being covered is a partial month because it is the last month included in the summary and the date range being requested does not end with the last day of the month. The date will be returned in an ISO 8601 format (YYYY-MM-DD).")
public LocalDate getEndDate() {
return endDate;
}
public void setEndDate(LocalDate endDate) {
this.endDate = endDate;
}
public CreditBankIncomeHistoricalSummary transactions(List<CreditBankIncomeTransaction> transactions) {
this.transactions = transactions;
return this;
}
public CreditBankIncomeHistoricalSummary addTransactionsItem(CreditBankIncomeTransaction transactionsItem) {
if (this.transactions == null) {
this.transactions = new ArrayList<>();
}
this.transactions.add(transactionsItem);
return this;
}
/**
* Get transactions
* @return transactions
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public List<CreditBankIncomeTransaction> getTransactions() {
return transactions;
}
public void setTransactions(List<CreditBankIncomeTransaction> transactions) {
this.transactions = transactions;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreditBankIncomeHistoricalSummary creditBankIncomeHistoricalSummary = (CreditBankIncomeHistoricalSummary) o;
return Objects.equals(this.totalAmount, creditBankIncomeHistoricalSummary.totalAmount) &&
Objects.equals(this.isoCurrencyCode, creditBankIncomeHistoricalSummary.isoCurrencyCode) &&
Objects.equals(this.unofficialCurrencyCode, creditBankIncomeHistoricalSummary.unofficialCurrencyCode) &&
Objects.equals(this.totalAmounts, creditBankIncomeHistoricalSummary.totalAmounts) &&
Objects.equals(this.startDate, creditBankIncomeHistoricalSummary.startDate) &&
Objects.equals(this.endDate, creditBankIncomeHistoricalSummary.endDate) &&
Objects.equals(this.transactions, creditBankIncomeHistoricalSummary.transactions);
}
@Override
public int hashCode() {
return Objects.hash(totalAmount, isoCurrencyCode, unofficialCurrencyCode, totalAmounts, startDate, endDate, transactions);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreditBankIncomeHistoricalSummary {\n");
sb.append(" totalAmount: ").append(toIndentedString(totalAmount)).append("\n");
sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n");
sb.append(" unofficialCurrencyCode: ").append(toIndentedString(unofficialCurrencyCode)).append("\n");
sb.append(" totalAmounts: ").append(toIndentedString(totalAmounts)).append("\n");
sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n");
sb.append(" endDate: ").append(toIndentedString(endDate)).append("\n");
sb.append(" transactions: ").append(toIndentedString(transactions)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/PaymentProfileGetResponse.java | src/main/java/com/plaid/client/model/PaymentProfileGetResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.PaymentProfileStatus;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.time.OffsetDateTime;
/**
* PaymentProfileGetResponse defines the response schema for `/payment_profile/get`
*/
@ApiModel(description = "PaymentProfileGetResponse defines the response schema for `/payment_profile/get`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class PaymentProfileGetResponse {
public static final String SERIALIZED_NAME_UPDATED_AT = "updated_at";
@SerializedName(SERIALIZED_NAME_UPDATED_AT)
private OffsetDateTime updatedAt;
public static final String SERIALIZED_NAME_CREATED_AT = "created_at";
@SerializedName(SERIALIZED_NAME_CREATED_AT)
private OffsetDateTime createdAt;
public static final String SERIALIZED_NAME_DELETED_AT = "deleted_at";
@SerializedName(SERIALIZED_NAME_DELETED_AT)
private OffsetDateTime deletedAt;
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private PaymentProfileStatus status;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public PaymentProfileGetResponse updatedAt(OffsetDateTime updatedAt) {
this.updatedAt = updatedAt;
return this;
}
/**
* Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the last time the given Payment Profile was updated at
* @return updatedAt
**/
@ApiModelProperty(required = true, value = "Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the last time the given Payment Profile was updated at")
public OffsetDateTime getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(OffsetDateTime updatedAt) {
this.updatedAt = updatedAt;
}
public PaymentProfileGetResponse createdAt(OffsetDateTime createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the time the given Payment Profile was created at
* @return createdAt
**/
@ApiModelProperty(required = true, value = "Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the time the given Payment Profile was created at")
public OffsetDateTime getCreatedAt() {
return createdAt;
}
public void setCreatedAt(OffsetDateTime createdAt) {
this.createdAt = createdAt;
}
public PaymentProfileGetResponse deletedAt(OffsetDateTime deletedAt) {
this.deletedAt = deletedAt;
return this;
}
/**
* Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the time the given Payment Profile was deleted at. Always `null` if the Payment Profile has not been deleted
* @return deletedAt
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the time the given Payment Profile was deleted at. Always `null` if the Payment Profile has not been deleted")
public OffsetDateTime getDeletedAt() {
return deletedAt;
}
public void setDeletedAt(OffsetDateTime deletedAt) {
this.deletedAt = deletedAt;
}
public PaymentProfileGetResponse status(PaymentProfileStatus status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@ApiModelProperty(required = true, value = "")
public PaymentProfileStatus getStatus() {
return status;
}
public void setStatus(PaymentProfileStatus status) {
this.status = status;
}
public PaymentProfileGetResponse 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;
}
PaymentProfileGetResponse paymentProfileGetResponse = (PaymentProfileGetResponse) o;
return Objects.equals(this.updatedAt, paymentProfileGetResponse.updatedAt) &&
Objects.equals(this.createdAt, paymentProfileGetResponse.createdAt) &&
Objects.equals(this.deletedAt, paymentProfileGetResponse.deletedAt) &&
Objects.equals(this.status, paymentProfileGetResponse.status) &&
Objects.equals(this.requestId, paymentProfileGetResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(updatedAt, createdAt, deletedAt, status, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PaymentProfileGetResponse {\n");
sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).append("\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" deletedAt: ").append(toIndentedString(deletedAt)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/CraPartnerInsightsItemAccount.java | src/main/java/com/plaid/client/model/CraPartnerInsightsItemAccount.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.CraPartnerInsightsItemAccountMetadata;
import com.plaid.client.model.CreditBankIncomeAccountType;
import com.plaid.client.model.DepositoryAccountSubtype;
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;
/**
* Account data corresponding to the item from which Partner Insights were generated from
*/
@ApiModel(description = "Account data corresponding to the item from which Partner Insights were generated from")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CraPartnerInsightsItemAccount {
public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
private String accountId;
public static final String SERIALIZED_NAME_MASK = "mask";
@SerializedName(SERIALIZED_NAME_MASK)
private String mask;
public static final String SERIALIZED_NAME_METADATA = "metadata";
@SerializedName(SERIALIZED_NAME_METADATA)
private CraPartnerInsightsItemAccountMetadata metadata;
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_SUBTYPE = "subtype";
@SerializedName(SERIALIZED_NAME_SUBTYPE)
private DepositoryAccountSubtype subtype;
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
private CreditBankIncomeAccountType type;
public static final String SERIALIZED_NAME_OWNERS = "owners";
@SerializedName(SERIALIZED_NAME_OWNERS)
private List<Owner> owners = new ArrayList<>();
public CraPartnerInsightsItemAccount accountId(String accountId) {
this.accountId = accountId;
return this;
}
/**
* Plaid's unique identifier for the account. This value will not change unless Plaid can't reconcile the account with the data returned by the financial institution. This may occur, for example, when the name of the account changes. If this happens a new `account_id` will be assigned to the account. If an account with a specific `account_id` disappears instead of changing, the account is likely closed. Closed accounts are not returned by the Plaid API. Like all Plaid identifiers, the `account_id` is case sensitive.
* @return accountId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Plaid's unique identifier for the account. This value will not change unless Plaid can't reconcile the account with the data returned by the financial institution. This may occur, for example, when the name of the account changes. If this happens a new `account_id` will be assigned to the account. If an account with a specific `account_id` disappears instead of changing, the account is likely closed. Closed accounts are not returned by the Plaid API. Like all Plaid identifiers, the `account_id` is case sensitive.")
public String getAccountId() {
return accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public CraPartnerInsightsItemAccount mask(String mask) {
this.mask = mask;
return this;
}
/**
* The last 2-4 alphanumeric characters of an account's official account number. Note that the mask may be non-unique between an Item's accounts, and it may also not match the mask that the bank displays to the user.
* @return mask
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The last 2-4 alphanumeric characters of an account's official account number. Note that the mask may be non-unique between an Item's accounts, and it may also not match the mask that the bank displays to the user.")
public String getMask() {
return mask;
}
public void setMask(String mask) {
this.mask = mask;
}
public CraPartnerInsightsItemAccount metadata(CraPartnerInsightsItemAccountMetadata metadata) {
this.metadata = metadata;
return this;
}
/**
* Get metadata
* @return metadata
**/
@ApiModelProperty(required = true, value = "")
public CraPartnerInsightsItemAccountMetadata getMetadata() {
return metadata;
}
public void setMetadata(CraPartnerInsightsItemAccountMetadata metadata) {
this.metadata = metadata;
}
public CraPartnerInsightsItemAccount name(String name) {
this.name = name;
return this;
}
/**
* The name of the account
* @return name
**/
@ApiModelProperty(required = true, value = "The name of the account")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public CraPartnerInsightsItemAccount officialName(String officialName) {
this.officialName = officialName;
return this;
}
/**
* The official name of the bank account.
* @return officialName
**/
@javax.annotation.Nullable
@ApiModelProperty(required = true, value = "The official name of the bank account.")
public String getOfficialName() {
return officialName;
}
public void setOfficialName(String officialName) {
this.officialName = officialName;
}
public CraPartnerInsightsItemAccount subtype(DepositoryAccountSubtype subtype) {
this.subtype = subtype;
return this;
}
/**
* Get subtype
* @return subtype
**/
@ApiModelProperty(required = true, value = "")
public DepositoryAccountSubtype getSubtype() {
return subtype;
}
public void setSubtype(DepositoryAccountSubtype subtype) {
this.subtype = subtype;
}
public CraPartnerInsightsItemAccount type(CreditBankIncomeAccountType type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
**/
@ApiModelProperty(required = true, value = "")
public CreditBankIncomeAccountType getType() {
return type;
}
public void setType(CreditBankIncomeAccountType type) {
this.type = type;
}
public CraPartnerInsightsItemAccount owners(List<Owner> owners) {
this.owners = owners;
return this;
}
public CraPartnerInsightsItemAccount addOwnersItem(Owner ownersItem) {
this.owners.add(ownersItem);
return this;
}
/**
* Data returned by the financial institution about the account owner or owners. Identity information is optional, so field may return an empty array.
* @return owners
**/
@ApiModelProperty(required = true, value = "Data returned by the financial institution about the account owner or owners. Identity information is optional, so field may return an empty 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;
}
CraPartnerInsightsItemAccount craPartnerInsightsItemAccount = (CraPartnerInsightsItemAccount) o;
return Objects.equals(this.accountId, craPartnerInsightsItemAccount.accountId) &&
Objects.equals(this.mask, craPartnerInsightsItemAccount.mask) &&
Objects.equals(this.metadata, craPartnerInsightsItemAccount.metadata) &&
Objects.equals(this.name, craPartnerInsightsItemAccount.name) &&
Objects.equals(this.officialName, craPartnerInsightsItemAccount.officialName) &&
Objects.equals(this.subtype, craPartnerInsightsItemAccount.subtype) &&
Objects.equals(this.type, craPartnerInsightsItemAccount.type) &&
Objects.equals(this.owners, craPartnerInsightsItemAccount.owners);
}
@Override
public int hashCode() {
return Objects.hash(accountId, mask, metadata, name, officialName, subtype, type, owners);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CraPartnerInsightsItemAccount {\n");
sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
sb.append(" mask: ").append(toIndentedString(mask)).append("\n");
sb.append(" metadata: ").append(toIndentedString(metadata)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" officialName: ").append(toIndentedString(officialName)).append("\n");
sb.append(" subtype: ").append(toIndentedString(subtype)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\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/IncomeVerificationStatusWebhook.java | src/main/java/com/plaid/client/model/IncomeVerificationStatusWebhook.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.WebhookEnvironmentValues;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Fired when the status of an income verification instance has changed. This webhook is fired for both the Document and Payroll Income flows, but not the Bank Income flow. It will typically take several minutes for this webhook to fire after the end user has uploaded their documents in the Document Income flow.
*/
@ApiModel(description = "Fired when the status of an income verification instance has changed. This webhook is fired for both the Document and Payroll Income flows, but not the Bank Income flow. It will typically take several minutes for this webhook to fire after the end user has uploaded their documents in the Document Income flow.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class IncomeVerificationStatusWebhook {
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_VERIFICATION_STATUS = "verification_status";
@SerializedName(SERIALIZED_NAME_VERIFICATION_STATUS)
private String verificationStatus;
public static final String SERIALIZED_NAME_ENVIRONMENT = "environment";
@SerializedName(SERIALIZED_NAME_ENVIRONMENT)
private WebhookEnvironmentValues environment;
public IncomeVerificationStatusWebhook webhookType(String webhookType) {
this.webhookType = webhookType;
return this;
}
/**
* `\"INCOME\"`
* @return webhookType
**/
@ApiModelProperty(required = true, value = "`\"INCOME\"`")
public String getWebhookType() {
return webhookType;
}
public void setWebhookType(String webhookType) {
this.webhookType = webhookType;
}
public IncomeVerificationStatusWebhook webhookCode(String webhookCode) {
this.webhookCode = webhookCode;
return this;
}
/**
* `INCOME_VERIFICATION`
* @return webhookCode
**/
@ApiModelProperty(required = true, value = "`INCOME_VERIFICATION`")
public String getWebhookCode() {
return webhookCode;
}
public void setWebhookCode(String webhookCode) {
this.webhookCode = webhookCode;
}
public IncomeVerificationStatusWebhook 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 IncomeVerificationStatusWebhook userId(String userId) {
this.userId = userId;
return this;
}
/**
* The Plaid `user_id` 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 IncomeVerificationStatusWebhook verificationStatus(String verificationStatus) {
this.verificationStatus = verificationStatus;
return this;
}
/**
* `VERIFICATION_STATUS_PROCESSING_COMPLETE`: The income verification processing has completed. This indicates that the documents have been parsed successfully or that the documents were not parsable. If the user uploaded multiple documents, this webhook will fire when all documents have finished processing. Call the `/credit/payroll_income/get` endpoint and check the document metadata to see which documents were successfully parsed. `VERIFICATION_STATUS_PROCESSING_FAILED`: An unexpected internal error occurred when attempting to process the verification documentation. `VERIFICATION_STATUS_PENDING_APPROVAL`: (deprecated) The income verification has been sent to the user for review.
* @return verificationStatus
**/
@ApiModelProperty(required = true, value = "`VERIFICATION_STATUS_PROCESSING_COMPLETE`: The income verification processing has completed. This indicates that the documents have been parsed successfully or that the documents were not parsable. If the user uploaded multiple documents, this webhook will fire when all documents have finished processing. Call the `/credit/payroll_income/get` endpoint and check the document metadata to see which documents were successfully parsed. `VERIFICATION_STATUS_PROCESSING_FAILED`: An unexpected internal error occurred when attempting to process the verification documentation. `VERIFICATION_STATUS_PENDING_APPROVAL`: (deprecated) The income verification has been sent to the user for review.")
public String getVerificationStatus() {
return verificationStatus;
}
public void setVerificationStatus(String verificationStatus) {
this.verificationStatus = verificationStatus;
}
public IncomeVerificationStatusWebhook 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;
}
IncomeVerificationStatusWebhook incomeVerificationStatusWebhook = (IncomeVerificationStatusWebhook) o;
return Objects.equals(this.webhookType, incomeVerificationStatusWebhook.webhookType) &&
Objects.equals(this.webhookCode, incomeVerificationStatusWebhook.webhookCode) &&
Objects.equals(this.itemId, incomeVerificationStatusWebhook.itemId) &&
Objects.equals(this.userId, incomeVerificationStatusWebhook.userId) &&
Objects.equals(this.verificationStatus, incomeVerificationStatusWebhook.verificationStatus) &&
Objects.equals(this.environment, incomeVerificationStatusWebhook.environment);
}
@Override
public int hashCode() {
return Objects.hash(webhookType, webhookCode, itemId, userId, verificationStatus, environment);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class IncomeVerificationStatusWebhook {\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(" verificationStatus: ").append(toIndentedString(verificationStatus)).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/ExpenditureInsights.java | src/main/java/com/plaid/client/model/ExpenditureInsights.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.AmountWithCurrencyWithMonthlyAverage;
import com.plaid.client.model.ExpenditureSummary;
import com.plaid.client.model.OutlierTransactionsInsights;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Comprehensive analysis of spending patterns, categorizing expenses into essential, non-essential, and other categories.
*/
@ApiModel(description = "Comprehensive analysis of spending patterns, categorizing expenses into essential, non-essential, and other categories.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class ExpenditureInsights {
public static final String SERIALIZED_NAME_CASH_FLOW = "cash_flow";
@SerializedName(SERIALIZED_NAME_CASH_FLOW)
private AmountWithCurrencyWithMonthlyAverage cashFlow;
public static final String SERIALIZED_NAME_TOTAL_EXPENDITURE = "total_expenditure";
@SerializedName(SERIALIZED_NAME_TOTAL_EXPENDITURE)
private ExpenditureSummary totalExpenditure;
public static final String SERIALIZED_NAME_ESSENTIAL_EXPENDITURE = "essential_expenditure";
@SerializedName(SERIALIZED_NAME_ESSENTIAL_EXPENDITURE)
private ExpenditureSummary essentialExpenditure;
public static final String SERIALIZED_NAME_NON_ESSENTIAL_EXPENDITURE = "non_essential_expenditure";
@SerializedName(SERIALIZED_NAME_NON_ESSENTIAL_EXPENDITURE)
private ExpenditureSummary nonEssentialExpenditure;
public static final String SERIALIZED_NAME_OTHER = "other";
@SerializedName(SERIALIZED_NAME_OTHER)
private ExpenditureSummary other;
public static final String SERIALIZED_NAME_TRANSFERS_OUT = "transfers_out";
@SerializedName(SERIALIZED_NAME_TRANSFERS_OUT)
private ExpenditureSummary transfersOut;
public static final String SERIALIZED_NAME_OUTLIER_TRANSACTIONS = "outlier_transactions";
@SerializedName(SERIALIZED_NAME_OUTLIER_TRANSACTIONS)
private OutlierTransactionsInsights outlierTransactions;
public ExpenditureInsights cashFlow(AmountWithCurrencyWithMonthlyAverage cashFlow) {
this.cashFlow = cashFlow;
return this;
}
/**
* Net cash flow for the period (inflows minus outflows), including a monthly average.
* @return cashFlow
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Net cash flow for the period (inflows minus outflows), including a monthly average.")
public AmountWithCurrencyWithMonthlyAverage getCashFlow() {
return cashFlow;
}
public void setCashFlow(AmountWithCurrencyWithMonthlyAverage cashFlow) {
this.cashFlow = cashFlow;
}
public ExpenditureInsights totalExpenditure(ExpenditureSummary totalExpenditure) {
this.totalExpenditure = totalExpenditure;
return this;
}
/**
* Get totalExpenditure
* @return totalExpenditure
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public ExpenditureSummary getTotalExpenditure() {
return totalExpenditure;
}
public void setTotalExpenditure(ExpenditureSummary totalExpenditure) {
this.totalExpenditure = totalExpenditure;
}
public ExpenditureInsights essentialExpenditure(ExpenditureSummary essentialExpenditure) {
this.essentialExpenditure = essentialExpenditure;
return this;
}
/**
* Get essentialExpenditure
* @return essentialExpenditure
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public ExpenditureSummary getEssentialExpenditure() {
return essentialExpenditure;
}
public void setEssentialExpenditure(ExpenditureSummary essentialExpenditure) {
this.essentialExpenditure = essentialExpenditure;
}
public ExpenditureInsights nonEssentialExpenditure(ExpenditureSummary nonEssentialExpenditure) {
this.nonEssentialExpenditure = nonEssentialExpenditure;
return this;
}
/**
* Get nonEssentialExpenditure
* @return nonEssentialExpenditure
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public ExpenditureSummary getNonEssentialExpenditure() {
return nonEssentialExpenditure;
}
public void setNonEssentialExpenditure(ExpenditureSummary nonEssentialExpenditure) {
this.nonEssentialExpenditure = nonEssentialExpenditure;
}
public ExpenditureInsights other(ExpenditureSummary other) {
this.other = other;
return this;
}
/**
* Get other
* @return other
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public ExpenditureSummary getOther() {
return other;
}
public void setOther(ExpenditureSummary other) {
this.other = other;
}
public ExpenditureInsights transfersOut(ExpenditureSummary transfersOut) {
this.transfersOut = transfersOut;
return this;
}
/**
* Get transfersOut
* @return transfersOut
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public ExpenditureSummary getTransfersOut() {
return transfersOut;
}
public void setTransfersOut(ExpenditureSummary transfersOut) {
this.transfersOut = transfersOut;
}
public ExpenditureInsights outlierTransactions(OutlierTransactionsInsights outlierTransactions) {
this.outlierTransactions = outlierTransactions;
return this;
}
/**
* Get outlierTransactions
* @return outlierTransactions
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public OutlierTransactionsInsights getOutlierTransactions() {
return outlierTransactions;
}
public void setOutlierTransactions(OutlierTransactionsInsights outlierTransactions) {
this.outlierTransactions = outlierTransactions;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ExpenditureInsights expenditureInsights = (ExpenditureInsights) o;
return Objects.equals(this.cashFlow, expenditureInsights.cashFlow) &&
Objects.equals(this.totalExpenditure, expenditureInsights.totalExpenditure) &&
Objects.equals(this.essentialExpenditure, expenditureInsights.essentialExpenditure) &&
Objects.equals(this.nonEssentialExpenditure, expenditureInsights.nonEssentialExpenditure) &&
Objects.equals(this.other, expenditureInsights.other) &&
Objects.equals(this.transfersOut, expenditureInsights.transfersOut) &&
Objects.equals(this.outlierTransactions, expenditureInsights.outlierTransactions);
}
@Override
public int hashCode() {
return Objects.hash(cashFlow, totalExpenditure, essentialExpenditure, nonEssentialExpenditure, other, transfersOut, outlierTransactions);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ExpenditureInsights {\n");
sb.append(" cashFlow: ").append(toIndentedString(cashFlow)).append("\n");
sb.append(" totalExpenditure: ").append(toIndentedString(totalExpenditure)).append("\n");
sb.append(" essentialExpenditure: ").append(toIndentedString(essentialExpenditure)).append("\n");
sb.append(" nonEssentialExpenditure: ").append(toIndentedString(nonEssentialExpenditure)).append("\n");
sb.append(" other: ").append(toIndentedString(other)).append("\n");
sb.append(" transfersOut: ").append(toIndentedString(transfersOut)).append("\n");
sb.append(" outlierTransactions: ").append(toIndentedString(outlierTransactions)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/InstitutionsGetByIdResponse.java | src/main/java/com/plaid/client/model/InstitutionsGetByIdResponse.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.Institution;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* InstitutionsGetByIdResponse defines the response schema for `/institutions/get_by_id`
*/
@ApiModel(description = "InstitutionsGetByIdResponse defines the response schema for `/institutions/get_by_id`")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class InstitutionsGetByIdResponse {
public static final String SERIALIZED_NAME_INSTITUTION = "institution";
@SerializedName(SERIALIZED_NAME_INSTITUTION)
private Institution institution;
public static final String SERIALIZED_NAME_REQUEST_ID = "request_id";
@SerializedName(SERIALIZED_NAME_REQUEST_ID)
private String requestId;
public InstitutionsGetByIdResponse institution(Institution institution) {
this.institution = institution;
return this;
}
/**
* Get institution
* @return institution
**/
@ApiModelProperty(required = true, value = "")
public Institution getInstitution() {
return institution;
}
public void setInstitution(Institution institution) {
this.institution = institution;
}
public InstitutionsGetByIdResponse 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;
}
InstitutionsGetByIdResponse institutionsGetByIdResponse = (InstitutionsGetByIdResponse) o;
return Objects.equals(this.institution, institutionsGetByIdResponse.institution) &&
Objects.equals(this.requestId, institutionsGetByIdResponse.requestId);
}
@Override
public int hashCode() {
return Objects.hash(institution, requestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class InstitutionsGetByIdResponse {\n");
sb.append(" institution: ").append(toIndentedString(institution)).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/RiskCheckNetwork.java | src/main/java/com/plaid/client/model/RiskCheckNetwork.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import 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.RiskLevel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* Result summary object specifying values for network attributes of risk check.
*/
@ApiModel(description = "Result summary object specifying values for network attributes of risk check.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class RiskCheckNetwork {
public static final String SERIALIZED_NAME_RISK_LEVEL = "risk_level";
@SerializedName(SERIALIZED_NAME_RISK_LEVEL)
private RiskLevel riskLevel;
public static final String SERIALIZED_NAME_FACTORS = "factors";
@SerializedName(SERIALIZED_NAME_FACTORS)
private List<String> factors = new ArrayList<>();
public RiskCheckNetwork riskLevel(RiskLevel riskLevel) {
this.riskLevel = riskLevel;
return this;
}
/**
* Get riskLevel
* @return riskLevel
**/
@ApiModelProperty(required = true, value = "")
public RiskLevel getRiskLevel() {
return riskLevel;
}
public void setRiskLevel(RiskLevel riskLevel) {
this.riskLevel = riskLevel;
}
public RiskCheckNetwork factors(List<String> factors) {
this.factors = factors;
return this;
}
public RiskCheckNetwork addFactorsItem(String factorsItem) {
this.factors.add(factorsItem);
return this;
}
/**
* List of factors, when available, that contribute towards the risk level of the given risk check type.
* @return factors
**/
@ApiModelProperty(required = true, value = "List of factors, when available, that contribute towards the risk level of the given risk check type.")
public List<String> getFactors() {
return factors;
}
public void setFactors(List<String> factors) {
this.factors = factors;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RiskCheckNetwork riskCheckNetwork = (RiskCheckNetwork) o;
return Objects.equals(this.riskLevel, riskCheckNetwork.riskLevel) &&
Objects.equals(this.factors, riskCheckNetwork.factors);
}
@Override
public int hashCode() {
return Objects.hash(riskLevel, factors);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RiskCheckNetwork {\n");
sb.append(" riskLevel: ").append(toIndentedString(riskLevel)).append("\n");
sb.append(" factors: ").append(toIndentedString(factors)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/ReasonCode.java | src/main/java/com/plaid/client/model/ReasonCode.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import io.swagger.annotations.ApiModel;
import com.google.gson.annotations.SerializedName;
import java.io.IOException;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
/**
* Specifies the reason for cancelling transfer. This is required for RfP transfers, and will be ignored for other networks. `\"AC03\"` - Invalid Creditor Account Number `\"AM09\"` - Incorrect Amount `\"CUST\"` - Requested By Customer - Cancellation requested `\"DUPL\"` - Duplicate Payment `\"FRAD\"` - Fraudulent Payment - Unauthorized or fraudulently induced `\"TECH\"` - Technical Problem - Cancellation due to system issues `\"UPAY\"` - Undue Payment - Payment was made through another channel `\"AC14\"` - Invalid or Missing Creditor Account Type `\"AM06\"` - Amount Too Low `\"BE05\"` - Unrecognized Initiating Party `\"FOCR\"` - Following Refund Request `\"MS02\"` - No Specified Reason - Customer `\"MS03\"` - No Specified Reason - Agent `\"RR04\"` - Regulatory Reason `\"RUTA\"` - Return Upon Unable To Apply
*/
@JsonAdapter(ReasonCode.Adapter.class)
public enum ReasonCode {
AC03("AC03"),
AM09("AM09"),
CUST("CUST"),
DUPL("DUPL"),
FRAD("FRAD"),
TECH("TECH"),
UPAY("UPAY"),
AC14("AC14"),
AM06("AM06"),
BE05("BE05"),
FOCR("FOCR"),
MS02("MS02"),
MS03("MS03"),
RR04("RR04"),
RUTA("RUTA"),
// 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;
ReasonCode(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static ReasonCode fromValue(String value) {
for (ReasonCode b : ReasonCode.values()) {
if (b.value.equals(value)) {
return b;
}
}
return ReasonCode.ENUM_UNKNOWN;
}
public static class Adapter extends TypeAdapter<ReasonCode> {
@Override
public void write(final JsonWriter jsonWriter, final ReasonCode enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public ReasonCode read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return ReasonCode.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/AssetType.java | src/main/java/com/plaid/client/model/AssetType.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* 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 financial assets in a mortgage loan transaction. Assets may be either liquid or fixed and are associated with a corresponding asset amount.
*/
@JsonAdapter(AssetType.Adapter.class)
public enum AssetType {
CHECKINGACCOUNT("CheckingAccount"),
SAVINGSACCOUNT("SavingsAccount"),
INVESTMENT("Investment"),
MONEYMARKETFUND("MoneyMarketFund"),
OTHER("Other"),
// This is returned when an enum is returned from the API that doesn't exist in the OpenAPI file.
// Try upgrading your client-library version.
ENUM_UNKNOWN("ENUM_UNKNOWN");
private String value;
AssetType(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static AssetType fromValue(String value) {
for (AssetType b : AssetType.values()) {
if (b.value.equals(value)) {
return b;
}
}
return AssetType.ENUM_UNKNOWN;
}
public static class Adapter extends TypeAdapter<AssetType> {
@Override
public void write(final JsonWriter jsonWriter, final AssetType enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public AssetType read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return AssetType.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/Credit1099Recipient.java | src/main/java/com/plaid/client/model/Credit1099Recipient.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.plaid.client.model.CreditPayStubAddress;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* An object representing a recipient used in both 1099-K and 1099-MISC tax documents.
*/
@ApiModel(description = "An object representing a recipient used in both 1099-K and 1099-MISC tax documents.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class Credit1099Recipient {
public static final String SERIALIZED_NAME_ADDRESS = "address";
@SerializedName(SERIALIZED_NAME_ADDRESS)
private CreditPayStubAddress address;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_TIN = "tin";
@SerializedName(SERIALIZED_NAME_TIN)
private String tin;
public static final String SERIALIZED_NAME_ACCOUNT_NUMBER = "account_number";
@SerializedName(SERIALIZED_NAME_ACCOUNT_NUMBER)
private String accountNumber;
public static final String SERIALIZED_NAME_FACTA_FILING_REQUIREMENT = "facta_filing_requirement";
@SerializedName(SERIALIZED_NAME_FACTA_FILING_REQUIREMENT)
private String factaFilingRequirement;
public static final String SERIALIZED_NAME_SECOND_TIN_EXISTS = "second_tin_exists";
@SerializedName(SERIALIZED_NAME_SECOND_TIN_EXISTS)
private String secondTinExists;
public Credit1099Recipient address(CreditPayStubAddress address) {
this.address = address;
return this;
}
/**
* Get address
* @return address
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public CreditPayStubAddress getAddress() {
return address;
}
public void setAddress(CreditPayStubAddress address) {
this.address = address;
}
public Credit1099Recipient name(String name) {
this.name = name;
return this;
}
/**
* Name of recipient.
* @return name
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Name of recipient.")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Credit1099Recipient tin(String tin) {
this.tin = tin;
return this;
}
/**
* Tax identification number of recipient.
* @return tin
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Tax identification number of recipient.")
public String getTin() {
return tin;
}
public void setTin(String tin) {
this.tin = tin;
}
public Credit1099Recipient accountNumber(String accountNumber) {
this.accountNumber = accountNumber;
return this;
}
/**
* Account number number of recipient.
* @return accountNumber
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Account number number of recipient.")
public String getAccountNumber() {
return accountNumber;
}
public void setAccountNumber(String accountNumber) {
this.accountNumber = accountNumber;
}
public Credit1099Recipient factaFilingRequirement(String factaFilingRequirement) {
this.factaFilingRequirement = factaFilingRequirement;
return this;
}
/**
* Checked if FACTA is a filing requirement.
* @return factaFilingRequirement
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Checked if FACTA is a filing requirement.")
public String getFactaFilingRequirement() {
return factaFilingRequirement;
}
public void setFactaFilingRequirement(String factaFilingRequirement) {
this.factaFilingRequirement = factaFilingRequirement;
}
public Credit1099Recipient secondTinExists(String secondTinExists) {
this.secondTinExists = secondTinExists;
return this;
}
/**
* Checked if 2nd TIN exists.
* @return secondTinExists
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Checked if 2nd TIN exists.")
public String getSecondTinExists() {
return secondTinExists;
}
public void setSecondTinExists(String secondTinExists) {
this.secondTinExists = secondTinExists;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Credit1099Recipient credit1099Recipient = (Credit1099Recipient) o;
return Objects.equals(this.address, credit1099Recipient.address) &&
Objects.equals(this.name, credit1099Recipient.name) &&
Objects.equals(this.tin, credit1099Recipient.tin) &&
Objects.equals(this.accountNumber, credit1099Recipient.accountNumber) &&
Objects.equals(this.factaFilingRequirement, credit1099Recipient.factaFilingRequirement) &&
Objects.equals(this.secondTinExists, credit1099Recipient.secondTinExists);
}
@Override
public int hashCode() {
return Objects.hash(address, name, tin, accountNumber, factaFilingRequirement, secondTinExists);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Credit1099Recipient {\n");
sb.append(" address: ").append(toIndentedString(address)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" tin: ").append(toIndentedString(tin)).append("\n");
sb.append(" accountNumber: ").append(toIndentedString(accountNumber)).append("\n");
sb.append(" factaFilingRequirement: ").append(toIndentedString(factaFilingRequirement)).append("\n");
sb.append(" secondTinExists: ").append(toIndentedString(secondTinExists)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
plaid/plaid-java | https://github.com/plaid/plaid-java/blob/130671fed6ef990db562aa6571e181ce08270945/src/main/java/com/plaid/client/model/BankTransferEventListBankTransferType.java | src/main/java/com/plaid/client/model/BankTransferEventListBankTransferType.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* 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 bank transfer. This will be either `debit` or `credit`. A `debit` indicates a transfer of money into your origination account; a `credit` indicates a transfer of money out of your origination account.
*/
@JsonAdapter(BankTransferEventListBankTransferType.Adapter.class)
public enum BankTransferEventListBankTransferType {
DEBIT("debit"),
CREDIT("credit"),
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;
BankTransferEventListBankTransferType(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static BankTransferEventListBankTransferType fromValue(String value) {
for (BankTransferEventListBankTransferType b : BankTransferEventListBankTransferType.values()) {
if (b.value.equals(value)) {
return b;
}
}
return null; }
public static class Adapter extends TypeAdapter<BankTransferEventListBankTransferType> {
@Override
public void write(final JsonWriter jsonWriter, final BankTransferEventListBankTransferType enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public BankTransferEventListBankTransferType read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return BankTransferEventListBankTransferType.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/CustomSandboxTransaction.java | src/main/java/com/plaid/client/model/CustomSandboxTransaction.java | /*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.680.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.time.LocalDate;
/**
* Data to populate as test transaction data.
*/
@ApiModel(description = "Data to populate as test transaction data.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-11T18:58:39.328614Z[Etc/UTC]")
public class CustomSandboxTransaction {
public static final String SERIALIZED_NAME_DATE_TRANSACTED = "date_transacted";
@SerializedName(SERIALIZED_NAME_DATE_TRANSACTED)
private LocalDate dateTransacted;
public static final String SERIALIZED_NAME_DATE_POSTED = "date_posted";
@SerializedName(SERIALIZED_NAME_DATE_POSTED)
private LocalDate datePosted;
public static final String SERIALIZED_NAME_AMOUNT = "amount";
@SerializedName(SERIALIZED_NAME_AMOUNT)
private Double amount;
public static final String SERIALIZED_NAME_DESCRIPTION = "description";
@SerializedName(SERIALIZED_NAME_DESCRIPTION)
private String description;
public static final String SERIALIZED_NAME_ISO_CURRENCY_CODE = "iso_currency_code";
@SerializedName(SERIALIZED_NAME_ISO_CURRENCY_CODE)
private String isoCurrencyCode;
public CustomSandboxTransaction dateTransacted(LocalDate dateTransacted) {
this.dateTransacted = dateTransacted;
return this;
}
/**
* The date of the transaction, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) (YYYY-MM-DD) format. Transaction date must be the present date or a date up to 14 days in the past. Future dates are not allowed.
* @return dateTransacted
**/
@ApiModelProperty(required = true, value = "The date of the transaction, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) (YYYY-MM-DD) format. Transaction date must be the present date or a date up to 14 days in the past. Future dates are not allowed.")
public LocalDate getDateTransacted() {
return dateTransacted;
}
public void setDateTransacted(LocalDate dateTransacted) {
this.dateTransacted = dateTransacted;
}
public CustomSandboxTransaction datePosted(LocalDate datePosted) {
this.datePosted = datePosted;
return this;
}
/**
* The date the transaction posted, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) (YYYY-MM-DD) format. Posted date must be the present date or a date up to 14 days in the past. Future dates are not allowed.
* @return datePosted
**/
@ApiModelProperty(required = true, value = "The date the transaction posted, in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) (YYYY-MM-DD) format. Posted date must be the present date or a date up to 14 days in the past. Future dates are not allowed.")
public LocalDate getDatePosted() {
return datePosted;
}
public void setDatePosted(LocalDate datePosted) {
this.datePosted = datePosted;
}
public CustomSandboxTransaction amount(Double amount) {
this.amount = amount;
return this;
}
/**
* The transaction amount. Can be negative.
* @return amount
**/
@ApiModelProperty(required = true, value = "The transaction amount. Can be negative.")
public Double getAmount() {
return amount;
}
public void setAmount(Double amount) {
this.amount = amount;
}
public CustomSandboxTransaction description(String description) {
this.description = description;
return this;
}
/**
* The transaction description.
* @return description
**/
@ApiModelProperty(required = true, value = "The transaction description.")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public CustomSandboxTransaction isoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
return this;
}
/**
* The ISO-4217 format currency code for the transaction. Defaults to USD.
* @return isoCurrencyCode
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The ISO-4217 format currency code for the transaction. Defaults to USD.")
public String getIsoCurrencyCode() {
return isoCurrencyCode;
}
public void setIsoCurrencyCode(String isoCurrencyCode) {
this.isoCurrencyCode = isoCurrencyCode;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CustomSandboxTransaction customSandboxTransaction = (CustomSandboxTransaction) o;
return Objects.equals(this.dateTransacted, customSandboxTransaction.dateTransacted) &&
Objects.equals(this.datePosted, customSandboxTransaction.datePosted) &&
Objects.equals(this.amount, customSandboxTransaction.amount) &&
Objects.equals(this.description, customSandboxTransaction.description) &&
Objects.equals(this.isoCurrencyCode, customSandboxTransaction.isoCurrencyCode);
}
@Override
public int hashCode() {
return Objects.hash(dateTransacted, datePosted, amount, description, isoCurrencyCode);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CustomSandboxTransaction {\n");
sb.append(" dateTransacted: ").append(toIndentedString(dateTransacted)).append("\n");
sb.append(" datePosted: ").append(toIndentedString(datePosted)).append("\n");
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" isoCurrencyCode: ").append(toIndentedString(isoCurrencyCode)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| java | MIT | 130671fed6ef990db562aa6571e181ce08270945 | 2026-01-05T02:42:29.116648Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.