Automattic\WooCommerce\Admin\Notes

Note::get_name()publicWC 1.0

Get note name.

Method of the class: Note{}

No Hooks.

Return

String.

Usage

$Note = new Note();
$Note->get_name( $context );
$context(string)
What the value is for. Valid values are 'view' and 'edit'.
Default: 'view'

Note::get_name() code WC 8.7.0

public function get_name( $context = 'view' ) {
	return $this->get_prop( 'name', $context );
}