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

co.fingerprintsoft.notification.clickatell.ClickatellSMS 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;

import java.util.ArrayList;
import java.util.List;

/**
 * A Java representation of a JSON Payload for Clickatell RESTful services
 * 

* {"text":"Test Message","to":["27999000001"]} */ @Data @ToString public class ClickatellSMS { /** * The test to send */ private String text; /** * The list of recipients */ private List to = new ArrayList(); /** * Add a recipient * * @param to the recipient to add */ public void addTo(String to) { this.to.add(to); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy