@@ -85,7 +85,7 @@ public interface ILiteCellsApi
8585 /// <param name="objecttype"></param>
8686 /// <param name="file">File to upload</param>
8787 /// <returns>FilesResult</returns>
88- FilesResult PostCleaeObjects ( IDictionary < string , System . IO . Stream > files , string objecttype ) ;
88+ FilesResult PostClearObjects ( IDictionary < string , System . IO . Stream > files , string objecttype ) ;
8989
9090 /// <summary>
9191 ///
@@ -153,7 +153,7 @@ public interface ILiteCellsApi
153153 /// <param name="path"> (optional)</param>
154154 /// <param name="storageName"> (optional)</param>
155155 /// <returns>System.IO.Stream</returns>
156- IList < Model . TextItem > PostSearch ( string text , IDictionary < string , System . IO . Stream > files , string password = null , string sheetname = null , string path = null , string storageName = null ) ;
156+ IList < Model . TextItem > PostSearch ( IDictionary < string , System . IO . Stream > files , string text , string password = null , string sheetname = null , string path = null , string storageName = null ) ;
157157
158158
159159 /// <summary>
@@ -531,15 +531,15 @@ public FilesResult PostAssemble( IDictionary<string, System.IO.Stream> files, st
531531 /// <param name="objecttype"></param>
532532 /// <param name="file">File to upload</param>
533533 /// <returns>FilesResult</returns>
534- public FilesResult PostCleaeObjects ( IDictionary < string , System . IO . Stream > files , string objecttype )
534+ public FilesResult PostClearObjects ( IDictionary < string , System . IO . Stream > files , string objecttype )
535535 {
536536 checkAccessToken ( ) ;
537537 // verify the required parameter 'objecttype' is set
538538 if ( objecttype == null )
539- throw new ApiException ( 400 , "Missing required parameter 'objecttype' when calling LiteCellsApi->PostCleaeObjects " ) ;
539+ throw new ApiException ( 400 , "Missing required parameter 'objecttype' when calling LiteCellsApi->PostClearObjects " ) ;
540540 // verify the required parameter 'file' is set
541541 if ( files == null )
542- throw new ApiException ( 400 , "Missing required parameter 'file' when calling LiteCellsApi->PostCleaeObjects " ) ;
542+ throw new ApiException ( 400 , "Missing required parameter 'file' when calling LiteCellsApi->PostClearObjects " ) ;
543543
544544 var localVarPath = "/cells/clearobjects" ;
545545 var localVarPathParams = new Dictionary < String , String > ( ) ;
@@ -578,7 +578,7 @@ public FilesResult PostCleaeObjects( IDictionary<string, System.IO.Stream> files
578578
579579 if ( ExceptionFactory != null )
580580 {
581- Exception exception = ExceptionFactory ( "PostCleaeObjects " , localVarResponse ) ;
581+ Exception exception = ExceptionFactory ( "PostClearObjects " , localVarResponse ) ;
582582 if ( exception != null ) throw exception ;
583583 }
584584
@@ -862,7 +862,7 @@ public FilesResult PostProtect( IDictionary<string, System.IO.Stream> files, str
862862 /// <param name="path"> (optional)</param>
863863 /// <param name="storageName"> (optional)</param>
864864 /// <returns>System.IO.Stream</returns>
865- public IList < Model . TextItem > PostSearch ( string text , IDictionary < string , System . IO . Stream > files , string password = null , string sheetname = null , string path = null , string storageName = null )
865+ public IList < Model . TextItem > PostSearch ( IDictionary < string , System . IO . Stream > files , string text , string password = null , string sheetname = null , string path = null , string storageName = null )
866866 {
867867 checkAccessToken ( ) ;
868868 // verify the required parameter 'text' is set
0 commit comments