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

jp.gopay.sdk.models.response.merchant.PaidyTransactionData 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.models.response.transactiontoken.PhoneNumber;
import jp.gopay.sdk.types.Gateway;

public class PaidyTransactionData extends PaymentTransactionData {
    private String cardholderEmailAddress;

    private PhoneNumber cardholderPhoneNumber;

    PaidyTransactionData(String cardholderEmailAddress, PhoneNumber cardholderPhoneNumber, Gateway gateway) {
        super(gateway);
        this.cardholderEmailAddress = cardholderEmailAddress;
        this.cardholderPhoneNumber = cardholderPhoneNumber;
    }

    public String getCardholderEmailAddress() {
        return cardholderEmailAddress;
    }

    public PhoneNumber getCardholderPhoneNumber() {
        return cardholderPhoneNumber;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy