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

com.iyzipay.model.subscription.resource.SubscriptionCustomerListData 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 SubscriptionCustomerListData {

    @SerializedName("items")
    private List subscriptionCustomer;
    private Long totalCount;
    private Integer currentPage;
    private Integer pageCount;

    public List getSubscriptionCustomer() {
        return subscriptionCustomer;
    }

    public void setSubscriptionCustomer(List subscriptionCustomer) {
        this.subscriptionCustomer = subscriptionCustomer;
    }

    public Long getTotalCount() {
        return totalCount;
    }

    public void setTotalCount(Long totalCount) {
        this.totalCount = totalCount;
    }

    public Integer getCurrentPage() {
        return currentPage;
    }

    public void setCurrentPage(Integer currentPage) {
        this.currentPage = currentPage;
    }

    public Integer getPageCount() {
        return pageCount;
    }

    public void setPageCount(Integer pageCount) {
        this.pageCount = pageCount;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy