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

jp.gopay.sdk.models.request.charge.CaptureReq Maven / Gradle / Ivy

There is a newer version: 0.11.17
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy