/// <summary> /// fetch /// </summary> /// <param name="options"> Fetch ModelBuild parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of ModelBuild </returns> public static ModelBuildResource Fetch(FetchModelBuildOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = client.Request(BuildFetchRequest(options, client)); return(FromJson(response.Content)); }
/// <summary> /// fetch /// </summary> /// <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param> /// <param name="pathSid"> The unique string that identifies the resource </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of ModelBuild </returns> public static async System.Threading.Tasks.Task <ModelBuildResource> FetchAsync(string pathAssistantSid, string pathSid, ITwilioRestClient client = null) { var options = new FetchModelBuildOptions(pathAssistantSid, pathSid); return(await FetchAsync(options, client)); }
private static Request BuildFetchRequest(FetchModelBuildOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Get, Rest.Domain.Autopilot, "/v1/Assistants/" + options.PathAssistantSid + "/ModelBuilds/" + options.PathSid + "", queryParams: options.GetParams() )); }
/// <summary> /// fetch /// </summary> /// <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param> /// <param name="pathSid"> The unique string that identifies the resource </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of ModelBuild </returns> public static ModelBuildResource Fetch(string pathAssistantSid, string pathSid, ITwilioRestClient client = null) { var options = new FetchModelBuildOptions(pathAssistantSid, pathSid); return(Fetch(options, client)); }
/// <summary> /// fetch /// </summary> /// <param name="options"> Fetch ModelBuild parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of ModelBuild </returns> public static async System.Threading.Tasks.Task <ModelBuildResource> FetchAsync(FetchModelBuildOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = await client.RequestAsync(BuildFetchRequest(options, client)); return(FromJson(response.Content)); }