Module genshin.models.hoyolab.reply

Classes

class Reply (**data: Any)
Expand source code
class Reply(APIModel):
    """Reply model."""

    post_id: int
    reply_id: int
    content: str

Reply model.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Ancestors

Class variables

var content : str
var model_config : pydantic.config.ConfigDict
var post_id : int
var reply_id : int