pcp-server-nodejs-sdk
Version:
[](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [ • 823 B
TypeScript
export interface RedirectPaymentProduct900SpecificInput {
captureTrigger?: CaptureTrigger;
}
/**
* @description Indicates the event upon which the payment should be captured.
* This value is shown to customers in the Wero portal to clarify
* when the capture will occur.
* Has the following possible values:
* - shipping: Upon shipping the order.
* - delivery: Upon delivering the order.
* - availability: As soon as the order is available.
* - serviceFulfillment: Upon fulfilling the service.
* - other: For any other use case.
*/
export declare enum CaptureTrigger {
SHIPPING = "shipping",
DELIVERY = "delivery",
AVAILABILITY = "availability",
SERVICE_FULFILLMENT = "serviceFulfillment",
OTHER = "other"
}