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

jp.gopay.sdk.models.response.merchant.KonbiniTransactionData Maven / Gradle / Ivy

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

import jp.gopay.sdk.types.Gateway;
import jp.gopay.sdk.types.Konbini;

public class KonbiniTransactionData extends PaymentTransactionData {
    private String customerName;

    private Konbini convenienceStore;

    KonbiniTransactionData(String customerName, Konbini convenienceStore, Gateway gateway) {
        super(gateway);
        this.customerName = customerName;
        this.convenienceStore = convenienceStore;
    }

    public String getCustomerName() {
        return customerName;
    }

    public Konbini getConvenienceStore() {
        return convenienceStore;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy