| 1 | <?php | ||
| 15 | class Systems implements RequestInterface | ||
| 16 | { | ||
| 17 | const ENDPOINT = 'https://console.jumpcloud.com/api/systems'; | ||
| 18 | |||
| 19 | use RequestOperationTrait; | ||
| 20 | |||
| 21 | /** | ||
| 22 | * @var FieldsInterface | ||
| 23 | */ | ||
| 24 | private $fields; | ||
| 25 | |||
| 26 | /** | ||
| 27 | * Systems constructor. | ||
| 28 | */ | ||
| 29 | public function __construct() | ||
| 40 | |||
| 41 | /** | ||
| 42 | * @return array | ||
| 43 | */ | ||
| 44 | public function getBody() | ||
| 60 | |||
| 61 | /** | ||
| 62 | * @param FieldsInterface $fields | ||
| 63 | */ | ||
| 64 | public function setFields(FieldsInterface $fields) | ||
| 68 | } | ||
| 69 |