Query parameters of the callback request as a dictionary-like object.
(self)
| 299 | @property |
| 300 | @has_context |
| 301 | def args(self): |
| 302 | """ |
| 303 | Query parameters of the callback request as a dictionary-like object. |
| 304 | """ |
| 305 | return _get_from_context("args", "") |
| 306 | |
| 307 | @property |
| 308 | @has_context |
nothing calls this directly
no test coverage detected