woocommerce-paypal-payments/modules/ppcp-wc-gateway/src/CardBillingMode.php
2026-04-01 13:08:09 +00:00

19 lines
371 B
PHP

<?php
/**
* Possible values of card_billing_data_mode.
*
* @package WooCommerce\PayPalCommerce\WcGateway
*/
declare (strict_types=1);
namespace WooCommerce\PayPalCommerce\WcGateway;
/**
* Class CardBillingMode
*/
interface CardBillingMode
{
public const USE_WC = 'use_wc';
public const MINIMAL_INPUT = 'minimal_input';
public const NO_WC = 'no_wc';
}