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

com.mailgun.model.verification.BulkVerificationDownloadUrl 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.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; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy