Automattic\WooCommerce\Internal\Fulfillments

Fulfillment::set_date_deletedpublicWC 1.0

Set the date deleted.

Method of the class: Fulfillment{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Fulfillment = new Fulfillment();
$Fulfillment->set_date_deleted( ?string $date_deleted ): void;
?string $date_deleted(required)
.

Fulfillment::set_date_deleted() code WC 10.3.3

public function set_date_deleted( ?string $date_deleted ): void {
	$this->data['date_deleted'] = $date_deleted;
}