WC_Order_Item_Shipping::get_taxes()publicWC 1.0

Get taxes.

Method of the class: WC_Order_Item_Shipping{}

No Hooks.

Return

Array.

Usage

$WC_Order_Item_Shipping = new WC_Order_Item_Shipping();
$WC_Order_Item_Shipping->get_taxes( $context );
$context(string)
View or edit context.
Default: 'view'

WC_Order_Item_Shipping::get_taxes() code WC 8.6.1

public function get_taxes( $context = 'view' ) {
	return $this->get_prop( 'taxes', $context );
}