/// <summary> /// fetch /// </summary> /// <param name="options"> Fetch Binding parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Binding </returns> public static BindingResource Fetch(FetchBindingOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = client.Request(BuildFetchRequest(options, client)); return(FromJson(response.Content)); }
/// <summary> /// fetch /// </summary> /// <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param> /// <param name="pathSid"> The SID of the resource to fetch </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Binding </returns> public static async System.Threading.Tasks.Task <BindingResource> FetchAsync(string pathServiceSid, string pathSid, ITwilioRestClient client = null) { var options = new FetchBindingOptions(pathServiceSid, pathSid); return(await FetchAsync(options, client)); }
/// <summary> /// fetch /// </summary> /// <param name="options"> Fetch Binding parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Binding </returns> public static async System.Threading.Tasks.Task <BindingResource> FetchAsync(FetchBindingOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = await client.RequestAsync(BuildFetchRequest(options, client)); return(FromJson(response.Content)); }
private static Request BuildFetchRequest(FetchBindingOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Get, Rest.Domain.IpMessaging, "/v2/Services/" + options.PathServiceSid + "/Bindings/" + options.PathSid + "", queryParams: options.GetParams() )); }
/// <summary> /// fetch /// </summary> /// <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param> /// <param name="pathSid"> The SID of the resource to fetch </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Binding </returns> public static BindingResource Fetch(string pathServiceSid, string pathSid, ITwilioRestClient client = null) { var options = new FetchBindingOptions(pathServiceSid, pathSid); return(Fetch(options, client)); }