Skip to main content

ScalaPayTransaction

No description

type ScalaPayTransaction implements Transaction {
amount: Float
createdAt: ISO8601DateTime
currency: String
disputes: [Dispute!]
exchangeRate: Float
failedAt: ISO8601DateTime
fees: [PaymentTransactionFee!]
id: ID
number: String
order: Order
referenceCode: String
refundTransactions: [Transaction!]
repaymentRequest: RepaymentRequest
saleTransaction: Transaction
startedAt: ISO8601DateTime
status: PaymentTransactionStatus
transactedAt: ISO8601DateTime
updatedAt: ISO8601DateTime
}

Fields

ScalaPayTransaction.amount ● Float scalar

The transaction amount. Negative amounts are refund records.

ScalaPayTransaction.createdAt ● ISO8601DateTime scalar

When the record was created.

ScalaPayTransaction.currency ● String scalar

The transaction currency, as an ISO 4217 code.

ScalaPayTransaction.disputes ● [Dispute!] list interface

The disputes linked to the transaction (for example chargebacks opened by the payment provider).

ScalaPayTransaction.exchangeRate ● Float scalar

The exchange rate reported by the payment provider, when available.

ScalaPayTransaction.failedAt ● ISO8601DateTime scalar

When the transaction failed.

ScalaPayTransaction.fees ● [PaymentTransactionFee!] list object

The provider fee rows recorded for the transaction.

ScalaPayTransaction.id ● ID scalar

The unique identifier of the record.

ScalaPayTransaction.number ● String scalar

The transaction number/ID assigned by the payment provider.

ScalaPayTransaction.order ● Order object

The order the transaction is linked to, when the transaction has been matched through its referenceCode. Null otherwise.

ScalaPayTransaction.referenceCode ● String scalar

References the order or the repayment request (return) the transaction belongs to.

ScalaPayTransaction.refundTransactions ● [Transaction!] list interface

The refund transactions of this transaction: child transactions linked to the original payment.

ScalaPayTransaction.repaymentRequest ● RepaymentRequest object

The repayment request (return) the transaction is linked to, when the transaction has been matched through its referenceCode. Null otherwise.

ScalaPayTransaction.saleTransaction ● Transaction interface

For a refund transaction, the original sale transaction being refunded.

ScalaPayTransaction.startedAt ● ISO8601DateTime scalar

When the transaction was started.

ScalaPayTransaction.status ● PaymentTransactionStatus enum

The transaction status.

ScalaPayTransaction.transactedAt ● ISO8601DateTime scalar

When the transaction was completed.

ScalaPayTransaction.updatedAt ● ISO8601DateTime scalar

When the record was last updated.

Interfaces

Transaction interface