@@ -168,7 +168,8 @@ class Task implements ArrayAccess
168168 'baselines ' => '\Aspose\Tasks\Model\TaskBaseline[] ' ,
169169 'extended_attributes ' => '\Aspose\Tasks\Model\ExtendedAttribute[] ' ,
170170 'outline_codes ' => '\Aspose\Tasks\Model\OutlineCode[] ' ,
171- 'warning ' => 'bool '
171+ 'warning ' => 'bool ' ,
172+ 'activityId ' => 'string '
172173 ];
173174
174175 /*
@@ -289,7 +290,8 @@ class Task implements ArrayAccess
289290 'baselines ' => null ,
290291 'extended_attributes ' => null ,
291292 'outline_codes ' => null ,
292- 'warning ' => null
293+ 'warning ' => null ,
294+ 'activityId ' => null
293295 ];
294296
295297 /*
@@ -431,7 +433,8 @@ public static function swaggerFormats()
431433 'baselines ' => 'Baselines ' ,
432434 'extended_attributes ' => 'ExtendedAttributes ' ,
433435 'outline_codes ' => 'OutlineCodes ' ,
434- 'warning ' => 'Warning '
436+ 'warning ' => 'Warning ' ,
437+ 'activityId ' => 'ActivityId '
435438 ];
436439
437440 /*
@@ -552,7 +555,8 @@ public static function swaggerFormats()
552555 'baselines ' => 'setBaselines ' ,
553556 'extended_attributes ' => 'setExtendedAttributes ' ,
554557 'outline_codes ' => 'setOutlineCodes ' ,
555- 'warning ' => 'setWarning '
558+ 'warning ' => 'setWarning ' ,
559+ 'activityId ' => 'setActivityId '
556560 ];
557561
558562 /*
@@ -673,7 +677,8 @@ public static function swaggerFormats()
673677 'baselines ' => 'getBaselines ' ,
674678 'extended_attributes ' => 'getExtendedAttributes ' ,
675679 'outline_codes ' => 'getOutlineCodes ' ,
676- 'warning ' => 'getWarning '
680+ 'warning ' => 'getWarning ' ,
681+ 'activityId ' => 'getActivityId '
677682 ];
678683
679684 /*
@@ -849,6 +854,7 @@ public function __construct(array $data = null)
849854 $ this ->container ['extended_attributes ' ] = isset ($ data ['extended_attributes ' ]) ? $ data ['extended_attributes ' ] : null ;
850855 $ this ->container ['outline_codes ' ] = isset ($ data ['outline_codes ' ]) ? $ data ['outline_codes ' ] : null ;
851856 $ this ->container ['warning ' ] = isset ($ data ['warning ' ]) ? $ data ['warning ' ] : null ;
857+ $ this ->container ['activityId ' ] = isset ($ data ['activityId ' ]) ? $ data ['activityId ' ] : null ;
852858 }
853859
854860 /*
@@ -4127,6 +4133,30 @@ public function setWarning($warning)
41274133
41284134 return $ this ;
41294135 }
4136+
4137+ /*
4138+ * Gets activityId
4139+ *
4140+ * @return string
4141+ */
4142+ public function getActivityId ()
4143+ {
4144+ return $ this ->container ['activityId ' ];
4145+ }
4146+
4147+ /*
4148+ * Sets activityId
4149+ *
4150+ * @param string $activityId Represents activity id field - a task's unique identifier used by Primavera (only applicable to Primavera projects).
4151+ *
4152+ * @return $this
4153+ */
4154+ public function setActivityId ($ activityId )
4155+ {
4156+ $ this ->container ['activityId ' ] = $ activityId ;
4157+
4158+ return $ this ;
4159+ }
41304160 /*
41314161 * Returns true if offset exists. False otherwise.
41324162 *
0 commit comments