ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.295.1

This commit is contained in:
speakeasybot
2024-05-23 15:57:50 +00:00
parent 40b2a8d865
commit 5af18ba0e2
467 changed files with 10088 additions and 10920 deletions

View File

@@ -8,36 +8,36 @@ declare(strict_types=1);
namespace LukeHagar\Plex_API\Models\Operations;
use \LukeHagar\Plex_API\Utils\SpeakeasyMetadata;
use LukeHagar\Plex_API\Utils\SpeakeasyMetadata;
class GetPinRequest
{
/**
* Determines the kind of code returned by the API call
*
*
* Strong codes are used for Pin authentication flows
* Non-Strong codes are used for `Plex.tv/link`
*
*
*
*
* @var ?bool $strong
*/
#[SpeakeasyMetadata('queryParam:style=form,explode=true,name=strong')]
#[SpeakeasyMetadata('queryParam:style=form,explode=true,name=strong')]
public ?bool $strong = null;
/**
* 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)
*
*
*
*
* @var ?string $xPlexClientIdentifier
*/
#[SpeakeasyMetadata('header:style=simple,explode=false,name=X-Plex-Client-Identifier')]
#[SpeakeasyMetadata('header:style=simple,explode=false,name=X-Plex-Client-Identifier')]
public ?string $xPlexClientIdentifier = null;
public function __construct()
{
$this->strong = null;
$this->xPlexClientIdentifier = null;
}
}
public function __construct()
{
$this->strong = null;
$this->xPlexClientIdentifier = null;
}
}