OBJECT

StartBountyPayload

Data that was mutated after starting the bounty.

link GraphQL Schema definition

1type StartBountyPayload {
2
3# The possible error returned from the service.
4error: StartBountyError
5
6# The started bounty with the updated status.
7startedBounty: Bounty
8
9# The user that now has the started bounty.
10user: User
11
12}