freebox_api_php/freebox/api/v3/symbols/Download/Task/IoPriority.php
alphayax 6af7249c19 Finalize Download core api
Update Download examples
2016-05-24 20:55:26 +02:00

14 lines
306 B
PHP

<?php
namespace alphayax\freebox\api\v3\symbols\Download\Task;
/**
* Symbol IoPriority
* @package alphayax\freebox\api\v3\symbols\Download\Task
* @see alphayax\freebox\api\v3\models\Download\Task
*/
interface IoPriority {
const LOW = 'low';
const NORMAL = 'normal';
const HIGH = 'high';
}