Skip to content

Commit

Permalink
Updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
nick committed Oct 11, 2024
1 parent 000d1e5 commit 3e72ff7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manticoresearch/api/utils_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def __init__(self, api_client=None) -> None:
def sql(
self,
body: Annotated[StrictStr, Field(description="A query parameter string. ")],
raw_response: Annotated[Optional[StrictBool], Field(description="Optional parameter, defines a format of response. Can be set to `False` for Select only queries and set to `True` for any type of queries. Default value is 'True'. ")] = None,
mode: Annotated[Optional[StrictStr], Field(description="Optional parameter, defines a format of response. Can be set to empty for Select only queries and set to `raw` for any type of queries. Default value is 'raw'. ")] = None,
raw_response: Annotated[Optional[StrictBool], Field(description="Optional parameter, defines a format of response. Can be set to `False` for Select only queries and set to `True` for any type of queries. Default value is 'True'. ")] = True,
mode: Annotated[Optional[StrictStr], Field(description="Optional parameter, defines a format of response. Can be set to empty for Select only queries and set to `raw` for any type of queries. Default value is 'raw'. ")] = 'raw',
_request_timeout: Union[
None,
Annotated[StrictFloat, Field(gt=0)],
Expand Down

0 comments on commit 3e72ff7

Please sign in to comment.