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

com.maileon.api.mailings.Format 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!
package com.maileon.api.mailings;

public class Format {

    public static final Format HTML = new Format("html");

    public static final Format TEXT = new Format("text");

    private final String value;

    protected Format(String value) {
        this.value = value;
    }

    public String getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy