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

com.mailosaur.models.ServerCreateOptions 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;

/**
 * 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