/// <summary>
        /// Retrieve a list of all delivery and read receipts of the conversation message
        /// </summary>
        /// <param name="options"> Read DeliveryReceipt parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of DeliveryReceipt </returns>
        public static ResourceSet <DeliveryReceiptResource> Read(ReadDeliveryReceiptOptions options,
                                                                 ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildReadRequest(options, client));

            var page = Page <DeliveryReceiptResource> .FromJson("delivery_receipts", response.Content);

            return(new ResourceSet <DeliveryReceiptResource>(page, options, client));
        }
 private static Request BuildReadRequest(ReadDeliveryReceiptOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Get,
                Rest.Domain.Conversations,
                "/v1/Services/" + options.PathChatServiceSid + "/Conversations/" + options.PathConversationSid + "/Messages/" + options.PathMessageSid + "/Receipts",
                queryParams: options.GetParams(),
                headerParams: null
                ));
 }
        /// <summary>
        /// Retrieve a list of all delivery and read receipts of the conversation message
        /// </summary>
        /// <param name="pathChatServiceSid"> The SID of the Conversation Service that the resource is associated with. </param>
        /// <param name="pathConversationSid"> The unique ID of the Conversation for this delivery receipt. </param>
        /// <param name="pathMessageSid"> The SID of the message the delivery receipt belongs to. </param>
        /// <param name="pageSize"> Page size </param>
        /// <param name="limit"> Record limit </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of DeliveryReceipt </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <DeliveryReceiptResource> > ReadAsync(string pathChatServiceSid,
                                                                                                           string pathConversationSid,
                                                                                                           string pathMessageSid,
                                                                                                           int?pageSize             = null,
                                                                                                           long?limit               = null,
                                                                                                           ITwilioRestClient client = null)
        {
            var options = new ReadDeliveryReceiptOptions(pathChatServiceSid, pathConversationSid, pathMessageSid)
            {
                PageSize = pageSize, Limit = limit
            };

            return(await ReadAsync(options, client));
        }
        /// <summary>
        /// Retrieve a list of all delivery and read receipts of the conversation message
        /// </summary>
        /// <param name="pathChatServiceSid"> The SID of the Conversation Service that the resource is associated with. </param>
        /// <param name="pathConversationSid"> The unique ID of the Conversation for this delivery receipt. </param>
        /// <param name="pathMessageSid"> The SID of the message the delivery receipt belongs to. </param>
        /// <param name="pageSize"> Page size </param>
        /// <param name="limit"> Record limit </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of DeliveryReceipt </returns>
        public static ResourceSet <DeliveryReceiptResource> Read(string pathChatServiceSid,
                                                                 string pathConversationSid,
                                                                 string pathMessageSid,
                                                                 int?pageSize             = null,
                                                                 long?limit               = null,
                                                                 ITwilioRestClient client = null)
        {
            var options = new ReadDeliveryReceiptOptions(pathChatServiceSid, pathConversationSid, pathMessageSid)
            {
                PageSize = pageSize, Limit = limit
            };

            return(Read(options, client));
        }
        /// <summary>
        /// Retrieve a list of all delivery and read receipts of the conversation message
        /// </summary>
        /// <param name="options"> Read DeliveryReceipt parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of DeliveryReceipt </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <DeliveryReceiptResource> > ReadAsync(ReadDeliveryReceiptOptions options,
                                                                                                           ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildReadRequest(options, client));

            var page = Page <DeliveryReceiptResource> .FromJson("delivery_receipts", response.Content);

            return(new ResourceSet <DeliveryReceiptResource>(page, options, client));
        }