private static Request BuildReadRequest(ReadDeliveryReceiptOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Get,
                Rest.Domain.Conversations,
                "/v1/Conversations/" + options.PathConversationSid + "/Messages/" + options.PathMessageSid + "/Receipts",
                queryParams: options.GetParams()
                ));
 }
        /// <summary>
        /// read
        /// </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));
        }
        /// <summary>
        /// read
        /// </summary>
        /// <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 pathConversationSid,
                                                                                                           string pathMessageSid,
                                                                                                           int?pageSize             = null,
                                                                                                           long?limit               = null,
                                                                                                           ITwilioRestClient client = null)
        {
            var options = new ReadDeliveryReceiptOptions(pathConversationSid, pathMessageSid)
            {
                PageSize = pageSize, Limit = limit
            };

            return(await ReadAsync(options, client));
        }
        /// <summary>
        /// read
        /// </summary>
        /// <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 pathConversationSid,
                                                                 string pathMessageSid,
                                                                 int?pageSize             = null,
                                                                 long?limit               = null,
                                                                 ITwilioRestClient client = null)
        {
            var options = new ReadDeliveryReceiptOptions(pathConversationSid, pathMessageSid)
            {
                PageSize = pageSize, Limit = limit
            };

            return(Read(options, client));
        }
        /// <summary>
        /// read
        /// </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));
        }