You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/formrecognizer/azure-ai-formrecognizer/CHANGELOG.md
+3
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,9 @@
22
22
`CustomFormModel` and `CustomFormModelInfo` models.
23
23
-`models` property of `CustomFormModel` is renamed to `submodels`
24
24
-`CustomFormSubModel` is renamed to `CustomFormSubmodel`
25
+
- Removed `USReceipt`. To see how to deal with the return value of `begin_recognize_receipts`, see the recognize receipt samples in the [samples directory](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/formrecognizer/azure-ai-formrecognizer/samples) for details.
26
+
- Removed `USReceiptItem`. To see how to access the individual items on a receipt, see the recognize receipt samples in the [samples directory](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/formrecognizer/azure-ai-formrecognizer/samples) for details.
27
+
- Removed `ReceiptType` and the `receipt_type` property from `RecognizedReceipt`. See the recognize receipt samples in the [samples directory](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/formrecognizer/azure-ai-formrecognizer/samples) for details.
Copy file name to clipboardExpand all lines: sdk/formrecognizer/azure-ai-formrecognizer/README.md
+12-16
Original file line number
Diff line number
Diff line change
@@ -210,7 +210,7 @@ for cell in table.cells:
210
210
```
211
211
212
212
### Recognize Receipts
213
-
Recognize data fromUSA sales receipts using a prebuilt model.
213
+
Recognize data fromUSA sales receipts using a prebuilt model. [Here][service_recognize_receipt] are the fields the service returns for a recognized receipt.
214
214
215
215
```python
216
216
from azure.ai.formrecognizer import FormRecognizerClient
@@ -227,21 +227,16 @@ with open("<path to your receipt>", "rb") as fd:
0 commit comments