mirror of
https://github.com/LukeHagar/plexphp.git
synced 2025-12-09 12:37:47 +00:00
56 lines
1.4 KiB
PHP
56 lines
1.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace LukeHagar\Plex_API\Models\Operations;
|
|
|
|
|
|
class GetMediaArtsResponse
|
|
{
|
|
/**
|
|
* HTTP response content type for this operation
|
|
*
|
|
* @var string $contentType
|
|
*/
|
|
public string $contentType;
|
|
|
|
/**
|
|
* HTTP response status code for this operation
|
|
*
|
|
* @var int $statusCode
|
|
*/
|
|
public int $statusCode;
|
|
|
|
/**
|
|
* Raw HTTP response; suitable for custom response parsing
|
|
*
|
|
* @var \Psr\Http\Message\ResponseInterface $rawResponse
|
|
*/
|
|
public \Psr\Http\Message\ResponseInterface $rawResponse;
|
|
|
|
/**
|
|
* The available background artwork for the library item.
|
|
*
|
|
* @var ?GetMediaArtsResponseBody $object
|
|
*/
|
|
public ?GetMediaArtsResponseBody $object = null;
|
|
|
|
/**
|
|
* @param string $contentType
|
|
* @param int $statusCode
|
|
* @param \Psr\Http\Message\ResponseInterface $rawResponse
|
|
* @param ?GetMediaArtsResponseBody $object
|
|
* @phpstan-pure
|
|
*/
|
|
public function __construct(string $contentType, int $statusCode, \Psr\Http\Message\ResponseInterface $rawResponse, ?GetMediaArtsResponseBody $object = null)
|
|
{
|
|
$this->contentType = $contentType;
|
|
$this->statusCode = $statusCode;
|
|
$this->rawResponse = $rawResponse;
|
|
$this->object = $object;
|
|
}
|
|
} |