/// <summary> /// fetch /// </summary> /// <param name="pathIsoCountry"> The ISO country code </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Country </returns> public static async System.Threading.Tasks.Task <CountryResource> FetchAsync(string pathIsoCountry, ITwilioRestClient client = null) { var options = new FetchCountryOptions(pathIsoCountry); return(await FetchAsync(options, client)); }
/// <summary> /// fetch /// </summary> /// <param name="options"> Fetch Country parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Country </returns> public static CountryResource Fetch(FetchCountryOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = client.Request(BuildFetchRequest(options, client)); return(FromJson(response.Content)); }
/// <summary> /// fetch /// </summary> /// /// <param name="options"> Fetch Country parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Country </returns> public static async System.Threading.Tasks.Task <CountryResource> FetchAsync(FetchCountryOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = await client.RequestAsync(BuildFetchRequest(options, client)); return(FromJson(response.Content)); }
private static Request BuildFetchRequest(FetchCountryOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Get, Rest.Domain.Pricing, "/v1/PhoneNumbers/Countries/" + options.PathIsoCountry + "", queryParams: options.GetParams() )); }
/// <summary> /// fetch /// </summary> /// <param name="pathIsoCountry"> The ISO country code </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Country </returns> public static CountryResource Fetch(string pathIsoCountry, ITwilioRestClient client = null) { var options = new FetchCountryOptions(pathIsoCountry); return(Fetch(options, client)); }