Files
plexphp/src/Models/Operations/GetMediaArtsRequest.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;
}
}