Skip to content

Commit a59cc25

Browse files
committed
deploy: 7c18073
1 parent 89dd690 commit a59cc25

1,245 files changed

Lines changed: 146932 additions & 204447 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

allclasses-index.html

Lines changed: 454 additions & 874 deletions
Large diffs are not rendered by default.

allclasses.html

Lines changed: 176 additions & 244 deletions
Large diffs are not rendered by default.

allpackages-index.html

Lines changed: 51 additions & 71 deletions
Large diffs are not rendered by default.

code_samples/bank_account_details_v1.txt

Lines changed: 0 additions & 41 deletions
This file was deleted.

code_samples/bank_account_details_v2.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import com.mindee.MindeeClient;
21
import com.mindee.input.LocalInputSource;
3-
import com.mindee.parsing.common.PredictResponse;
4-
import com.mindee.product.fr.bankaccountdetails.BankAccountDetailsV2;
2+
import com.mindee.v1.MindeeClient;
3+
import com.mindee.v1.parsing.common.PredictResponse;
4+
import com.mindee.v1.product.fr.bankaccountdetails.BankAccountDetailsV2;
55
import java.io.File;
66
import java.io.IOException;
77

@@ -12,10 +12,10 @@ public class SimpleMindeeClientV1 {
1212
String filePath = "/path/to/the/file.ext";
1313

1414
// Init a new client
15-
MindeeClient mindeeClient = new MindeeClient(apiKey);
15+
var mindeeClient = new MindeeClient(apiKey);
1616

1717
// Load a file from disk
18-
LocalInputSource inputSource = new LocalInputSource(filePath);
18+
var inputSource = new LocalInputSource(filePath);
1919

2020
// Parse the file
2121
PredictResponse<BankAccountDetailsV2> response = mindeeClient.parse(

code_samples/bank_check_v1.txt

Lines changed: 0 additions & 41 deletions
This file was deleted.

code_samples/barcode_reader_v1.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import com.mindee.MindeeClient;
21
import com.mindee.input.LocalInputSource;
3-
import com.mindee.parsing.common.PredictResponse;
4-
import com.mindee.product.barcodereader.BarcodeReaderV1;
2+
import com.mindee.v1.MindeeClient;
3+
import com.mindee.v1.parsing.common.PredictResponse;
4+
import com.mindee.v1.product.barcodereader.BarcodeReaderV1;
55
import java.io.File;
66
import java.io.IOException;
77

@@ -12,10 +12,10 @@ public class SimpleMindeeClientV1 {
1212
String filePath = "/path/to/the/file.ext";
1313

1414
// Init a new client
15-
MindeeClient mindeeClient = new MindeeClient(apiKey);
15+
var mindeeClient = new MindeeClient(apiKey);
1616

1717
// Load a file from disk
18-
LocalInputSource inputSource = new LocalInputSource(filePath);
18+
var inputSource = new LocalInputSource(filePath);
1919

2020
// Parse the file
2121
PredictResponse<BarcodeReaderV1> response = mindeeClient.parse(

code_samples/bill_of_lading_v1_async.txt

Lines changed: 0 additions & 41 deletions
This file was deleted.

code_samples/business_card_v1_async.txt

Lines changed: 0 additions & 41 deletions
This file was deleted.

code_samples/carte_grise_v1.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import com.mindee.MindeeClient;
21
import com.mindee.input.LocalInputSource;
3-
import com.mindee.parsing.common.PredictResponse;
4-
import com.mindee.product.fr.cartegrise.CarteGriseV1;
2+
import com.mindee.v1.MindeeClient;
3+
import com.mindee.v1.parsing.common.PredictResponse;
4+
import com.mindee.v1.product.fr.cartegrise.CarteGriseV1;
55
import java.io.File;
66
import java.io.IOException;
77

@@ -12,10 +12,10 @@ public class SimpleMindeeClientV1 {
1212
String filePath = "/path/to/the/file.ext";
1313

1414
// Init a new client
15-
MindeeClient mindeeClient = new MindeeClient(apiKey);
15+
var mindeeClient = new MindeeClient(apiKey);
1616

1717
// Load a file from disk
18-
LocalInputSource inputSource = new LocalInputSource(filePath);
18+
var inputSource = new LocalInputSource(filePath);
1919

2020
// Parse the file
2121
PredictResponse<CarteGriseV1> response = mindeeClient.parse(

0 commit comments

Comments
 (0)