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

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

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

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;
import lombok.ToString;

import java.util.List;

/**
 * A Java representation of a JSON Response for Clickatel RESTful services, pertaining to the dat section of the response.
 * 

* "message":[ * { * "accepted":true, * "to":"27999000001", * "apiMessageId":"0a53832f15bb444d8f73a66e3c4ff7a0" * } * ] */ @Data @ToString @JsonIgnoreProperties(ignoreUnknown = true) public class Value { /** * The list of messages that were sent to recipients */ private List message; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy