generics
xsdata.formats.dataclass.models.generics
AnyElement
dataclass
Generic model to bind xml document data to wildcard fields.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
qname | Optional[str] | The element's qualified name | None |
text | Optional[str] | The element's text content | None |
tail | Optional[str] | The element's tail content | None |
children | List[object] | The element's list of child elements. | list() |
attributes | Dict[str, str] | The element's key-value attribute mappings. | dict() |
Source code in xsdata/formats/dataclass/models/generics.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
|
DerivedElement
dataclass
Bases: Generic[T]
Generic model wrapper for type substituted elements.
Example: e.g. ...
Parameters:
Name | Type | Description | Default |
---|---|---|---|
qname | str | The element's qualified name | required |
value | T | The wrapped value | required |
type | Optional[str] | The real xsi:type | None |
Source code in xsdata/formats/dataclass/models/generics.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
|