Automattic\WooCommerce\Internal\Fulfillments

Fulfillment::get_date_deletedpublicWC 1.0

Get the date deleted.

Method of the class: Fulfillment{}

No Hooks.

Returns

String|null. Date deleted.

Usage

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

Fulfillment::get_date_deleted() code WC 10.3.3

public function get_date_deleted(): ?string {
	return $this->data['date_deleted'] ?? null;
}