> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# DetailedBatch

> ABBYY FlexiCapture Web Services API の DetailedBatch データ型: 文書数、優先度、作成日を含む詳細なバッチ情報。

<div id="what-it-does">
  ## 概要
</div>

**DetailedBatch** データ型には、バッチに関する詳細情報が格納されます。

<div id="fields">
  ## フィールド
</div>

| Name                       | Type                                                                               | Description                                                                                      |
| -------------------------- | ---------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------ |
| `Id`                       | `int`                                                                              | バッチの ID。                                                                                         |
| `Name`                     | `string`                                                                           | バッチの名前。                                                                                          |
| `BatchTypeId`              | `int`                                                                              | バッチタイプの ID。`0` は `Default` バッチタイプを示します。                                                          |
| `Priority`                 | `int`                                                                              | バッチの優先度。指定可能な値については、[ProcessingPriority](/ja/flexi-capture/api/structures/t-priority) を参照してください。 |
| `Description`              | `string`                                                                           | バッチの説明。                                                                                          |
| `Properties`               | [RegistrationProperty](/ja/flexi-capture/api/structures/registration-property)`[]` | バッチの登録パラメーターのセット。                                                                                |
| `PropertiesCount`          | `int`                                                                              | 登録パラメーターの数。                                                                                      |
| `StageExternalId`          | `int`                                                                              | タスクが作成される処理ステージの ID。                                                                             |
| `CreationDate`             | `long`                                                                             | バッチが作成された日時を FILETIME 値で表します。値の変換には、このテーブルの後にある変換例を使用してください。                                     |
| `DocumentsCount`           | `int`                                                                              | バッチ内の文書数。                                                                                        |
| `RecognizedDocumentsCount` | `int`                                                                              | 認識済み文書の数。                                                                                        |
| `AssembledDocumentsCount`  | `int`                                                                              | 組み立て済み文書の数。                                                                                      |
| `VerifiedDocumentsCount`   | `int`                                                                              | 検証済み文書の数。                                                                                        |
| `ExportedDocumentsCount`   | `int`                                                                              | エクスポート済み文書の数。                                                                                    |
| `PagesCount`               | `int`                                                                              | バッチ内のページ数。                                                                                       |
| `RecognizedSymbolsCount`   | `int`                                                                              | 認識された文字数。                                                                                        |
| `UncertainSymbolsCount`    | `int`                                                                              | 不確実な文字の数。                                                                                        |
| `VerificationSymbolsCount` | `int`                                                                              | 検証済み文字の数。                                                                                        |

C# で `CreationDate` を `long` と `DateTime` の間で変換する方法は次のとおりです。

```csharp theme={null}
DateTime dTime;
long lTime;
...
// long から DateTime への変換
dTime = DateTime.FromFileTime(lTime);
...
// DateTime から long への変換
lTime = dTime.ToFileTime();
```
