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

com.checkout.instruments.get.BankAccountField Maven / Gradle / Ivy

There is a newer version: 6.4.2
Show newest version
package com.checkout.instruments.get;

import com.google.gson.annotations.SerializedName;
import lombok.Data;

import java.util.List;

@Data
public final class BankAccountField {

    private String id;

    private String section;

    private String display;

    @SerializedName("help_text")
    private String helpText;

    private String type;

    private boolean required;

    @SerializedName("validation_regex")
    private String validationRegex;

    @SerializedName("min_length")
    private int minLength;

    @SerializedName("max_length")
    private int maxlength;

    @SerializedName("allowed_options")
    private List allowedOptions;

    private List dependencies;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy