mirror of
https://github.com/LukeHagar/plexphp.git
synced 2025-12-10 04:21:03 +00:00
30 lines
714 B
PHP
30 lines
714 B
PHP
<?php
|
|
|
|
/**
|
|
* Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace LukeHagar\Plex_API\Models\Operations;
|
|
|
|
|
|
/**
|
|
* GetServerPreferencesResponseBody - Server Preferences
|
|
*
|
|
* @package LukeHagar\Plex_API\Models\Operations
|
|
* @access public
|
|
*/
|
|
class GetServerPreferencesResponseBody
|
|
{
|
|
#[\JMS\Serializer\Annotation\SerializedName('MediaContainer')]
|
|
#[\JMS\Serializer\Annotation\Type('LukeHagar\Plex_API\Models\Operations\GetServerPreferencesMediaContainer')]
|
|
#[\JMS\Serializer\Annotation\SkipWhenEmpty]
|
|
public ?GetServerPreferencesMediaContainer $mediaContainer = null;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->mediaContainer = null;
|
|
}
|
|
}
|