com.mailchimp.domain.SegmentCreate 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.ArrayList;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
/**
* @author eamoralesl
*/
//TODO Implement dynamic segment creation http://developer.mailchimp.com/documentation/mailchimp/reference/lists/segments/#%20
@Data
public class SegmentCreate {
@JsonProperty("name")
private String name;
@JsonProperty("static_segment")
private List staticSegment = new ArrayList<>();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy