private static Request BuildCreateRequest(CreateRoleOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Post,
                Rest.Domain.Chat,
                "/v2/Services/" + options.PathServiceSid + "/Roles",
                postParams: options.GetParams()
                ));
 }