![JAR search and dependency download from the Maven repository](/logo.png)
jp.gopay.sdk.models.request.charge.CaptureReq Maven / Gradle / Ivy
package jp.gopay.sdk.models.request.charge;
import com.google.gson.annotations.SerializedName;
import jp.gopay.sdk.models.common.MoneyLike;
import java.math.BigInteger;
@SuppressWarnings("FieldCanBeLocal")
public class CaptureReq {
@SerializedName("amount")
private BigInteger amount;
@SerializedName("currency")
private String currency;
public CaptureReq(MoneyLike money) {
this.amount = money.getAmount();
this.currency = money.getCurrency();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy