WC_Order::set_customer_note()publicWC 1.0

Set customer note.

Method of the class: WC_Order{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Order = new WC_Order();
$WC_Order->set_customer_note( $value );
$value(string) (required)
Customer note.

WC_Order::set_customer_note() code WC 8.7.0

public function set_customer_note( $value ) {
	$this->set_prop( 'customer_note', $value );
}