OBJECT

ClaimBountyPayload

Data that was mutated after claiming the bounty.

link GraphQL Schema definition

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