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

com.messagebird.objects.MessageBase Maven / Gradle / Ivy

Go to download

The MessageBird API provides a API to the MessageBird SMS and voicemail services located at https://www.messagebird.com.

The newest version!
package com.messagebird.objects;

import java.util.Date;

/**
 * Created by rvt on 1/7/15.
 */
public interface MessageBase {
    /**
     * The body of the SMS message.
     * @return Message body
     */
    String getBody();

    /**
     * The list of recipients msisdn's.
     * @return String of comma separated recipients
     */
    String getRecipients();

    /**
     * @return your own reference
     */
    String getReference();

    /**
     * The scheduled date and time of the message
     * @return the configured date/time to send the mesage, this is handled on the message bird platform
     */
    Date getScheduledDatetime();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy