. * */ namespace Friendica\Object\Api\Mastodon; /** * Enumeration of order types that can be requested */ abstract class TimelineOrderByTypes { const CHANGED = 'changed'; const CREATED = 'created'; const COMMENTED = 'commented'; const EDITED = 'edited'; const ID = 'id'; const RECEIVED = 'received'; }