OBJECT

ClaimJourneyOfferPayload

Data that was mutated after claiming the journey and offer, in this case, the entitlement.

link GraphQL Schema definition

1type ClaimJourneyOfferPayload {
2
3# The connection contains both journey and offer.
4self: ClaimJourneyOfferSelfConnection
5
6# The possible error returned from the service.
7error: ClaimJourneyOfferError
8
9# Unique Identifier for a journey returned from the service.
10journeyId: ID!
11
12# Unique Identifier for an offer returned from the service.
13offerId: ID!
14
15}

link Required by