We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make_json_response
by_alias
def make_json_response( content: Union[BaseModel, Iterable[BaseModel]], status_code: int, by_alias: bool, exclude_none: bool = False, many: bool = False, ) -> Response: ... js = content.json(exclude_none=exclude_none, by_alias=by_alias) ...
The content.json method has a default value for the by_alias argument.
content.json
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
content.json
method has a default value for theby_alias
argument.The text was updated successfully, but these errors were encountered: