com.mailgun.model.verification.BulkVerificationJobStatusResponse 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.verification;
import java.time.ZonedDateTime;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Builder;
import lombok.Value;
import lombok.extern.jackson.Jacksonized;
import static com.mailgun.util.Constants.ENGLISH;
import static com.mailgun.util.Constants.RFC_2822_DATE_TIME_PATTERN_TIME_ZONE_NAME;
/**
*
* Bulk verification job status Response.
*
*
* @see Bulk Verification
*/
@Value
@Jacksonized
@Builder
public class BulkVerificationJobStatusResponse {
/**
*
* list_id name given when the list was initially created.
*
*/
@JsonProperty("id")
String id;
/**
*
* Number of total items in the list to be verified.
*
*/
@JsonProperty("quantity")
Integer quantity;
/**
*
* De-duplicated total of verified email addresses.
*
*/
@JsonProperty("records_processed")
Integer recordsProcessed;
/**
*
* Job status.
*
*/
@JsonProperty("status")
String status;
/**
*
* Summary of the verifications in the list provided.
*
*/
@JsonProperty("summary")
BulkVerificationStatusSummary summary;
/**
*
* Date/Time that the request was initiated.
*
* {@link ZonedDateTime}
*/
@JsonFormat(pattern = RFC_2822_DATE_TIME_PATTERN_TIME_ZONE_NAME, locale = ENGLISH)
@JsonProperty("created_at")
ZonedDateTime createdAt;
/**
*
* csv
and json
representation of the download link for the results of the bulk verifications.
*
* {@link BulkVerificationDownloadUrl}
*/
@JsonProperty("download_url")
BulkVerificationDownloadUrl downloadUrl;
}