You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param \Aspose\Tasks\Model\SummaryRowsCalculationType $summary_rows_calculation_type Gets or sets the type of calculation of the custom attribute's value for summary rows.
@@ -638,6 +644,9 @@ public function listInvalidProperties()
638
644
{
639
645
$invalidProperties = [];
640
646
647
+
if ($this->container['is_root'] === null) {
648
+
$invalidProperties[] = "'is_root' can't be null";
649
+
}
641
650
if ($this->container['uid'] === null) {
642
651
$invalidProperties[] = "'uid' can't be null";
643
652
}
@@ -809,6 +818,9 @@ public function listInvalidProperties()
809
818
publicfunctionvalid()
810
819
{
811
820
821
+
if ($this->container['is_root'] === null) {
822
+
returnfalse;
823
+
}
812
824
if ($this->container['uid'] === null) {
813
825
returnfalse;
814
826
}
@@ -972,6 +984,30 @@ public function valid()
972
984
}
973
985
974
986
987
+
/*
988
+
* Gets is_root
989
+
*
990
+
* @return bool
991
+
*/
992
+
publicfunctiongetIsRoot()
993
+
{
994
+
return$this->container['is_root'];
995
+
}
996
+
997
+
/*
998
+
* Sets is_root
999
+
*
1000
+
* @param bool $is_root Gets the flag indicating whether resource is a root resource. Root resource is a special resource which is intended to support internals of MS Project's formats and is not intended to be used directly from the user's code.
0 commit comments