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

com.mailosaur.models.MessageContent Maven / Gradle / Ivy

package com.mailosaur.models;

import java.util.List;
import com.google.api.client.util.Key;

/**
 * The MessageContent model.
 */
public class MessageContent extends BaseModel {
    /**
     * The links property.
     */
	@Key
    private List links;

    /**
     * The images property.
     */
	@Key
    private List images;

    /**
     * The body property.
     */
	@Key
    private String body;

    /**
     * Get the links value.
     *
     * @return the links value
     */
    public List links() {
        return this.links;
    }

    /**
     * Get the images value.
     *
     * @return the images value
     */
    public List images() {
        return this.images;
    }

    /**
     * Get the body value.
     *
     * @return the body value
     */
    public String body() {
        return nullableString(this.body);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy