jp.gopay.sdk.models.request.subscription.SubscriptionCreateData 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.request.subscription;
import com.google.gson.annotations.SerializedName;
import jp.gopay.sdk.models.common.MoneyLike;
import jp.gopay.sdk.models.common.TransactionTokenId;
import jp.gopay.sdk.models.response.subscription.ScheduleSettings;
import jp.gopay.sdk.types.MetadataMap;
import jp.gopay.sdk.types.SubscriptionPeriod;
import org.threeten.bp.Duration;
import java.math.BigInteger;
import java.util.Date;
public class SubscriptionCreateData extends SubscriptionRequestData {
@SerializedName("currency")
private String currency;
@SerializedName("amount")
private BigInteger amount;
@SerializedName("first_charge_capture_after")
private Duration firstChargeCaptureAfter;
@SerializedName("first_charge_authorization_only")
private Boolean firstChargeAuthorizationOnly;
public SubscriptionCreateData(TransactionTokenId transactionTokenId,
SubscriptionPeriod period,
BigInteger initialAmount,
MetadataMap metadata,
InstallmentPlanRequest installmentPlan,
ScheduleSettings scheduleSettings,
Date subsequentCyclesStart,
MoneyLike money,
Boolean onlyDirectCurrency,
String descriptor,
Duration firstChargeCaptureAfter,
Boolean firstChargeAuthorizationOnly) {
super(transactionTokenId, period, initialAmount, metadata, installmentPlan, scheduleSettings, subsequentCyclesStart,
onlyDirectCurrency, descriptor);
this.currency = money.getCurrency();
this.amount = money.getAmount();
this.firstChargeCaptureAfter = firstChargeCaptureAfter;
this.firstChargeAuthorizationOnly = firstChargeAuthorizationOnly;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy