
com.mailosaur.models.PreviewRequestOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mailosaur-java Show documentation
Show all versions of mailosaur-java Show documentation
Mailosaur Java Bindings for Email Test Automation
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