Skip to content

Commit b58e419

Browse files
[TASKSCLOUD-583] - Deployed new 21.8 version.
1 parent 358aee0 commit b58e419

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

src/Aspose/Tasks/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ class Configuration
143143
* Version of Aspose.Tasks Cloud API
144144
*
145145
*/
146-
protected $clientVersion = '21.2';
146+
protected $clientVersion = '21.8';
147147

148148
/*
149149
* Constructor

src/Aspose/Tasks/Model/Task.php

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ class Task implements ArrayAccess
9797
'fixed_cost_accrual' => '\Aspose\Tasks\Model\CostAccrualType',
9898
'free_slack' => 'int',
9999
'guid' => 'string',
100+
'has_overallocated_resource' => 'bool',
100101
'hide_bar' => 'bool',
101102
'ignore_resource_calendar' => 'bool',
102103
'late_finish' => '\DateTime',
@@ -219,6 +220,7 @@ class Task implements ArrayAccess
219220
'fixed_cost_accrual' => null,
220221
'free_slack' => 'int32',
221222
'guid' => null,
223+
'has_overallocated_resource' => null,
222224
'hide_bar' => null,
223225
'ignore_resource_calendar' => null,
224226
'late_finish' => 'date-time',
@@ -362,6 +364,7 @@ public static function swaggerFormats()
362364
'fixed_cost_accrual' => 'FixedCostAccrual',
363365
'free_slack' => 'FreeSlack',
364366
'guid' => 'GUID',
367+
'has_overallocated_resource' => 'HasOverallocatedResource',
365368
'hide_bar' => 'HideBar',
366369
'ignore_resource_calendar' => 'IgnoreResourceCalendar',
367370
'late_finish' => 'LateFinish',
@@ -484,6 +487,7 @@ public static function swaggerFormats()
484487
'fixed_cost_accrual' => 'setFixedCostAccrual',
485488
'free_slack' => 'setFreeSlack',
486489
'guid' => 'setGuid',
490+
'has_overallocated_resource' => 'setHasOverallocatedResource',
487491
'hide_bar' => 'setHideBar',
488492
'ignore_resource_calendar' => 'setIgnoreResourceCalendar',
489493
'late_finish' => 'setLateFinish',
@@ -606,6 +610,7 @@ public static function swaggerFormats()
606610
'fixed_cost_accrual' => 'getFixedCostAccrual',
607611
'free_slack' => 'getFreeSlack',
608612
'guid' => 'getGuid',
613+
'has_overallocated_resource' => 'getHasOverallocatedResource',
609614
'hide_bar' => 'getHideBar',
610615
'ignore_resource_calendar' => 'getIgnoreResourceCalendar',
611616
'late_finish' => 'getLateFinish',
@@ -782,6 +787,7 @@ public function __construct(array $data = null)
782787
$this->container['fixed_cost_accrual'] = isset($data['fixed_cost_accrual']) ? $data['fixed_cost_accrual'] : null;
783788
$this->container['free_slack'] = isset($data['free_slack']) ? $data['free_slack'] : null;
784789
$this->container['guid'] = isset($data['guid']) ? $data['guid'] : null;
790+
$this->container['has_overallocated_resource'] = isset($data['has_overallocated_resource']) ? $data['has_overallocated_resource'] : null;
785791
$this->container['hide_bar'] = isset($data['hide_bar']) ? $data['hide_bar'] : null;
786792
$this->container['ignore_resource_calendar'] = isset($data['ignore_resource_calendar']) ? $data['ignore_resource_calendar'] : null;
787793
$this->container['late_finish'] = isset($data['late_finish']) ? $data['late_finish'] : null;
@@ -2406,6 +2412,31 @@ public function setGuid($guid)
24062412
return $this;
24072413
}
24082414

2415+
/*
2416+
* Gets has_overallocated_resource
2417+
*
2418+
* @return bool
2419+
*/
2420+
public function getHasOverallocatedResource()
2421+
{
2422+
return $this->container['has_overallocated_resource'];
2423+
}
2424+
2425+
/*
2426+
* Sets has_overallocated_resource
2427+
*
2428+
* @param bool $has_overallocated_resource Indicates whether the task has an resource assigned which has more work
2429+
* on assigned tasks than can be completed within normal working capacity.
2430+
*
2431+
* @return $this
2432+
*/
2433+
public function setHasOverallocatedResource($has_overallocated_resource)
2434+
{
2435+
$this->container['has_overallocated_resource'] = $has_overallocated_resource;
2436+
2437+
return $this;
2438+
}
2439+
24092440
/*
24102441
* Gets hide_bar
24112442
*

0 commit comments

Comments
 (0)