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

com.mailgun.model.seedlist.SeedListItemResult Maven / Gradle / Ivy

Go to download

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; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy