CryptoTransaction
No description
type CryptoTransaction implements PaymentTransaction, Node {
id: ID!
amount: Money!
state: TransactionState!
externalReference: String
paymentInitiationRequest: PaymentInitiationRequest
paymentConsentRequest: PaymentConsentRequest
originalTransaction: PaymentTransaction
interactionUrl: String
nonce: String
}
Fields
id
● ID!
non-null scalar
amount
● Money!
non-null scalar
state
● TransactionState!
non-null union
externalReference
● String
scalar
paymentInitiationRequest
● PaymentInitiationRequest
object
paymentConsentRequest
● PaymentConsentRequest
object
originalTransaction
● PaymentTransaction
interface
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.