You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was excepting that query_params and form_params are in the same format since they are in similar structure. However, query_params is a list of QueryParameter, while form_params is a OrderedDict with parameter names as the keys.
Is there any change to make them consistent? For example, make them list of QueryParameter and FormParameter?
The text was updated successfully, but these errors were encountered:
In the following RAML:
I was excepting that
query_params
andform_params
are in the same format since they are in similar structure. However,query_params
is alist
ofQueryParameter
, whileform_params
is aOrderedDict
with parameter names as the keys.Is there any change to make them consistent? For example, make them
list
ofQueryParameter
andFormParameter
?The text was updated successfully, but these errors were encountered: