Automattic\WooCommerce\Admin\Notes

Note::set_is_read()publicWC 1.0

Set note is_read status. NULL is not allowed

Method of the class: Note{}

No Hooks.

Return

null. Nothing (null).

Usage

$Note = new Note();
$Note->set_is_read( $is_read );
$is_read(true|false) (required)
Note is_read status.

Note::set_is_read() code WC 8.7.0

public function set_is_read( $is_read ) {
	$this->set_prop( 'is_read', $is_read );
}