
com.mailosaur.models.ServerCreateOptions 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;
/**
* Options used to create a new Mailosaur server.
*/
public class ServerCreateOptions {
/**
* A name used to identify the server.
*/
@Key
private String name;
/**
* Sets a name used to identify the server.
*
* @param name A name used to identify the server.
* @return the ServerCreateOptions object itself.
*/
public ServerCreateOptions withName(String name) {
this.name = name;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy