woocommerce_order_fully_refunded_notification action-hookWC 1.0

This action is documented in includes/class-wc-emails.php

Usage

add_action( 'woocommerce_order_fully_refunded_notification', 'wp_kama_woocommerce_order_fully_refunded_notification_action' );

/**
 * Function for `woocommerce_order_fully_refunded_notification` action-hook.
 * 
 * @param  $order_id 
 *
 * @return void
 */
function wp_kama_woocommerce_order_fully_refunded_notification_action( $order_id ){

	// action...
}
$order_id
-

Where the hook is called

OrderActionsRestController::send_email()
woocommerce_order_fully_refunded_notification
woocommerce/src/Internal/Orders/OrderActionsRestController.php 477
do_action( 'woocommerce_order_fully_refunded_notification', $order->get_id() );

Where the hook is used in WooCommerce

woocommerce/includes/emails/class-wc-email-customer-refunded-order.php 57
add_action( 'woocommerce_order_fully_refunded_notification', array( $this, 'trigger_full' ), 10, 2 );