Refund
No description
type Refund implements Node {
id: ID!
status: RefundStatus!
reason: RefundReason!
amount: Money!
created: Date!
beneficiaryReference: String!
paymentInitiationRequest: PaymentInitiationRequest
paymentInitiation: PaymentInitiation
nonce: String!
}
Fields
Refund.id ● ID! non-null scalar
Refund.status ● RefundStatus! non-null union
Refund.reason ● RefundReason! non-null enum
Refund.amount ● Money! non-null scalar
Refund.created ● Date! non-null scalar
Refund.beneficiaryReference ● String! non-null scalar
The reference that will be displayed on the refunded users statement
Refund.paymentInitiationRequest ● PaymentInitiationRequest object
Refund.paymentInitiation ● PaymentInitiation object
Refund.nonce ● String! non-null scalar
Interfaces
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.