class-link-payment-method.php
708 Bytes
<?php
/**
* Class CC_Payment_Method
*
* @package WCPay\Payment_Methods
*/
namespace WCPay\Payment_Methods;
use WC_Payments_Token_Service;
/**
* Link Payment Method class extending UPE base class
*/
class Link_Payment_Method extends UPE_Payment_Method {
const PAYMENT_METHOD_STRIPE_ID = 'link';
/**
* Constructor for link payment method
*
* @param WC_Payments_Token_Service $token_service Token class instance.
*/
public function __construct( $token_service ) {
parent::__construct( $token_service );
$this->stripe_id = self::PAYMENT_METHOD_STRIPE_ID;
$this->title = __( 'Link', 'woocommerce-payments' );
$this->is_reusable = true;
$this->currencies = [ 'USD' ];
}
}