com.plaid.client.model.Meta Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plaid-java Show documentation
Show all versions of plaid-java Show documentation
Bindings for the Plaid (plaid.com) API.
/*
* The Plaid API
* The Plaid REST API. Please see https://plaid.com/docs/api for more details.
*
* The version of the OpenAPI document: 2020-09-14_1.534.3
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.plaid.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Allows specifying the metadata of the test account
*/
@ApiModel(description = "Allows specifying the metadata of the test account")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-07-05T19:36:13.426392Z[Etc/UTC]")
public class Meta {
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_OFFICIAL_NAME = "official_name";
@SerializedName(SERIALIZED_NAME_OFFICIAL_NAME)
private String officialName;
public static final String SERIALIZED_NAME_LIMIT = "limit";
@SerializedName(SERIALIZED_NAME_LIMIT)
private Double limit;
public static final String SERIALIZED_NAME_MASK = "mask";
@SerializedName(SERIALIZED_NAME_MASK)
private String mask;
public Meta name(String name) {
this.name = name;
return this;
}
/**
* The account's name
* @return name
**/
@ApiModelProperty(required = true, value = "The account's name")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Meta officialName(String officialName) {
this.officialName = officialName;
return this;
}
/**
* The account's official name
* @return officialName
**/
@ApiModelProperty(required = true, value = "The account's official name")
public String getOfficialName() {
return officialName;
}
public void setOfficialName(String officialName) {
this.officialName = officialName;
}
public Meta limit(Double limit) {
this.limit = limit;
return this;
}
/**
* The account's limit
* @return limit
**/
@ApiModelProperty(required = true, value = "The account's limit")
public Double getLimit() {
return limit;
}
public void setLimit(Double limit) {
this.limit = limit;
}
public Meta mask(String mask) {
this.mask = mask;
return this;
}
/**
* The account's mask. Should be an empty string or a string of 2-4 alphanumeric characters. This allows you to model a mask which does not match the account number (such as with a virtual account number).
* @return mask
**/
@ApiModelProperty(required = true, value = "The account's mask. Should be an empty string or a string of 2-4 alphanumeric characters. This allows you to model a mask which does not match the account number (such as with a virtual account number).")
public String getMask() {
return mask;
}
public void setMask(String mask) {
this.mask = mask;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Meta meta = (Meta) o;
return Objects.equals(this.name, meta.name) &&
Objects.equals(this.officialName, meta.officialName) &&
Objects.equals(this.limit, meta.limit) &&
Objects.equals(this.mask, meta.mask);
}
@Override
public int hashCode() {
return Objects.hash(name, officialName, limit, mask);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Meta {\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" officialName: ").append(toIndentedString(officialName)).append("\n");
sb.append(" limit: ").append(toIndentedString(limit)).append("\n");
sb.append(" mask: ").append(toIndentedString(mask)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy