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

com.univapay.sdk.models.request.charge.CaptureReq Maven / Gradle / Ivy

There is a newer version: 0.2.35
Show newest version
package com.univapay.sdk.models.request.charge;

import com.google.gson.annotations.SerializedName;
import com.univapay.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