2026-08-26 18:30:28 +03:00
|
|
|
// Code generated by apigen. DO NOT EDIT.
|
|
|
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
type QuestDefinition struct {
|
|
|
|
|
ID string `json:"id,omitempty"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
NextQuestID string `json:"nextQuestId,omitempty"`
|
|
|
|
|
Objectives []QuestObjective `json:"objectives,omitempty"`
|
|
|
|
|
Rewards []QuestRewardDefinition `json:"rewards,omitempty"`
|
2026-09-06 22:25:32 +03:00
|
|
|
Slug string `json:"slug,omitempty"`
|
2026-08-26 18:30:28 +03:00
|
|
|
Status string `json:"status,omitempty"`
|
|
|
|
|
}
|