stripe_id = self::PAYMENT_METHOD_STRIPE_ID;
$this->title = 'BECS Direct Debit';
$this->is_reusable = false;
$this->currencies = [ Currency_Code::AUSTRALIAN_DOLLAR ];
$this->icon_url = plugins_url( 'assets/images/payment-methods/bank-debit.svg', WCPAY_PLUGIN_FILE );
$this->countries = [ Country_Code::AUSTRALIA ];
}
/**
* Returns testing credentials to be printed at checkout in test mode.
*
* @param string $account_country The country of the account.
* @return string
*/
public function get_testing_instructions( string $account_country ) {
return __( 'Test mode: use the test account number 000123456. Other payment methods may redirect to a Stripe test page to authorize payment. More test card numbers are listed here.', 'woocommerce-payments' );
}
/**
* Returns payment method description for the settings page.
*
* @param string|null $account_country Country of merchants account.
*
* @return string
*/
public function get_description( ?string $account_country = null ) {
return __(
'Bulk Electronic Clearing System — Accept secure bank transfer from Australia.',
'woocommerce-payments'
);
}
}