mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-15 00:36:11 +01:00
14 lines
274 B
Python
14 lines
274 B
Python
|
from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
|
||
|
|
||
|
|
||
|
class RequestActionPerson(XmlModel):
|
||
|
XML_TAG = "person"
|
||
|
|
||
|
name: str = Field(
|
||
|
xml_attribute=True,
|
||
|
)
|
||
|
|
||
|
role: Optional[str] = Field(
|
||
|
xml_attribute=True,
|
||
|
)
|