mirror of
https://github.com/LukeHagar/plexphp.git
synced 2025-12-06 04:20:51 +00:00
22 lines
286 B
PHP
22 lines
286 B
PHP
<?php
|
|
|
|
/**
|
|
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace LukeHagar\Plex_API\Models\Operations;
|
|
|
|
|
|
/**
|
|
* Adds the Guids object to the response
|
|
*
|
|
*
|
|
*/
|
|
enum IncludeGuids: int
|
|
{
|
|
case Disable = 0;
|
|
case Enable = 1;
|
|
}
|