com.univapay.sdk.models.request.subscription.FixedCyclePaymentPlan Maven / Gradle / Ivy
The newest version!
package com.univapay.sdk.models.request.subscription;
import com.google.gson.annotations.SerializedName;
import com.univapay.sdk.types.PaymentPlanType;
public class FixedCyclePaymentPlan extends PaymentPlanRequest {
@SerializedName("fixed_cycles")
private Integer fixedCycles;
public Integer getFixedCycles() {
return fixedCycles;
}
public FixedCyclePaymentPlan(Integer fixedCycles) {
this.fixedCycles = fixedCycles;
this.planType = PaymentPlanType.FIXED_CYCLES;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy