graycoreio/daffodil

View on GitHub
libs/paypal/src/models/paypal-urls-request.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * The URLs to which paypal will navigate the users for each
 * corresponding result of the paypal express checkout process.
 */
export interface DaffPaypalExpressUrlsRequest {
  /**
   * Checkout is completed and payment should be added to the cart.
   */
  return: string;
  /**
   * Checkout was canceled and the cart should not be modified.
   */
  cancel: string;
}