Open the help dialog
(
self,
*,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
)
| 147 | ) |
| 148 | |
| 149 | async def open_help( |
| 150 | self, |
| 151 | *, |
| 152 | # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs. |
| 153 | # The extra values given here take precedence over values defined on the client or passed to this method. |
| 154 | extra_headers: Headers | None = None, |
| 155 | extra_query: Query | None = None, |
| 156 | extra_body: Body | None = None, |
| 157 | timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN, |
| 158 | ) -> TuiOpenHelpResponse: |
| 159 | """Open the help dialog""" |
| 160 | return await self._post( |
| 161 | "/tui/open-help", |
| 162 | options=make_request_options( |
| 163 | extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout |
| 164 | ), |
| 165 | cast_to=TuiOpenHelpResponse, |
| 166 | ) |
| 167 | |
| 168 | |
| 169 | class TuiResourceWithRawResponse: |
nothing calls this directly
no test coverage detected