com.github.voplex95.mailgun.v3.events.api.MessageHeaders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mailgun-client Show documentation
Show all versions of mailgun-client Show documentation
Mailgun API Client for Java
The newest version!
package com.github.voplex95.mailgun.v3.events.api;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class MessageHeaders {
private String to;
private String from;
@JsonProperty("message-id")
private String messageId;
private String subject;
}