/// <summary>
        /// fetch
        /// </summary>
        /// <param name="options"> Fetch Step parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Step </returns>
        public static StepResource Fetch(FetchStepOptions 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 Step parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of Step </returns>
        public static async System.Threading.Tasks.Task <StepResource> FetchAsync(FetchStepOptions options,
                                                                                  ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildFetchRequest(options, client));

            return(FromJson(response.Content));
        }
        /// <summary>
        /// fetch
        /// </summary>
        /// <param name="pathFlowSid"> The flow_sid </param>
        /// <param name="pathEngagementSid"> The engagement_sid </param>
        /// <param name="pathSid"> The sid </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of Step </returns>
        public static async System.Threading.Tasks.Task <StepResource> FetchAsync(string pathFlowSid,
                                                                                  string pathEngagementSid,
                                                                                  string pathSid,
                                                                                  ITwilioRestClient client = null)
        {
            var options = new FetchStepOptions(pathFlowSid, pathEngagementSid, pathSid);

            return(await FetchAsync(options, client));
        }
        /// <summary>
        /// fetch
        /// </summary>
        /// <param name="pathFlowSid"> The flow_sid </param>
        /// <param name="pathEngagementSid"> The engagement_sid </param>
        /// <param name="pathSid"> The sid </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Step </returns>
        public static StepResource Fetch(string pathFlowSid,
                                         string pathEngagementSid,
                                         string pathSid,
                                         ITwilioRestClient client = null)
        {
            var options = new FetchStepOptions(pathFlowSid, pathEngagementSid, pathSid);

            return(Fetch(options, client));
        }
 private static Request BuildFetchRequest(FetchStepOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Get,
                Rest.Domain.Preview,
                "/Studio/Flows/" + options.PathFlowSid + "/Engagements/" + options.PathEngagementSid + "/Steps/" + options.PathSid + "",
                client.Region,
                queryParams: options.GetParams()
                ));
 }