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

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

package com.mailosaur.models;

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

/**
 * The result of a message listing request.
 */
public class MessageListResult {
    /**
     * The individual summaries of each message forming the
     * result. Summaries are returned sorted by received date, with the most
     * recently-received messages appearing first.
     */
	@Key
    private List items;

    /**
     * Gets the individual summaries of each message forming the
     * result. Summaries are returned sorted by received date, with the most
     * recently-received messages appearing first.
     *
     * @return The individual summaries of each message forming the result.
     */
    public List items() {
        return this.items;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy