@@ -48,6 +48,7 @@ class CellsObjectOperateTaskParameter
4848 protected static $ swaggerTypes = [
4949 'operate_object ' => '\Aspose\Cells\Cloud\Model\OperateObject ' ,
5050 'operate_parameter ' => '\Aspose\Cells\Cloud\Model\OperateParameter ' ,
51+ 'destinatio_data_source ' => '\Aspose\Cells\Cloud\Model\DataSource ' ,
5152 'destination_workbook ' => '\Aspose\Cells\Cloud\Model\FileSource '
5253 ];
5354
@@ -59,6 +60,7 @@ class CellsObjectOperateTaskParameter
5960 protected static $ swaggerFormats = [
6061 'operate_object ' => null ,
6162 'operate_parameter ' => null ,
63+ 'destinatio_data_source ' => null ,
6264 'destination_workbook ' => null
6365 ];
6466
@@ -91,6 +93,7 @@ public static function swaggerFormats()
9193 protected static $ attributeMap = [
9294 'operate_object ' => 'OperateObject ' ,
9395 'operate_parameter ' => 'OperateParameter ' ,
96+ 'destinatio_data_source ' => 'DestinatioDataSource ' ,
9497 'destination_workbook ' => 'DestinationWorkbook '
9598 ];
9699
@@ -102,6 +105,7 @@ public static function swaggerFormats()
102105 protected static $ setters = [
103106 'operate_object ' => 'setOperateObject ' ,
104107 'operate_parameter ' => 'setOperateParameter ' ,
108+ 'destinatio_data_source ' => 'setDestinatioDataSource ' ,
105109 'destination_workbook ' => 'setDestinationWorkbook '
106110 ];
107111
@@ -113,6 +117,7 @@ public static function swaggerFormats()
113117 protected static $ getters = [
114118 'operate_object ' => 'getOperateObject ' ,
115119 'operate_parameter ' => 'getOperateParameter ' ,
120+ 'destinatio_data_source ' => 'getDestinatioDataSource ' ,
116121 'destination_workbook ' => 'getDestinationWorkbook '
117122 ];
118123
@@ -174,6 +179,7 @@ public function __construct(array $data = null)
174179 {
175180 $ this ->container ['operate_object ' ] = isset ($ data ['operate_object ' ]) ? $ data ['operate_object ' ] : null ;
176181 $ this ->container ['operate_parameter ' ] = isset ($ data ['operate_parameter ' ]) ? $ data ['operate_parameter ' ] : null ;
182+ $ this ->container ['destinatio_data_source ' ] = isset ($ data ['destinatio_data_source ' ]) ? $ data ['destinatio_data_source ' ] : null ;
177183 $ this ->container ['destination_workbook ' ] = isset ($ data ['destination_workbook ' ]) ? $ data ['destination_workbook ' ] : null ;
178184 }
179185
@@ -191,6 +197,9 @@ public function listInvalidProperties()
191197 if ($ this ->container ['operate_parameter ' ] === null ) {
192198 $ invalidProperties [] = "'operate_parameter' can't be null " ;
193199 }
200+ if ($ this ->container ['destinatio_data_source ' ] === null ) {
201+ $ invalidProperties [] = "'destinatio_data_source' can't be null " ;
202+ }
194203 if ($ this ->container ['destination_workbook ' ] === null ) {
195204 $ invalidProperties [] = "'destination_workbook' can't be null " ;
196205 }
@@ -211,6 +220,9 @@ public function valid()
211220 if ($ this ->container ['operate_parameter ' ] === null ) {
212221 return false ;
213222 }
223+ if ($ this ->container ['destinatio_data_source ' ] === null ) {
224+ return false ;
225+ }
214226 if ($ this ->container ['destination_workbook ' ] === null ) {
215227 return false ;
216228 }
@@ -263,6 +275,29 @@ public function setOperateParameter($operate_parameter)
263275 return $ this ;
264276 }
265277 /**
278+ * Gets destinatio_data_source
279+ *
280+ * @return \Aspose\Cells\Cloud\Model\DataSource
281+ */
282+ public function getDestinatioDataSource ()
283+ {
284+ return $ this ->container ['destinatio_data_source ' ];
285+ }
286+
287+ /**
288+ * Sets destinatio_data_source
289+ *
290+ *
291+ *
292+ * @return $this
293+ */
294+ public function setDestinatioDataSource ($ destinatio_data_source )
295+ {
296+ $ this ->container ['destinatio_data_source ' ] = $ destinatio_data_source ;
297+
298+ return $ this ;
299+ }
300+ /**
266301 * Gets destination_workbook
267302 *
268303 * @return \Aspose\Cells\Cloud\Model\FileSource
0 commit comments