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