com.mailchimp.domain.ExactMatches 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;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
/**
* @author Keisuke Kato
*/
@Data
public class ExactMatches {
@JsonProperty("members")
private List members;
@JsonProperty("total_items")
private Integer totalItems;
public List getMembers() {
return members;
}
public void setMembers(List members) {
this.members = members;
}
public Integer getTotalItems() {
return totalItems;
}
public void setTotalItems(Integer totalItems) {
this.totalItems = totalItems;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy