コード例 #1
0
 private static Request BuildCreateRequest(CreateSyncMapItemOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Post,
                Rest.Domain.Sync,
                "/v1/Services/" + options.PathServiceSid + "/Maps/" + options.PathMapSid + "/Items",
                postParams: options.GetParams()
                ));
 }