initSignInV2 签到初始化数据
| 29 | |
| 30 | |
| 31 | class SignInInitData(BaseModel): |
| 32 | """initSignInV2 签到初始化数据""" |
| 33 | |
| 34 | disposableGoodsList: List[SignInGoodsConfig] = Field(default_factory=list) |
| 35 | eventEndTimes: str = "" |
| 36 | eventStartTimes: str = "" |
| 37 | expendGold: int = 0 |
| 38 | expendNum: int = 0 |
| 39 | isSigIn: bool = False |
| 40 | nowServerTimes: str = "" |
| 41 | omissionNnm: int = 0 |
| 42 | openNotifica: bool = False |
| 43 | redirectContent: str = "" |
| 44 | redirectText: str = "" |
| 45 | redirectType: int = 0 |
| 46 | repleNum: int = 0 |
| 47 | sigInNum: int = 0 |
| 48 | signInGoodsConfigs: List[SignInGoodsConfig] = Field(default_factory=list) |
| 49 | signLoopGoodsList: List[SignInGoodsConfig] = Field(default_factory=list) |
nothing calls this directly
no outgoing calls
no test coverage detected