@@ -203,46 +203,6 @@ def ai_bcr_parse_async(self, request: requests.AiBcrParseRequest) -> multiproces
203203 http_request = request .to_http_info (self .api_client .configuration )
204204 return self .__make_request_async (http_request , 'POST' , 'ListResponseOfHierarchicalObject' )
205205
206- def ai_bcr_parse_ocr_data (self , request : requests .AiBcrParseOcrDataRequest ) -> ListResponseOfHierarchicalObject :
207- """Parse OCR data to vCard properties
208-
209-
210- :param request AiBcrParseOcrDataRequest object with parameters
211- :return: ListResponseOfHierarchicalObject
212- """
213- http_request = request .to_http_info (self .api_client .configuration )
214- return self .__make_request (http_request , 'POST' , 'ListResponseOfHierarchicalObject' )
215-
216- def ai_bcr_parse_ocr_data_async (self , request : requests .AiBcrParseOcrDataRequest ) -> multiprocessing .pool .AsyncResult :
217- """Parse OCR data to vCard properties
218- Performs operation asynchronously. Returns multiprocessing.pool.AsyncResult
219-
220- :param request AiBcrParseOcrDataRequest object with parameters
221- :return: multiprocessing.pool.AsyncResult (AsyncResult.get() returns ListResponseOfHierarchicalObject)
222- """
223- http_request = request .to_http_info (self .api_client .configuration )
224- return self .__make_request_async (http_request , 'POST' , 'ListResponseOfHierarchicalObject' )
225-
226- def ai_bcr_parse_ocr_data_storage (self , request : requests .AiBcrParseOcrDataStorageRequest ) -> ListResponseOfStorageFileLocation :
227- """Parse vCards from OCR data and save them to Storage
228-
229-
230- :param request AiBcrParseOcrDataStorageRequest object with parameters
231- :return: ListResponseOfStorageFileLocation
232- """
233- http_request = request .to_http_info (self .api_client .configuration )
234- return self .__make_request (http_request , 'POST' , 'ListResponseOfStorageFileLocation' )
235-
236- def ai_bcr_parse_ocr_data_storage_async (self , request : requests .AiBcrParseOcrDataStorageRequest ) -> multiprocessing .pool .AsyncResult :
237- """Parse vCards from OCR data and save them to Storage
238- Performs operation asynchronously. Returns multiprocessing.pool.AsyncResult
239-
240- :param request AiBcrParseOcrDataStorageRequest object with parameters
241- :return: multiprocessing.pool.AsyncResult (AsyncResult.get() returns ListResponseOfStorageFileLocation)
242- """
243- http_request = request .to_http_info (self .api_client .configuration )
244- return self .__make_request_async (http_request , 'POST' , 'ListResponseOfStorageFileLocation' )
245-
246206 def ai_bcr_parse_storage (self , request : requests .AiBcrParseStorageRequest ) -> ListResponseOfStorageFileLocation :
247207 """Parse images from storage to vCard files
248208
0 commit comments