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

com.telecomsys.cmc.response.DeliveryReceipt Maven / Gradle / Ivy

Go to download

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