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