Automattic\WooCommerce\Admin\Notes

Note::set_actions()publicWC 1.0

Set actions on a note.

Method of the class: Note{}

No Hooks.

Return

null. Nothing (null).

Usage

$Note = new Note();
$Note->set_actions( $actions );
$actions(array) (required)
Note actions.

Note::set_actions() code WC 8.7.0

public function set_actions( $actions ) {
	$this->set_prop( 'actions', $actions );
}