mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-14 00:06:15 +01:00
20 lines
339 B
Python
20 lines
339 B
Python
from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
|
|
|
|
|
|
class RequestHistory(XmlModel):
|
|
XML_TAG = "history"
|
|
|
|
who: str = Field(
|
|
xml_attribute=True,
|
|
)
|
|
|
|
when: str = Field(
|
|
xml_attribute=True,
|
|
)
|
|
|
|
description: str = Field(
|
|
)
|
|
|
|
comment: Optional[str] = Field(
|
|
)
|