CardRefundTransaction
No description
type CardRefundTransaction implements PaymentTransaction, Node {
id: ID!
amount: Money!
state: TransactionState!
externalReference: String
originalTransaction: PaymentTransaction
paymentInitiationRequest: PaymentInitiationRequest
paymentConsentRequest: PaymentConsentRequest
interactionUrl: String
nonce: String
}
Fields
id
● ID!
non-null scalar
amount
● Money!
non-null scalar
state
● TransactionState!
non-null union
externalReference
● String
scalar
originalTransaction
● PaymentTransaction
interface
paymentInitiationRequest
● PaymentInitiationRequest
object
paymentConsentRequest
● PaymentConsentRequest
object
interactionUrl
● String
scalar
nonce
● String
scalar
Interfaces
PaymentTransaction
interface
Node
interface
An abstract datatype that has a locally unique identifier, allowing a given node to be later queried by id using the
node(id: ID!)
query.