Sha256: 9e77cee50d7a7fea1b7756af6f09ae2c78f0e93e8e96be3c5a1e592e4d3c1a7c
Contents?: true
Size: 476 Bytes
Versions: 23
Compression:
Stored size: 476 Bytes
Contents
package org.embulk.output.mailchimp.model; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; /** * Created by thangnc on 5/8/17. */ public class InterestsResponse { @JsonProperty("interests") private List<InterestResponse> interests; public List<InterestResponse> getInterests() { return interests; } public void setInterests(List<InterestResponse> interests) { this.interests = interests; } }
Version data entries
23 entries across 23 versions & 1 rubygems