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

com.mailchimp.domain.SegmentModified Maven / Gradle / Ivy

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