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

com.cribbstechnologies.clients.mandrill.model.BaseMandrillRequest Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
package com.cribbstechnologies.clients.mandrill.model;

public class BaseMandrillRequest {

    private String key;

    public String getKey() {
        return key;
    }

    /**
     * It's not necessary to set this field manually as the MandrillRESTRequest pulls the property from the configuration and
     * populates this object with it on every request
     * 
     * @param key
     */
    public void setKey(String key) {
        this.key = key;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy