jp.gopay.sdk.models.response.transactiontoken.KonbiniPaymentData 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.Konbini;
import org.joda.time.Period;
public class KonbiniPaymentData {
@SerializedName("customer_name")
private String customerName;
@SerializedName("convenience_store")
private Konbini convenienceStore;
@SerializedName("expiration_period")
private Period expirationPeriod;
@SerializedName("phone_number")
private PhoneNumber phoneNumber;
public String getCustomerName() {
return customerName;
}
public Konbini getConvenienceStore() {
return convenienceStore;
}
public Period getExpirationPeriod() {
return expirationPeriod;
}
public PhoneNumber getPhoneNumber() {
return phoneNumber;
}
public KonbiniPaymentData(String customerName, Konbini convenienceStore, Period expirationPeriod, PhoneNumber phoneNumber) {
this.customerName = customerName;
this.convenienceStore = convenienceStore;
this.expirationPeriod = expirationPeriod;
this.phoneNumber = phoneNumber;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy