mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-15 00:36:11 +01:00
22 lines
424 B
Python
22 lines
424 B
Python
from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
|
|
|
|
|
|
class Serviceinfo(XmlModel):
|
|
XML_TAG = "serviceinfo"
|
|
|
|
xsrcmd5: Optional[str] = Field(
|
|
xml_attribute=True,
|
|
)
|
|
|
|
lsrcmd5: Optional[str] = Field(
|
|
xml_attribute=True,
|
|
)
|
|
|
|
error: Optional[str] = Field(
|
|
xml_attribute=True,
|
|
)
|
|
|
|
code: Optional[str] = Field(
|
|
xml_attribute=True,
|
|
)
|