OBJECT

StopBountyPayload

Data that was mutated after stopping the bounty.

link GraphQL Schema definition

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