com.plaid.client.request.MappingOptions 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.
package com.plaid.client.request;
import com.fasterxml.jackson.annotation.JsonProperty;
public class MappingOptions {
private Boolean pretty;
private Boolean fullMatch;
public Boolean isPretty() {
return pretty;
}
public void setPretty(Boolean pretty) {
this.pretty = pretty;
}
@JsonProperty("full_match")
public Boolean isFullMatch() {
return fullMatch;
}
public void setFullMatch(Boolean fullMatch) {
this.fullMatch = fullMatch;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy