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

com.iyzipay.model.subscription.resource.SubscriptionProductData 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 java.util.List;

public class SubscriptionProductData {

    private String referenceCode;
    private String createdDate;
    private String name;
    private String description;
    private String status;
    @SerializedName("pricingPlans")
    private List pricingPlanList;

    public String getReferenceCode() {
        return referenceCode;
    }

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

    public String getCreatedDate() {
        return createdDate;
    }

    public void setCreatedDate(String createdDate) {
        this.createdDate = createdDate;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public String getStatus() {
        return status;
    }

    public void setStatus(String status) {
        this.status = status;
    }

    public List getPricingPlanList() {
        return pricingPlanList;
    }

    public void setPricingPlanList(List pricingPlanList) {
        this.pricingPlanList = pricingPlanList;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy