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

jp.gopay.sdk.models.response.subscription.SubscriptionConfiguration Maven / Gradle / Ivy

There is a newer version: 0.11.17
Show newest version
package jp.gopay.sdk.models.response.subscription;

import com.google.gson.annotations.SerializedName;

public class SubscriptionConfiguration {

    @SerializedName("failed_charges_to_cancel")
    private Integer failedChargesToCancel;

    @SerializedName("suspend_on_cancel")
    private Boolean suspendOnCancel;

    public SubscriptionConfiguration(Integer failedChargesToCancel, Boolean suspendOnCancel) {
        this.failedChargesToCancel = failedChargesToCancel;
        this.suspendOnCancel = suspendOnCancel;
    }

    public Integer getFailedChargesToCancel() {
        return failedChargesToCancel;
    }

    public Boolean getSuspendOnCancel() {
        return suspendOnCancel;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy