We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aac3ca1 commit d7c43fcCopy full SHA for d7c43fc
openapi_python_client/parser/openapi.py
@@ -417,6 +417,7 @@ def response_type(self) -> str:
417
return f"Union[{', '.join(types)}]"
418
419
def all_parameters(self) -> Iterator[Property]:
420
+ """Iterate through all the parameters of this endpoint """
421
yield from self.path_parameters.values()
422
yield from self.query_parameters.values()
423
yield from self.header_parameters.values()
0 commit comments