CapitecPayRecurringTransaction
No description
type CapitecPayRecurringTransaction implements PaymentTransaction, Node {
id: ID!
amount: Money!
state: TransactionState!
externalReference: String
nonce: String
consentRequestId: String
correlationId: String
payerStatementReference: String
payeeReference: String
stitchIntermediaryAccount: String
sourceAccountNumber: String
sourceAccountType: String
batchSettlementId: String
batchSettlementDescription: String
capitecPaymentId: String
paymentInitiationRequest: PaymentInitiationRequest
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
nonce
● String
scalar
consentRequestId
● String
scalar
correlationId
● String
scalar
payerStatementReference
● String
scalar
payeeReference
● String
scalar
stitchIntermediaryAccount
● String
scalar
sourceAccountNumber
● String
scalar
sourceAccountType
● String
scalar
batchSettlementId
● String
scalar
batchSettlementDescription
● String
scalar
capitecPaymentId
● String
scalar
paymentInitiationRequest
● PaymentInitiationRequest
object
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.