freebox_api_php/freebox/api/v3/symbols/SwitchPort/Status/Duplex.php
2016-05-28 15:07:31 +02:00

17 lines
358 B
PHP

<?php
namespace alphayax\freebox\api\v3\symbols\SwitchPort\Status;
/**
* Symbol Duplex
* @package alphayax\freebox\api\v3\symbols\SwitchPort\Status
* @see alphayax\freebox\api\v3\models\SwitchPort\Stats
*/
interface Duplex {
/** force in half duplex mode */
const HALF = 'half';
/** force in full duplex mode */
const FULL = 'full';
}