Source code for codegrade.models.entry_ticket_response
"""The module that defines the ``EntryTicketResponse`` model.
SPDX-License-Identifier: AGPL-3.0-only OR BSD-3-Clause-Clear
"""
from __future__ import annotations
import typing as t
from dataclasses import dataclass, field
import cg_request_args as rqa
from ..utils import to_dict
[docs]
@dataclass
class EntryTicketResponse:
"""The response of a successful entry-ticket creation."""
#: Discriminator. `direct` means the ticket is returned inline and the
#: client should activate it immediately.
tag: t.Literal["direct"]
#: The string representing the ticket.
ticket: str
raw_data: t.Optional[t.Dict[str, t.Any]] = field(init=False, repr=False)
data_parser: t.ClassVar[t.Any] = rqa.Lazy(
lambda: rqa.FixedMapping(
rqa.RequiredArgument(
"tag",
rqa.StringEnum("direct"),
doc="Discriminator. `direct` means the ticket is returned inline and the client should activate it immediately.",
),
rqa.RequiredArgument(
"ticket",
rqa.SimpleValue.str,
doc="The string representing the ticket.",
),
)
)
def to_dict(self) -> t.Dict[str, t.Any]:
res: t.Dict[str, t.Any] = {
"tag": to_dict(self.tag),
"ticket": to_dict(self.ticket),
}
return res
@classmethod
def from_dict(
cls: t.Type[EntryTicketResponse], d: t.Dict[str, t.Any]
) -> EntryTicketResponse:
parsed = cls.data_parser.try_parse(d)
res = cls(
tag=parsed.tag,
ticket=parsed.ticket,
)
res.raw_data = d
return res