@@ -85,7 +85,7 @@ public interface ILiteCellsApi
85
85
/// <param name="objecttype"></param>
86
86
/// <param name="file">File to upload</param>
87
87
/// <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 ) ;
89
89
90
90
/// <summary>
91
91
///
@@ -153,7 +153,7 @@ public interface ILiteCellsApi
153
153
/// <param name="path"> (optional)</param>
154
154
/// <param name="storageName"> (optional)</param>
155
155
/// <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 ) ;
157
157
158
158
159
159
/// <summary>
@@ -531,15 +531,15 @@ public FilesResult PostAssemble( IDictionary<string, System.IO.Stream> files, st
531
531
/// <param name="objecttype"></param>
532
532
/// <param name="file">File to upload</param>
533
533
/// <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 )
535
535
{
536
536
checkAccessToken ( ) ;
537
537
// verify the required parameter 'objecttype' is set
538
538
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 " ) ;
540
540
// verify the required parameter 'file' is set
541
541
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 " ) ;
543
543
544
544
var localVarPath = "/cells/clearobjects" ;
545
545
var localVarPathParams = new Dictionary < String , String > ( ) ;
@@ -578,7 +578,7 @@ public FilesResult PostCleaeObjects( IDictionary<string, System.IO.Stream> files
578
578
579
579
if ( ExceptionFactory != null )
580
580
{
581
- Exception exception = ExceptionFactory ( "PostCleaeObjects " , localVarResponse ) ;
581
+ Exception exception = ExceptionFactory ( "PostClearObjects " , localVarResponse ) ;
582
582
if ( exception != null ) throw exception ;
583
583
}
584
584
@@ -862,7 +862,7 @@ public FilesResult PostProtect( IDictionary<string, System.IO.Stream> files, str
862
862
/// <param name="path"> (optional)</param>
863
863
/// <param name="storageName"> (optional)</param>
864
864
/// <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 )
866
866
{
867
867
checkAccessToken ( ) ;
868
868
// verify the required parameter 'text' is set
0 commit comments