コード例 #1
0
        /// <summary>
        /// fetch
        /// </summary>
        /// <param name="options"> Fetch DeliveryReceipt parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of DeliveryReceipt </returns>
        public static DeliveryReceiptResource Fetch(FetchDeliveryReceiptOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildFetchRequest(options, client));

            return(FromJson(response.Content));
        }
コード例 #2
0
        /// <summary>
        /// fetch
        /// </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="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of DeliveryReceipt </returns>
        public static DeliveryReceiptResource Fetch(string pathConversationSid,
                                                    string pathMessageSid,
                                                    string pathSid,
                                                    ITwilioRestClient client = null)
        {
            var options = new FetchDeliveryReceiptOptions(pathConversationSid, pathMessageSid, pathSid);

            return(Fetch(options, client));
        }
コード例 #3
0
 private static Request BuildFetchRequest(FetchDeliveryReceiptOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Get,
                Rest.Domain.Conversations,
                "/v1/Conversations/" + options.PathConversationSid + "/Messages/" + options.PathMessageSid + "/Receipts/" + options.PathSid + "",
                queryParams: options.GetParams()
                ));
 }
コード例 #4
0
        /// <summary>
        /// fetch
        /// </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="pathSid"> A 34 character string that uniquely identifies this resource. </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 <DeliveryReceiptResource> FetchAsync(string pathConversationSid,
                                                                                             string pathMessageSid,
                                                                                             string pathSid,
                                                                                             ITwilioRestClient client = null)
        {
            var options = new FetchDeliveryReceiptOptions(pathConversationSid, pathMessageSid, pathSid);

            return(await FetchAsync(options, client));
        }
コード例 #5
0
        /// <summary>
        /// fetch
        /// </summary>
        /// <param name="options"> Fetch 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 <DeliveryReceiptResource> FetchAsync(FetchDeliveryReceiptOptions options,
                                                                                             ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildFetchRequest(options, client));

            return(FromJson(response.Content));
        }