jp.gopay.sdk.models.response.store.CheckoutFeatureSupport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gopay-java-sdk Show documentation
Show all versions of gopay-java-sdk Show documentation
Official Gyro-n Payments Java SDK
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;
}
}