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

co.fingerprintsoft.notification.clickatell.Message Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package co.fingerprintsoft.notification.clickatell;

import lombok.Data;
import lombok.ToString;

/**
 * A response from sending an SMS to a recipient.
 */
@Data
@ToString
public class Message {

    /**
     * The success status of the message
     */
    private Boolean accepted;
    /**
     * The recipient
     */
    private String to;

    private String apiMessageId;
    private String error;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy