
com.telecomsys.cmc.response.DeliveryReceiptResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cmc-java Show documentation
Show all versions of cmc-java Show documentation
Java library for communicating with the Cloud Messaging Center (CMC) REST API
The newest version!
package com.telecomsys.cmc.response;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRootName;
/**
* The Delivery receipt response model. This encapsulates the response sent when the client requests details about
* delivery receipt.
*/
@JsonRootName(value = "response")
@JsonIgnoreProperties(ignoreUnknown = true)
public class DeliveryReceiptResponse extends RestResponse {
/**
* Delivery Receipt.
*/
@JsonProperty("deliveryreceipt")
private DeliveryReceipt deliveryReceipt;
/**
* @return the deliveryReceipt
*/
public DeliveryReceipt getDeliveryReceipt() {
return deliveryReceipt;
}
/**
* @param deliveryReceipt the deliveryReceipt to set
*/
public void setDeliveryReceipt(DeliveryReceipt deliveryReceipt) {
this.deliveryReceipt = deliveryReceipt;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy