com.mailgun.model.seedlist.SeedListItemResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mailgun-java Show documentation
Show all versions of mailgun-java Show documentation
The Mailgun SDK for Java enables Java developers to work with Mailgun API
efficiently.
The newest version!
package com.mailgun.model.seedlist;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Builder;
import lombok.Value;
import lombok.extern.jackson.Jacksonized;
/**
*
* A result is an object summarizing Inbox Placement tests sent to the target_email.
*
*
* @see Seed Lists
*/
@Value
@Jacksonized
@Builder
@JsonIgnoreProperties(ignoreUnknown = true)
public class SeedListItemResult {
/**
*
* Unique identifier for a received test.
*
*/
@JsonProperty("result_id")
String resultId;
/**
*
* The subject of the email sent to the target_email.
*
*/
String subject;
/**
*
* Sender address of the email sent to the target_email.
*
*/
String sender;
/**
*
* An object that contains sub-objects that describe delivery stats.
*
*/
@JsonProperty("delivery_stats")
Map> deliveryStats;
}