@@ -134,13 +134,13 @@ public CompareComplyService(string versionDate, Credentials credentials) : base(
134
134
/// <param name="callback">The callback function that is invoked when the operation completes.</param>
135
135
/// <param name="file">The document to convert.</param>
136
136
/// <param name="filename">The filename for file.</param>
137
+ /// <param name="fileContentType">The content type of file. (optional)</param>
137
138
/// <param name="model">The analysis model to be used by the service. For the **Element classification** and
138
139
/// **Compare two documents** methods, the default is `contracts`. For the **Extract tables** method, the
139
140
/// default is `tables`. These defaults apply to the standalone methods as well as to the methods' use in
140
141
/// batch-processing requests. (optional)</param>
141
- /// <param name="fileContentType">The content type of file. (optional)</param>
142
142
/// <returns><see cref="HTMLReturn" />HTMLReturn</returns>
143
- public bool ConvertToHtml ( Callback < HTMLReturn > callback , System . IO . MemoryStream file , string filename , string model = null , string fileContentType = null )
143
+ public bool ConvertToHtml ( Callback < HTMLReturn > callback , System . IO . MemoryStream file , string filename , string fileContentType = null , string model = null )
144
144
{
145
145
if ( callback == null )
146
146
throw new ArgumentNullException ( "`callback` is required for `ConvertToHtml`" ) ;
@@ -221,13 +221,13 @@ private void OnConvertToHtmlResponse(RESTConnector.Request req, RESTConnector.Re
221
221
/// </summary>
222
222
/// <param name="callback">The callback function that is invoked when the operation completes.</param>
223
223
/// <param name="file">The document to classify.</param>
224
+ /// <param name="fileContentType">The content type of file. (optional)</param>
224
225
/// <param name="model">The analysis model to be used by the service. For the **Element classification** and
225
226
/// **Compare two documents** methods, the default is `contracts`. For the **Extract tables** method, the
226
227
/// default is `tables`. These defaults apply to the standalone methods as well as to the methods' use in
227
228
/// batch-processing requests. (optional)</param>
228
- /// <param name="fileContentType">The content type of file. (optional)</param>
229
229
/// <returns><see cref="ClassifyReturn" />ClassifyReturn</returns>
230
- public bool ClassifyElements ( Callback < ClassifyReturn > callback , System . IO . MemoryStream file , string model = null , string fileContentType = null )
230
+ public bool ClassifyElements ( Callback < ClassifyReturn > callback , System . IO . MemoryStream file , string fileContentType = null , string model = null )
231
231
{
232
232
if ( callback == null )
233
233
throw new ArgumentNullException ( "`callback` is required for `ClassifyElements`" ) ;
@@ -306,13 +306,13 @@ private void OnClassifyElementsResponse(RESTConnector.Request req, RESTConnector
306
306
/// </summary>
307
307
/// <param name="callback">The callback function that is invoked when the operation completes.</param>
308
308
/// <param name="file">The document on which to run table extraction.</param>
309
+ /// <param name="fileContentType">The content type of file. (optional)</param>
309
310
/// <param name="model">The analysis model to be used by the service. For the **Element classification** and
310
311
/// **Compare two documents** methods, the default is `contracts`. For the **Extract tables** method, the
311
312
/// default is `tables`. These defaults apply to the standalone methods as well as to the methods' use in
312
313
/// batch-processing requests. (optional)</param>
313
- /// <param name="fileContentType">The content type of file. (optional)</param>
314
314
/// <returns><see cref="TableReturn" />TableReturn</returns>
315
- public bool ExtractTables ( Callback < TableReturn > callback , System . IO . MemoryStream file , string model = null , string fileContentType = null )
315
+ public bool ExtractTables ( Callback < TableReturn > callback , System . IO . MemoryStream file , string fileContentType = null , string model = null )
316
316
{
317
317
if ( callback == null )
318
318
throw new ArgumentNullException ( "`callback` is required for `ExtractTables`" ) ;
@@ -392,16 +392,16 @@ private void OnExtractTablesResponse(RESTConnector.Request req, RESTConnector.Re
392
392
/// <param name="callback">The callback function that is invoked when the operation completes.</param>
393
393
/// <param name="file1">The first document to compare.</param>
394
394
/// <param name="file2">The second document to compare.</param>
395
+ /// <param name="file1ContentType">The content type of file1. (optional)</param>
396
+ /// <param name="file2ContentType">The content type of file2. (optional)</param>
395
397
/// <param name="file1Label">A text label for the first document. (optional, default to file_1)</param>
396
398
/// <param name="file2Label">A text label for the second document. (optional, default to file_2)</param>
397
399
/// <param name="model">The analysis model to be used by the service. For the **Element classification** and
398
400
/// **Compare two documents** methods, the default is `contracts`. For the **Extract tables** method, the
399
401
/// default is `tables`. These defaults apply to the standalone methods as well as to the methods' use in
400
402
/// batch-processing requests. (optional)</param>
401
- /// <param name="file1ContentType">The content type of file1. (optional)</param>
402
- /// <param name="file2ContentType">The content type of file2. (optional)</param>
403
403
/// <returns><see cref="CompareReturn" />CompareReturn</returns>
404
- public bool CompareDocuments ( Callback < CompareReturn > callback , System . IO . MemoryStream file1 , System . IO . MemoryStream file2 , string file1Label = null , string file2Label = null , string model = null , string file1ContentType = null , string file2ContentType = null )
404
+ public bool CompareDocuments ( Callback < CompareReturn > callback , System . IO . MemoryStream file1 , System . IO . MemoryStream file2 , string file1ContentType = null , string file2ContentType = null , string file1Label = null , string file2Label = null , string model = null )
405
405
{
406
406
if ( callback == null )
407
407
throw new ArgumentNullException ( "`callback` is required for `CompareDocuments`" ) ;
0 commit comments