All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.plaid.client.request.MappingOptions Maven / Gradle / Ivy

There is a newer version: 29.0.0
Show newest version
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