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

com.touwolf.mailchimp.model.batch.BatchReadResponse Maven / Gradle / Ivy

package com.touwolf.mailchimp.model.batch;

import com.google.gson.annotations.SerializedName;
import com.touwolf.mailchimp.data.MailchimpLinks;

import java.util.List;

public class BatchReadResponse {
    private List lists;

    @SerializedName("total_items")
    private Integer totalItems;

    @SerializedName("_links")
    private List links;

    /**
     * An array of objects representing batch calls.
     */
    public List getLists() {
        return lists;
    }

    public void setLists(List lists) {
        this.lists = lists;
    }

    /**
     * The total number of items matching the query regardless of pagination.
     */
    public Integer getTotalItems() {
        return totalItems;
    }

    public void setTotalItems(Integer totalItems) {
        this.totalItems = totalItems;
    }

    /**
     * A list of link types and descriptions for the API schema documents.
     */
    public List getLinks() {
        return links;
    }

    public void setLinks(List links) {
        this.links = links;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy