Example URL:
/records/example/autocomplete/name
- I tell api2swagger that "example" and "name" are the dynamic portions of the URL
- For "example", tell it the parameter name is "name space"
- For "name", tell it the parameter name is "partial title"
Expected generated path:
/records/{name space}/autocomplete/{partial title}
Actual generated path:
/records/{{partial title} space}/autocomplete/name
Example URL:
/records/example/autocomplete/name
Expected generated path:
/records/{name space}/autocomplete/{partial title}
Actual generated path:
/records/{{partial title} space}/autocomplete/name