Skip to content

Commit

Permalink
Added stageCutins to rayshift questDetail data
Browse files Browse the repository at this point in the history
  • Loading branch information
squaresmile committed Nov 29, 2023
1 parent f0fc489 commit 7e2639f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions app/schemas/rayshift.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,14 @@ class UserSvt(BaseModelORJson):
createdAt: int


class StageCutinInfo(BaseModelORJson):
wave: int
skillId: int
dropInfos: list[DropInfo]
voiceSvtId: int
voiceId: str


class QuestDetail(BaseModelORJson):
battleId: int
addedTime: datetime
Expand All @@ -148,6 +156,7 @@ class QuestDetail(BaseModelORJson):
startRaidInfo: list[RaidInfo]
superBossInfo: list[SuperBossInfo]
userSvt: list[UserSvt]
stageCutins: list[StageCutinInfo] | None = None


class QuestResponse(BaseModelORJson):
Expand Down

0 comments on commit 7e2639f

Please sign in to comment.