CapitecPayTransaction
No description
type CapitecPayTransaction implements PaymentTransaction, Node {
id: ID!
amount: Money!
state: TransactionState!
externalReference: String
paymentInitiationRequest: PaymentInitiationRequest
nonce: String
correlationId: String
consentId: String
merchantReference: String
merchantName: String
beneficiaryStatementDescription: String
clientStatementDescription: String
sourceAccountNumber: String
sourceAccountId: String
identifierKey: String
identifierValue: String
originalTransaction: PaymentTransaction
paymentConsentRequest: PaymentConsentRequest
interactionUrl: String
}
Fields
id
● ID!
non-null scalar
amount
● Money!
non-null scalar
state
● TransactionState!
non-null union
externalReference
● String
scalar
paymentInitiationRequest
● PaymentInitiationRequest
object
nonce
● String
scalar
correlationId
● String
scalar
consentId
● String
scalar
merchantReference
● String
scalar
merchantName
● String
scalar
beneficiaryStatementDescription
● String
scalar
clientStatementDescription
● String
scalar
sourceAccountNumber
● String
scalar
sourceAccountId
● String
scalar
identifierKey
● String
scalar
identifierValue
● String
scalar
originalTransaction
● PaymentTransaction
interface
paymentConsentRequest
● PaymentConsentRequest
object
interactionUrl
● 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.