GitHub

DaffPaymentAvailableProcessor

A representation of an available payment processor.

import { DaffPaymentAvailableProcessor } from '@daffodil/payment/state'
interface DaffPaymentAvailableProcessor {
  kind: DaffPaymentRequest['kind']
  action: string
  driver: InjectionToken<DaffPaymentDriverInterface>
}

Properties

Name Type Description
kind DaffPaymentRequest['kind']

The processor kind.

action string

The action type string that triggers token generation.

driver InjectionToken<DaffPaymentDriverInterface>

An injection token of the driver that can perform token generation for this specific payment processor.