OBJECT

CancelBountyPayload

Data that was mutated after canceling the bounty.

link GraphQL Schema definition

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