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

com.sparkpost.model.TransmissionWithRecipientArray Maven / Gradle / Ivy

There is a newer version: 0.27
Show newest version

package com.sparkpost.model;

import java.util.List;

import com.google.gson.annotations.SerializedName;
import com.yepher.jsondoc.annotations.Description;

import lombok.Data;
import lombok.EqualsAndHashCode;

/**
 * DTO for a transmission using an array of recipients.
 *
 * @author grava
 */
@Data
@EqualsAndHashCode(callSuper = true)
public class TransmissionWithRecipientArray extends TransmissionBase {

    /**
     * Inline recipient objects or object containing stored recipient list ID
     * Specify a stored recipient list or specify recipients inline. When using
     * a stored recipient list, specify the "list_id" as described in Using a
     * Stored Recipient List. Otherwise, provide the recipients inline using the
     * fields described in the Recipient List API documentation for Recipient
     * Attributes.
     */
    @Description(value = "Inline recipient objects or object containing stored recipient list ID", sample = {""})
    @SerializedName("recipients")
    private List recipientArray = null;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy