com.mailchimp.domain.Operation 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 com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.mailchimp.jackson.JsonStringSerializer;
import lombok.AllArgsConstructor;
import lombok.Data;
@Data
@AllArgsConstructor
public class Operation {
@JsonProperty
private String method;
@JsonProperty
private String path;
@JsonProperty
@JsonSerialize(using = JsonStringSerializer.class)
private T body;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy