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

jp.gopay.sdk.models.response.store.CheckoutFeatureSupport Maven / Gradle / Ivy

There is a newer version: 0.11.17
Show newest version
package jp.gopay.sdk.models.response.store;

import com.google.gson.annotations.SerializedName;
import jp.gopay.sdk.types.CardBrand;
import jp.gopay.sdk.types.Country;

import java.util.List;
import java.util.Set;

public class CheckoutFeatureSupport {
    @SerializedName("card_brand")
    private CardBrand cardBrand;

    @SerializedName("support_auth_capture")
    private Boolean supportAuthCapture;

    @SerializedName("requires_full_name")
    private Boolean requiresFullName;

    @SerializedName("support_dynamic_descriptor")
    private Boolean supportsDynamicDescriptor;

    @SerializedName("requires_cvv")
    private Boolean requiresCVV;

    @SerializedName("countries_allowed")
    private Set countriesAllowed;

    @SerializedName("supported_currencies")
    private Set supportedCurrencies;

    public CardBrand getCardBrand() {
        return cardBrand;
    }

    public Boolean getSupportAuthCapture() {
        return supportAuthCapture;
    }

    public Boolean getRequiresFullName() {
        return requiresFullName;
    }

    public Boolean getSupportsDynamicDescriptor() {
        return supportsDynamicDescriptor;
    }

    public Boolean getRequiresCVV() {
        return requiresCVV;
    }

    public Set getCountriesAllowed() {
        return countriesAllowed;
    }

    public Set getSupportedCurrencies() {
        return supportedCurrencies;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy