private static Request BuildFetchRequest(FetchSyncMapOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Get,
                Rest.Domain.Preview,
                "/Sync/Services/" + options.PathServiceSid + "/Maps/" + options.PathSid + "",
                queryParams: options.GetParams()
                ));
 }