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

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

There is a newer version: 0.27
Show newest version

package com.sparkpost.model;

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

import lombok.Data;
import lombok.EqualsAndHashCode;

/**
 * This is used when specifying a stored recipient list in the transmission.
 * Note that this attribute should not be present when specifying recipients
 * inline.
 */
@Data
@EqualsAndHashCode(callSuper = true)
public class StoredRecipientList extends Base {

    /**
     * Identifier of the stored recipient list to use
     * Specify this field when using a stored recipient list.
     */
    @Description(value = "Identifier of the stored recipient list to use. Specify this field when using a stored recipient list.", sample = {"AbC123"})
    @SerializedName("list_id")
    private String listId = null;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy