Skip to content

Commit

Permalink
add generated v1
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianMindee committed Jul 30, 2024
1 parent 5e12e75 commit 8a0a50e
Show file tree
Hide file tree
Showing 23 changed files with 380 additions and 289 deletions.
10 changes: 5 additions & 5 deletions docs/bank_account_details_v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Using the [sample below](https://github.com/mindee/client-lib-test-data/blob/mai
![Bank Account Details sample](https://github.com/mindee/client-lib-test-data/blob/main/products/bank_account_details/default_sample.jpg?raw=true)

# Quick-Start
```cs
```csharp
using Mindee;
using Mindee.Input;
using Mindee.Product.Fr.BankAccountDetails;
Expand Down Expand Up @@ -118,28 +118,28 @@ The following fields are extracted for Bank Account Details V2:
## Account Holder's Names
**AccountHoldersNames**: Full extraction of the account holders names.

```cs
```csharp
System.Console.WriteLine(result.Document.Inference.Prediction.AccountHoldersNames.Value);
```

## Basic Bank Account Number
**Bban**([BankAccountDetailsV2Bban](#basic-bank-account-number-field)): Full extraction of BBAN, including: branch code, bank code, account and key.

```cs
```csharp
System.Console.WriteLine(result.Document.Inference.Prediction.Bban.Value);
```

## IBAN
**Iban**: Full extraction of the IBAN number.

```cs
```csharp
System.Console.WriteLine(result.Document.Inference.Prediction.Iban.Value);
```

## SWIFT Code
**SwiftCode**: Full extraction of the SWIFT code.

```cs
```csharp
System.Console.WriteLine(result.Document.Inference.Prediction.SwiftCode.Value);
```

Expand Down
18 changes: 9 additions & 9 deletions docs/bank_check_v1.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Using the [sample below](https://github.com/mindee/client-lib-test-data/blob/mai
![Bank Check sample](https://github.com/mindee/client-lib-test-data/blob/main/products/bank_check/default_sample.jpg?raw=true)

# Quick-Start
```cs
```csharp
using Mindee;
using Mindee.Input;
using Mindee.Product.Us.BankCheck;
Expand Down Expand Up @@ -126,28 +126,28 @@ The following fields are extracted for Bank Check V1:
## Account Number
**AccountNumber**: The check payer's account number.

```cs
```csharp
System.Console.WriteLine(result.Document.Inference.Prediction.AccountNumber.Value);
```

## Amount
**Amount**: The amount of the check.

```cs
```csharp
System.Console.WriteLine(result.Document.Inference.Prediction.Amount.Value);
```

## Check Number
**CheckNumber**: The issuer's check number.

```cs
```csharp
System.Console.WriteLine(result.Document.Inference.Prediction.CheckNumber.Value);
```

## Check Position
[📄](#page-level-fields "This field is only present on individual pages.")**CheckPosition**: The position of the check on the document.

```cs
```csharp
foreach (var CheckPositionElem in result.Document.Inference.Prediction.CheckPosition)
{
System.Console.WriteLine(CheckPositionElem).Polygon;
Expand All @@ -157,14 +157,14 @@ foreach (var CheckPositionElem in result.Document.Inference.Prediction.CheckPosi
## Check Issue Date
**Date**: The date the check was issued.

```cs
```csharp
System.Console.WriteLine(result.Document.Inference.Prediction.Date.Value);
```

## Payees
**Payees**: List of the check's payees (recipients).

```cs
```csharp
foreach (var PayeesElem in result.Document.Inference.Prediction.Payees)
{
System.Console.WriteLine(PayeesElem.Value);
Expand All @@ -174,14 +174,14 @@ foreach (var PayeesElem in result.Document.Inference.Prediction.Payees)
## Routing Number
**RoutingNumber**: The check issuer's routing number.

```cs
```csharp
System.Console.WriteLine(result.Document.Inference.Prediction.RoutingNumber.Value);
```

## Signature Positions
[📄](#page-level-fields "This field is only present on individual pages.")**SignaturesPositions**: List of signature positions

```cs
```csharp
foreach (var page in result.Document.Inference.Pages)
{
foreach (var SignaturesPositionsElem in page.Prediction.SignaturesPositions)
Expand Down
6 changes: 3 additions & 3 deletions docs/barcode_reader_v1.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Using the [sample below](https://github.com/mindee/client-lib-test-data/blob/mai
![Barcode Reader sample](https://github.com/mindee/client-lib-test-data/blob/main/products/barcode_reader/default_sample.jpg?raw=true)

# Quick-Start
```cs
```csharp
using Mindee;
using Mindee.Input;
using Mindee.Product.BarcodeReader;
Expand Down Expand Up @@ -95,7 +95,7 @@ The following fields are extracted for Barcode Reader V1:
## Barcodes 1D
**Codes1D**: List of decoded 1D barcodes.

```cs
```csharp
foreach (var Codes1DElem in result.Document.Inference.Prediction.Codes1D)
{
System.Console.WriteLine(Codes1DElem.Value);
Expand All @@ -105,7 +105,7 @@ foreach (var Codes1DElem in result.Document.Inference.Prediction.Codes1D)
## Barcodes 2D
**Codes2D**: List of decoded 2D barcodes.

```cs
```csharp
foreach (var Codes2DElem in result.Document.Inference.Prediction.Codes2D)
{
System.Console.WriteLine(Codes2DElem.Value);
Expand Down
Loading

0 comments on commit 8a0a50e

Please sign in to comment.