@@ -1297,10 +1297,10 @@ protected function postClearObjectsRequest($file, $objecttype)
12971297 * @throws \InvalidArgumentException
12981298 * @return \Aspose\Cells\Cloud\Model\FilesResult
12991299 */
1300- public function postExport ($ file , $ object_type , $ format )
1300+ public function postExport ($ file , $ object_type , $ format, $ extended_query_parameters = null )
13011301 {
13021302 $ this ->checkAccessToken ();
1303- list ($ response ) = $ this ->postExportWithHttpInfo ($ file , $ object_type , $ format );
1303+ list ($ response ) = $ this ->postExportWithHttpInfo ($ file , $ object_type , $ format, $ extended_query_parameters );
13041304 return $ response ;
13051305 }
13061306
@@ -1315,10 +1315,10 @@ public function postExport($file, $object_type, $format)
13151315 * @throws \InvalidArgumentException
13161316 * @return array of \Aspose\Cells\Cloud\Model\FilesResult, HTTP status code, HTTP response headers (array of strings)
13171317 */
1318- public function postExportWithHttpInfo ($ file , $ object_type , $ format )
1318+ public function postExportWithHttpInfo ($ file , $ object_type , $ format, $ extended_query_parameters = null )
13191319 {
13201320 $ returnType = '\Aspose\Cells\Cloud\Model\FilesResult ' ;
1321- $ request = $ this ->postExportRequest ($ file , $ object_type , $ format );
1321+ $ request = $ this ->postExportRequest ($ file , $ object_type , $ format, $ extended_query_parameters );
13221322
13231323 try {
13241324 $ options = $ this ->createHttpClientOption ();
@@ -1391,9 +1391,9 @@ public function postExportWithHttpInfo($file, $object_type, $format)
13911391 * @throws \InvalidArgumentException
13921392 * @return \GuzzleHttp\Promise\PromiseInterface
13931393 */
1394- public function postExportAsync ($ file , $ object_type , $ format )
1394+ public function postExportAsync ($ file , $ object_type , $ format, $ extended_query_parameters = null )
13951395 {
1396- return $ this ->postExportAsyncWithHttpInfo ($ file , $ object_type , $ format )
1396+ return $ this ->postExportAsyncWithHttpInfo ($ file , $ object_type , $ format, $ extended_query_parameters )
13971397 ->then (
13981398 function ($ response ) {
13991399 return $ response [0 ];
@@ -1413,10 +1413,10 @@ function ($response) {
14131413 * @throws \InvalidArgumentException
14141414 * @return \GuzzleHttp\Promise\PromiseInterface
14151415 */
1416- public function postExportAsyncWithHttpInfo ($ file , $ object_type , $ format )
1416+ public function postExportAsyncWithHttpInfo ($ file , $ object_type , $ format, $ extended_query_parameters = null )
14171417 {
14181418 $ returnType = '\Aspose\Cells\Cloud\Model\FilesResult ' ;
1419- $ request = $ this ->postExportRequest ($ file , $ object_type , $ format );
1419+ $ request = $ this ->postExportRequest ($ file , $ object_type , $ format, $ extended_query_parameters );
14201420
14211421 return $ this ->client
14221422 ->sendAsync ($ request , $ this ->createHttpClientOption ())
@@ -1465,7 +1465,7 @@ function ($exception) {
14651465 * @throws \InvalidArgumentException
14661466 * @return \GuzzleHttp\Psr7\Request
14671467 */
1468- protected function postExportRequest ($ file , $ object_type , $ format )
1468+ protected function postExportRequest ($ file , $ object_type , $ format, $ extended_query_parameters = null )
14691469 {
14701470 // verify the required parameter 'file' is set
14711471 if ($ file === null ) {
@@ -1501,7 +1501,11 @@ protected function postExportRequest($file, $object_type, $format)
15011501 if ($ format !== null ) {
15021502 $ queryParams ['format ' ] = ObjectSerializer::toQueryValue ($ format );
15031503 }
1504-
1504+ if ($ extended_query_parameters !== null ){
1505+ foreach ($ extended_query_parameters as $ key => $ value ) {
1506+ $ queryParams [$ key ] = ObjectSerializer::toQueryValue ($ value );
1507+ }
1508+ }
15051509
15061510 // form params
15071511 if ($ file !== null ) {
0 commit comments