mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-15 08:36:13 +01:00
26 lines
444 B
Python
26 lines
444 B
Python
|
from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
|
||
|
|
||
|
|
||
|
class RequestSourcediffIssue(XmlModel):
|
||
|
XML_TAG = "issue"
|
||
|
|
||
|
state: str = Field(
|
||
|
xml_attribute=True,
|
||
|
)
|
||
|
|
||
|
tracker: str = Field(
|
||
|
xml_attribute=True,
|
||
|
)
|
||
|
|
||
|
name: str = Field(
|
||
|
xml_attribute=True,
|
||
|
)
|
||
|
|
||
|
label: str = Field(
|
||
|
xml_attribute=True,
|
||
|
)
|
||
|
|
||
|
url: str = Field(
|
||
|
xml_attribute=True,
|
||
|
)
|