jp.gopay.sdk.models.response.transactiontoken.QrScanPaymentData 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.transactiontoken;
import com.google.gson.annotations.SerializedName;
import jp.gopay.sdk.types.Gateway;
import jp.gopay.sdk.types.QRBrand;
public class QrScanPaymentData {
@SerializedName("gateway")
private Gateway gateway;
@SerializedName("brand")
private QRBrand brand;
public QrScanPaymentData(Gateway gateway, QRBrand brand) {
this.gateway = gateway;
this.brand = brand;
}
public Gateway getGateway() {
return gateway;
}
public QRBrand getBrand() {
return brand;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy