returns documentation for the current api
(default=None, api_version=None, api=None, **kwargs)
| 83 | |
| 84 | @_built_in_directive |
| 85 | def documentation(default=None, api_version=None, api=None, **kwargs): |
| 86 | """returns documentation for the current api""" |
| 87 | api_version = default or api_version |
| 88 | if api: |
| 89 | return api.http.documentation(base_url="", api_version=api_version) |
| 90 | |
| 91 | |
| 92 | @_built_in_directive |
nothing calls this directly
no test coverage detected