mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-14 00:06:15 +01:00
18 lines
347 B
Python
18 lines
347 B
Python
from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
|
|
|
|
|
|
class RequestActionSource(XmlModel):
|
|
XML_TAG = "source"
|
|
|
|
project: str = Field(
|
|
xml_attribute=True,
|
|
)
|
|
|
|
package: Optional[str] = Field(
|
|
xml_attribute=True,
|
|
)
|
|
|
|
rev: Optional[str] = Field(
|
|
xml_attribute=True,
|
|
)
|