ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.228.1

This commit is contained in:
speakeasybot
2024-03-29 16:37:20 +00:00
parent 6ce3adfd94
commit 03e43e4b00
42 changed files with 216 additions and 79 deletions

View File

@@ -3,6 +3,7 @@
from __future__ import annotations
import dataclasses
import requests as requests_http
from typing import Optional
GET_TOKEN_SERVERS = [
"https://plex.tv/api/v2",
@@ -13,7 +14,7 @@ GET_TOKEN_SERVERS = [
class GetTokenRequest:
pin_id: str = dataclasses.field(metadata={'path_param': { 'field_name': 'pinID', 'style': 'simple', 'explode': False }})
r"""The PinID to retrieve an access token for"""
x_plex_client_identifier: str = dataclasses.field(metadata={'header': { 'field_name': 'X-Plex-Client-Identifier', 'style': 'simple', 'explode': False }})
x_plex_client_identifier: Optional[str] = dataclasses.field(default=None, metadata={'header': { 'field_name': 'X-Plex-Client-Identifier', 'style': 'simple', 'explode': False }})
r"""The unique identifier for the client application
This is used to track the client application and its usage
(UUID, serial number, or other number unique per device)