Files
Stripe/graphql/fragments/TransactionCancelationRequestedEvent.graphql
jackbeeby dc5eea1ad0 wdc
2024-12-05 18:20:27 +11:00

21 lines
312 B
GraphQL

fragment TransactionCancelationRequestedEvent on TransactionCancelationRequested {
__typename
recipient {
...PaymentGatewayRecipient
}
action {
actionType
amount
}
transaction {
id
pspReference
sourceObject: order {
channel {
id
slug
}
}
}
}