PaymentService
Properties
__configModule__Record<string, unknown>__container__anyRequired__moduleDeclaration__Record<string, unknown>manager_EntityManagerRequiredtransactionManager_undefined | EntityManagerRequiredEventsobjectRequiredEvents.CREATEDstringRequiredEvents.PAYMENT_CAPTUREDstringRequiredEvents.PAYMENT_CAPTURE_FAILEDstringRequiredEvents.REFUND_CREATEDstringRequiredEvents.REFUND_FAILEDstringRequiredEvents.UPDATEDstringRequiredAccessors
activeManager_
Inherited from
TransactionBaseService.activeManager_
Methods
atomicPhase_
Wraps some work within a transactional block. If the service already has a transaction manager attached this will be reused, otherwise a new transaction manager is created.
Parameters
work(transactionManager: EntityManager) => Promise<TResult>Requiredthe transactional work to be done
isolationOrErrorHandlerIsolationLevel | (error: TError) => Promise<void | TResult>the isolation level to be used for the work.
maybeErrorHandlerOrDontFail(error: TError) => Promise<void | TResult>Potential error handler
Returns
PromisePromise<TResult>Requiredthe result of the transactional work
capture
Captures a payment.
Parameters
the id or the class instance of the payment
Returns
the payment captured.
create
Created a new payment.
Parameters
info to create the payment
Returns
the payment created.
refund
refunds a payment.
Parameters
the id or the class instance of the payment
amountnumberRequiredthe amount to be refunded from the payment
reasonstringRequiredthe refund reason
notestringadditional note of the refund
Returns
the refund created.
retrieve
Retrieves a payment by id.
Parameters
paymentIdstringRequiredthe id of the payment
configFindConfig<Payment>the config to retrieve the payment
Returns
the payment.
shouldRetryTransaction_
Parameters
errRecord<string, unknown> | { code: string }RequiredReturns
booleanbooleanupdate
Updates a payment in order to link it to an order or a swap.
Parameters
paymentIdstringRequiredthe id of the payment
dataobjectRequiredorder_id or swap_id to link the payment
data.order_idstringdata.swap_idstringReturns
the payment updated.
withTransaction
Parameters
transactionManagerEntityManagerReturns
Was this section helpful?