Automattic\WooCommerce\Admin\Notes

Note::set_is_deleted()publicWC 1.0

Set note deleted status. NULL is not allowed

Method of the class: Note{}

No Hooks.

Return

null. Nothing (null).

Usage

$Note = new Note();
$Note->set_is_deleted( $is_deleted );
$is_deleted(true|false) (required)
Note deleted status.

Note::set_is_deleted() code WC 8.7.0

public function set_is_deleted( $is_deleted ) {
	$this->set_prop( 'is_deleted', $is_deleted );
}