mirror of
https://github.com/LukeHagar/plexphp.git
synced 2025-12-07 20:47:46 +00:00
30 lines
622 B
PHP
30 lines
622 B
PHP
<?php
|
|
|
|
/**
|
|
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace LukeHagar\Plex_API\Models\Operations;
|
|
|
|
use LukeHagar\Plex_API\Utils\SpeakeasyMetadata;
|
|
class GetMediaArtsRequest
|
|
{
|
|
/**
|
|
* the id of the library item to return the artwork of.
|
|
*
|
|
* @var int $ratingKey
|
|
*/
|
|
#[SpeakeasyMetadata('pathParam:style=simple,explode=false,name=ratingKey')]
|
|
public int $ratingKey;
|
|
|
|
/**
|
|
* @param int $ratingKey
|
|
* @phpstan-pure
|
|
*/
|
|
public function __construct(int $ratingKey)
|
|
{
|
|
$this->ratingKey = $ratingKey;
|
|
}
|
|
} |