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

com.mailchimp.domain.store.Stores Maven / Gradle / Ivy

The newest version!
package com.mailchimp.domain.store;

import java.util.List;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.mailchimp.domain.Link;

public class Stores {

    @JsonProperty("stores")
    private List stores;

    @JsonProperty("total_items")
    private Integer totalItems;

    @JsonProperty("_links")
    private List links;

    public List getStores() {
        return stores;
    }

    public Stores setStores(final List stores) {
        this.stores = stores;
        return this;
    }

    public Integer getTotalItems() {
        return totalItems;
    }

    public Stores setTotalItems(final Integer totalItems) {
        this.totalItems = totalItems;
        return this;
    }

    public List getLinks() {
        return links;
    }

    public Stores setLinks(final List links) {
        this.links = links;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy