DocumentKeyValuePair Klasse
Ein Objekt, das ein Dokumentfeld mit einer eindeutigen Feldbeschriftung (Schlüssel) und einem Feldwert darstellt (kann leer sein).
- Vererbung
-
builtins.objectDocumentKeyValuePair
Konstruktor
DocumentKeyValuePair(**kwargs: Any)
Methoden
from_dict |
Konvertiert ein Diktat in der Form eines DocumentKeyValuePair in das Modell selbst. |
to_dict |
Gibt eine Diktatdarstellung von DocumentKeyValuePair zurück. |
from_dict
Konvertiert ein Diktat in der Form eines DocumentKeyValuePair in das Modell selbst.
from_dict(data: Dict) -> DocumentKeyValuePair
Parameter
Name | Beschreibung |
---|---|
data
Erforderlich
|
Ein Wörterbuch in der Form documentKeyValuePair. |
Gibt zurück
Typ | Beschreibung |
---|---|
DocumentKeyValuePair |
to_dict
Gibt eine Diktatdarstellung von DocumentKeyValuePair zurück.
to_dict() -> Dict
Gibt zurück
Typ | Beschreibung |
---|---|
dict |
Attribute
confidence
Vertrauen, dass das Schlüssel-Wert-Paar ordnungsgemäß extrahiert wird.
confidence: float
key
Feldbeschriftung des Schlüssel-Wert-Paares.
key: DocumentKeyValueElement
value
Feldwert des Schlüssel-Wert-Paares.
value: DocumentKeyValueElement | None
Azure SDK for Python