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

com.iyzipay.model.subscription.resource.SubscriptionOrderData Maven / Gradle / Ivy

There is a newer version: 2.0.133
Show newest version
package com.iyzipay.model.subscription.resource;

import com.google.gson.annotations.SerializedName;
import com.iyzipay.model.subscription.enumtype.SubscriptionOrderStatus;

import java.math.BigDecimal;
import java.util.List;

public class SubscriptionOrderData {

    private String referenceCode;
    private BigDecimal price;
    private String currencyCode;
    private String startPeriod;
    private String endPeriod;
    private SubscriptionOrderStatus orderStatus;
    @SerializedName(value = "paymentAttempts")
    private List orderPaymentAttempts;

    public String getReferenceCode() {
        return referenceCode;
    }

    public void setReferenceCode(String referenceCode) {
        this.referenceCode = referenceCode;
    }

    public BigDecimal getPrice() {
        return price;
    }

    public void setPrice(BigDecimal price) {
        this.price = price;
    }

    public String getCurrencyCode() {
        return currencyCode;
    }

    public void setCurrencyCode(String currencyCode) {
        this.currencyCode = currencyCode;
    }

    public String getStartPeriod() {
        return startPeriod;
    }

    public void setStartPeriod(String startPeriod) {
        this.startPeriod = startPeriod;
    }

    public String getEndPeriod() {
        return endPeriod;
    }

    public void setEndPeriod(String endPeriod) {
        this.endPeriod = endPeriod;
    }

    public SubscriptionOrderStatus getOrderStatus() {
        return orderStatus;
    }

    public void setOrderStatus(SubscriptionOrderStatus orderStatus) {
        this.orderStatus = orderStatus;
    }

    public List getOrderPaymentAttempts() {
        return orderPaymentAttempts;
    }

    public void setOrderPaymentAttempts(List orderPaymentAttempts) {
        this.orderPaymentAttempts = orderPaymentAttempts;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy