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 allowself
as a field name.Ancestors
- APIModel
- pydantic.main.BaseModel
Class variables
var content : str
var model_config : pydantic.config.ConfigDict
var post_id : int
var reply_id : int