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

com.messagebird.objects.MessageResponseBase 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;

/**
 * Created by rvt on 1/7/15.
 */
public interface MessageResponseBase {
    /**
     * An unique random ID which is created on the MessageBird platform and is returned upon creation of the object.
     * @return
     */
    String getId();

    /**
     * The URL of the created object.
     * @return
     */
    String getHref();

    /**
     * The body of the SMS message.
     * @return
     */
    String getBody();

    /**
     * The reference that was set for the message
     * @return
     */
    String getReference();

    /**
     * Recipient information.
     * @return
     */
    MessageResponse.Recipients getRecipients();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy