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

com.maileon.api.mailings.Properties Maven / Gradle / Ivy

Go to download

Client for Customer API of Maileon. The API Documentation is avalable under https://dev.maileon.com

The newest version!
/**
 * xqueue.com
 */
package com.maileon.api.mailings;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

/**
 *
 * @author Oleksii Saukh
 * @since 03.07.2017
 */
@XmlRootElement(name = "properties")
public class Properties implements Serializable {

    protected List properties = new ArrayList<>();

    /**
     * @return the properties
     */
    @XmlElement(name = "property")
    public List getProperties() {
        return properties;
    }

    /**
     * @param properties the properties to set
     */
    public void setProperties(List properties) {
        this.properties = properties;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy