Automattic\WooCommerce\Admin\Notes

Note::get_date_reminder()publicWC 1.0

Get date on which user should be reminded of the note (if any).

Method of the class: Note{}

No Hooks.

Return

WC_DateTime|NULL. object if the date is set or null if there is no date.

Usage

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

Note::get_date_reminder() code WC 8.6.1

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