com.mailgun.model.suppression.bounces.BouncesListImportRequest 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.suppression.bounces;
import java.io.File;
import lombok.Builder;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.ToString;
/**
*
* Bounces List Import Request.
*
*
* @see Import a list of bounces
*/
@Getter
@ToString
@EqualsAndHashCode
@Builder
public class BouncesListImportRequest {
/**
*
* An uploaded CSV file containing a list of addresses to add to the bounce list.
*
*
* CSV file must be 25MB or under and must contain the following column headers:
*
*
* address
Valid email address
* code
Error code (optional, default: 550)
* error
Error description (optional, default: empty string)
* created_at
Timestamp of a bounce event in RFC2822 format (optional, default: current time)
*
*/
File file;
}