generics
xsdata.formats.dataclass.models.generics
AnyElement
dataclass
Generic model to bind xml document data to wildcard fields.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
qname
|
str | None
|
The element's qualified name |
None
|
text
|
str | None
|
The element's text content |
None
|
tail
|
str | None
|
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
|
str | None
|
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 | |