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

com.mailosaur.models.PreviewRequestOptions Maven / Gradle / Ivy

There is a newer version: 8.1.0
Show newest version
package com.mailosaur.models;

import com.google.api.client.util.Key;

import java.util.List;

/**
 * Preview request options.
 */
public class PreviewRequestOptions {
    /**
     * The list of email preview requests.
     */
    @Key
    private List previews;

    /**
     * Sets the list of email preview requests.
     *
     * @param previews The list of email preview requests.
     * @return the PreviewRequestOptions object itself.
     */
    public PreviewRequestOptions withPreviews(List previews) {
        this.previews = previews;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy