com.mailchimp.domain.store.Stores Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mailchimp-java Show documentation
Show all versions of mailchimp-java Show documentation
Java client to communicate with MailChimp API 3.0
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