示例#1
0
 private static Request BuildFetchRequest(FetchSampleOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Get,
                Rest.Domain.Preview,
                "/understand/Services/" + options.PathServiceSid + "/Intents/" + options.PathIntentSid + "/Samples/" + options.PathSid + "",
                client.Region,
                queryParams: options.GetParams()
                ));
 }