mirror of
https://github.com/LukeHagar/plexphp.git
synced 2025-12-06 04:20:51 +00:00
22 lines
328 B
PHP
22 lines
328 B
PHP
<?php
|
|
|
|
/**
|
|
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace LukeHagar\Plex_API\Models\Operations;
|
|
|
|
|
|
/**
|
|
* The direction of the sort. Can be either `asc` or `desc`.
|
|
*
|
|
*
|
|
*/
|
|
enum DefaultDirection: string
|
|
{
|
|
case Ascending = 'asc';
|
|
case Descending = 'desc';
|
|
}
|