Example #1
0
 private static Request BuildCreateRequest(CreateSampleOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Post,
                Rest.Domain.Preview,
                "/understand/Assistants/" + options.PathAssistantSid + "/Intents/" + options.PathIntentSid + "/Samples",
                client.Region,
                postParams: options.GetParams()
                ));
 }