mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-14 16:26:13 +01:00
20 lines
403 B
Python
20 lines
403 B
Python
from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
|
|
|
|
from .enums import ReleaseTriggers
|
|
|
|
|
|
class RepositoryReleasetarget(XmlModel):
|
|
XML_TAG = "releasetarget"
|
|
|
|
project: str = Field(
|
|
xml_attribute=True,
|
|
)
|
|
|
|
repository: str = Field(
|
|
xml_attribute=True,
|
|
)
|
|
|
|
trigger: Optional[ReleaseTriggers] = Field(
|
|
xml_attribute=True,
|
|
)
|