ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.295.2

This commit is contained in:
speakeasybot
2024-05-24 00:33:05 +00:00
parent 6748e94a9a
commit d8238d8174
491 changed files with 4181 additions and 2758 deletions

View File

@@ -11,12 +11,13 @@ from plex_api.models import errors
s = plex_api.PlexAPI(
access_token="<YOUR_API_KEY_HERE>",
x_plex_client_identifier='Postman',
)
res = None
try:
res = s.server.get_server_capabilities()
except errors.GetServerCapabilitiesResponseBody as e:
# handle exception
raise(e)
@@ -27,6 +28,7 @@ except errors.SDKError as e:
if res.object is not None:
# handle response
pass
```
{/* End Python Errors */}