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

com.github.voplex95.mailgun.v3.events.api.MessageHeaders Maven / Gradle / Ivy

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;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy