com.mailgun.model.verification.BulkVerificationStatusSummaryResult 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.
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