Automattic\WooCommerce\Admin\Notes

Note::set_is_snoozable()publicWC 1.0

Set note snoozability.

Method of the class: Note{}

No Hooks.

Return

null. Nothing (null).

Usage

$Note = new Note();
$Note->set_is_snoozable( $is_snoozable );
$is_snoozable(true|false) (required)
Whether or not the note can be snoozed.

Note::set_is_snoozable() code WC 8.7.0

public function set_is_snoozable( $is_snoozable ) {
	return $this->set_prop( 'is_snoozable', $is_snoozable );
}