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