Automattic\WooCommerce\Admin\Features\Fulfillments

Fulfillment::get_date_updatedpublicWC 1.0

Get the date updated.

Method of the class: Fulfillment{}

No Hooks.

Returns

String|null. Date updated.

Usage

$Fulfillment = new Fulfillment();
$Fulfillment->get_date_updated(): ?string;

Fulfillment::get_date_updated() code WC 10.8.1

public function get_date_updated(): ?string {
	return $this->get_prop( 'date_updated' );
}