import 'package:pieces_os_client/api.dart';
All URIs are relative to http://localhost:3000
Method | HTTP request | Description |
---|---|---|
ocrAnalysesSnapshot | GET /ocr_analyses | Your GET endpoint |
OCRAnalyses ocrAnalysesSnapshot(transferables)
Your GET endpoint
This will get a snapshot of all of your ocr analyses, an ocr analysis is attached to an image analysis.
import 'package:pieces_os_client/api.dart';
final api_instance = OCRAnalysesApi();
final transferables = true; // bool | This is a boolean that will decided if we are want to return the transferable data (default) or not(performance enhancement)
try {
final result = api_instance.ocrAnalysesSnapshot(transferables);
print(result);
} catch (e) {
print('Exception when calling OCRAnalysesApi->ocrAnalysesSnapshot: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
transferables | bool | This is a boolean that will decided if we are want to return the transferable data (default) or not(performance enhancement) | [optional] |
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]