com.mailgun.model.verification.BulkVerificationDownloadUrl 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 com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Builder;
import lombok.Value;
import lombok.extern.jackson.Jacksonized;
/**
*
* csv
and json
representation of the download link for the results of the bulk verifications.
*
*
* @see Bulk Verification
*/
@Value
@Jacksonized
@Builder
public class BulkVerificationDownloadUrl {
/**
*
* csv
representation of the download link for the results of the bulk verifications.
*
*/
@JsonProperty("csv")
String csv;
/**
*
* json
representation of the download link for the results of the bulk verifications.
*
*/
@JsonProperty("json")
String json;
}