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

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

/**
 * A Java representation of a JSON Response for Clickatel RESTful services
 * 

* { * "data":{ * "message":[ * { * "accepted":true, * "to":"27999000001", * "apiMessageId":"0a53832f15bb444d8f73a66e3c4ff7a0" * } * ] * } * } */ @Data @JsonIgnoreProperties(ignoreUnknown = true) @ToString public class ClickatellResponse { /** * The data attribute of the response */ private Value data; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy