Automattic\WooCommerce\Admin\Features\Fulfillments

Fulfillment::set_date_updatedpublicWC 1.0

Set the date updated.

Method of the class: Fulfillment{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Fulfillment = new Fulfillment();
$Fulfillment->set_date_updated( ?string $date_updated ): void;
?string $date_updated(required)
.

Fulfillment::set_date_updated() code WC 10.8.1

public function set_date_updated( ?string $date_updated ): void {
	$this->set_prop( 'date_updated', $date_updated );
}