mirror of
https://github.com/immich-app/immich
synced 2026-08-29 13:15:45 +00:00
106 lines
2.3 KiB
Dart
106 lines
2.3 KiB
Dart
//
|
||
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
||
//
|
||
// @dart=2.18
|
||
|
||
// ignore_for_file: unused_element, unused_import
|
||
// ignore_for_file: always_put_required_named_parameters_first
|
||
// ignore_for_file: constant_identifier_names
|
||
// ignore_for_file: lines_longer_than_80_chars
|
||
|
||
import 'package:openapi/api.dart';
|
||
import 'package:test/test.dart';
|
||
|
||
// tests for SyncAssetOcrV1
|
||
void main() {
|
||
// final instance = SyncAssetOcrV1();
|
||
|
||
group('test SyncAssetOcrV1', () {
|
||
// Asset ID
|
||
// String assetId
|
||
test('to test the property `assetId`', () async {
|
||
// TODO
|
||
});
|
||
|
||
// Confidence score of the bounding box
|
||
// double boxScore
|
||
test('to test the property `boxScore`', () async {
|
||
// TODO
|
||
});
|
||
|
||
// OCR entry ID
|
||
// String id
|
||
test('to test the property `id`', () async {
|
||
// TODO
|
||
});
|
||
|
||
// Whether the OCR entry is visible
|
||
// bool isVisible
|
||
test('to test the property `isVisible`', () async {
|
||
// TODO
|
||
});
|
||
|
||
// Recognized text content
|
||
// String text
|
||
test('to test the property `text`', () async {
|
||
// TODO
|
||
});
|
||
|
||
// Confidence score of the recognized text
|
||
// double textScore
|
||
test('to test the property `textScore`', () async {
|
||
// TODO
|
||
});
|
||
|
||
// Top-left X coordinate (normalized 0–1)
|
||
// double x1
|
||
test('to test the property `x1`', () async {
|
||
// TODO
|
||
});
|
||
|
||
// Top-right X coordinate (normalized 0–1)
|
||
// double x2
|
||
test('to test the property `x2`', () async {
|
||
// TODO
|
||
});
|
||
|
||
// Bottom-right X coordinate (normalized 0–1)
|
||
// double x3
|
||
test('to test the property `x3`', () async {
|
||
// TODO
|
||
});
|
||
|
||
// Bottom-left X coordinate (normalized 0–1)
|
||
// double x4
|
||
test('to test the property `x4`', () async {
|
||
// TODO
|
||
});
|
||
|
||
// Top-left Y coordinate (normalized 0–1)
|
||
// double y1
|
||
test('to test the property `y1`', () async {
|
||
// TODO
|
||
});
|
||
|
||
// Top-right Y coordinate (normalized 0–1)
|
||
// double y2
|
||
test('to test the property `y2`', () async {
|
||
// TODO
|
||
});
|
||
|
||
// Bottom-right Y coordinate (normalized 0–1)
|
||
// double y3
|
||
test('to test the property `y3`', () async {
|
||
// TODO
|
||
});
|
||
|
||
// Bottom-left Y coordinate (normalized 0–1)
|
||
// double y4
|
||
test('to test the property `y4`', () async {
|
||
// TODO
|
||
});
|
||
|
||
|
||
});
|
||
|
||
}
|