com.mailchimp.domain.SegmentModified 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 eamoralesl
*/
@Data
public class SegmentModified {
@JsonProperty("detail")
private String detail;
@JsonProperty("error_count")
private Integer errorCount;
@JsonProperty("errors")
private List errors;
@JsonProperty("instance")
private String instance;
@JsonProperty("members_added")
private List membersAdded;
@JsonProperty("members_removed")
private List membersRemoved;
@JsonProperty("status")
private Integer status;
@JsonProperty("title")
private String title;
@JsonProperty("total_added")
private Integer totalAdded;
@JsonProperty("total_removed")
private Integer totalRemoved;
@JsonProperty("type")
private String type;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy