OBJECT

QuestEvaluationInterval

Interval that a quest is being evaluated for.

link GraphQL Schema definition

1type QuestEvaluationInterval {
2
3# Duration of the interval (in days).
4durationInDays: Int!
5
6# End time of the interval.
7endTime: Time!
8
9# Start time of the interval.
10startTime: Time!
11
12}