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

jp.gopay.sdk.models.response.transactiontoken.QrScanPaymentData Maven / Gradle / Ivy

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