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

com.mailersend.sdk.recipients.SuppressionAddBody Maven / Gradle / Ivy

package com.mailersend.sdk.recipients;

import java.util.ArrayList;

import com.google.gson.annotations.SerializedName;

/**
 * 

SuppressionAddBody class.

* * @author mailersend * @version $Id: $Id */ public class SuppressionAddBody { @SerializedName("domain_id") public String domainId; @SerializedName("recipients") public ArrayList recipients = new ArrayList(); /** * Resets the values so that the object can be reused */ public void reset() { domainId = null; recipients.clear(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy