1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
<?php
namespace PaymentPlugins;
defined( 'ABSPATH' ) || exit();
class WC_Braintree_Constants {
const PAYMENT_METHOD_TOKEN = '_payment_method_token';
const VERSION = '_wc_braintree_version';
const MERCHANT_ACCOUNT_ID = '_merchant_account_id';
const ENVIRONMENT = '_wc_braintree_environment';
const TRANSACTION_STATUS = '_transaction_status';
const AUTH_EXP = '_authorization_exp_at';
const BRAINTREE_CC = 'braintree_cc';
const BRAINTREE_CREDIT_CARD = 'braintree_credit_card';
const BRAINTREE_PAYPAL = 'braintree_paypal';
const BRAINTREE_GOOGLEPAY = 'braintree_googlepay';
const BRAINTREE_APPLEPAY = 'braintree_applepay';
const BRAINTREE_VENMO = 'braintree_venmo';
const TOKEN_CHECK = 'wc_braintree_token_check';
const PAYPAL_TRANSACTION = '_paypal_transaction_id';
const PAYMENT_ID = '_wc_braintree_payment_id';
const SESSION_ID = '_session_id';
const PRODUCT_GATEWAY_ORDER = '_braintree_gateway_order';
const BUTTON_POSITION = '_braintree_button_position';
const PAYPAL_CHECKOUT = 'checkout';
const PAYPAL_VAULT = 'vault';
const CUSTOMER_ID = '_wc_braintree_customer_id';
}