module Soaspec # Defaults for Soaspec RestParameters methods module RestParametersDefaults # Set through following method. Base URL in REST requests. def base_url_value nil end # Headers used in RestClient def rest_client_headers {} end # Whether to convert each key in the request to PascalCase # It will also auto convert simple XPath, JSONPath where '//' or '..' not specified # @return Whether to convert to PascalCase def pascal_keys? false end end end