PayshapRequestTransaction
No description
type PayshapRequestTransaction implements PaymentTransaction, Node {
id: ID!
amount: Money!
state: TransactionState!
externalReference: String
paymentInitiationRequest: PaymentInitiationRequest
nonce: String
identifierKey: String
identifierValue: String
idempotencyKey: String
domesticPaymentId: String
merchantAccountKey: String
merchantName: String
debtorAccountNumber: String
debtorAccountType: String
debtorBankCode: String
debtorBankId: String
paymentContextCode: 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
identifierKey
● String
scalar
identifierValue
● String
scalar
idempotencyKey
● String
scalar
domesticPaymentId
● String
scalar
merchantAccountKey
● String
scalar
merchantName
● String
scalar
debtorAccountNumber
● String
scalar
debtorAccountType
● String
scalar
debtorBankCode
● String
scalar
debtorBankId
● String
scalar
paymentContextCode
● 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.