jp.gopay.sdk.models.response.transactiontoken.CardPaymentData 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;
public class CardPaymentData {
@SerializedName("card")
TransactionTokenCardData card;
@SerializedName("billing")
TransactionTokenBillingData billing;
public TransactionTokenCardData getCard() {
return card;
}
public TransactionTokenBillingData getBilling() {
return billing;
}
public CardPaymentData(TransactionTokenCardData card, TransactionTokenBillingData billing) {
this.card = card;
this.billing = billing;
}
}