
com.telecomsys.cmc.response.DeliveryReceipt 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 java.util.List;
/**
* The receipt response model. This encapsulates a list of message statuses.
*/
public class DeliveryReceipt {
/**
* list - list of message status.
*/
private List deliverystatuslist = null;
/**
* Default Constructor.
*/
public DeliveryReceipt() {
}
/**
* Constructor.
*
* @param list list of message status
*/
public DeliveryReceipt(List list) {
this.deliverystatuslist = list;
}
/**
* @param list the list of message status
*/
public void setDeliverystatuslist(List list) {
this.deliverystatuslist = list;
}
/**
* get the list of message statuses.
* @return deliverystatuslist
*/
public List getDeliverystatuslist() {
return this.deliverystatuslist;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy