| 1 | <?php |
||
| 13 | class WorkspaceProjects extends Workspace |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | public $uri = 'workspaces/{workspace_id}/projects?active={active}&actual_hours={actual_hours}&only_templates={only_templates}'; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var boolean |
||
| 22 | */ |
||
| 23 | public $active = true; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var boolean |
||
| 27 | */ |
||
| 28 | public $actualHours = false; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var boolean |
||
| 32 | */ |
||
| 33 | public $onlyTemplates = false; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * WorkspaceProjects constructor. |
||
| 37 | * |
||
| 38 | * @param array $properties |
||
| 39 | */ |
||
| 40 | 5 | public function __construct(array $properties) |
|
| 56 | } |
||
| 57 |