UNPKG

pcp-server-nodejs-sdk

Version:

[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=PAYONE-GmbH_PCP-server-nodeJS-SDK&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [![Coverage](https://sonarcloud.io/api/pr

22 lines (21 loc) 823 B
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" }