OBJECT

BountyRestriction

Defines the restrictions that are placed on a bounty.

link GraphQL Schema definition

1type BountyRestriction {
2
3# The days of the week that a bounty can be completed on. The values are from 0 to
4# 6, representing day of the week from Monday to Sunday.
5days: [Int!]
6
7# The end of the time period that a bounty can be completed in. This is in 24-hour
8# clock notation, so 2100 means 9 PM UTC.
9endTime: Int
10
11# The start of the time period that a bounty can be completed in. This is in
12# 24-hour clock notation, so 1000 means 10 AM UTC.
13startTime: Int
14
15}