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

com.mailgun.model.verification.BulkVerificationStatusSummaryResult Maven / Gradle / Ivy

Go to download

The Mailgun SDK for Java enables Java developers to work with Mailgun API efficiently.

There is a newer version: 1.1.3
Show newest version
package com.mailgun.model.verification;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Builder;
import lombok.Value;
import lombok.extern.jackson.Jacksonized;

/**
 * 

* Bulk verification status summary result. *

* * @see Bulk Verification */ @Value @Jacksonized @Builder public class BulkVerificationStatusSummaryResult { /** *

* The total number of domain associated with result is considered a catch_all domain. *

*/ @JsonProperty("catch_all") Integer catchAll; /** *

* The collection of verification jobs requested for. *

*/ @JsonProperty("deliverable") Integer deliverable; /** *

* A collection of pagination links for traversing the verification jobs. *

*/ @JsonProperty("do_not_send") Integer doNotSend; /** *

* The total number of verification jobs. *

*/ @JsonProperty("undeliverable") Integer undeliverable; @JsonProperty("unknown") Integer unknown; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy