File "CardBillingMode.php"

Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/woocommerce-paypal-payments/modules/ppcp-wc-gateway/src/CardBillingMode.php
File size: 379 bytes
MIME-type: text/x-php
Charset: utf-8

<?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';
}