Automattic\WooCommerce\Admin\Features\Fulfillments
Fulfillment::get_date_deleted
Get the date deleted, as a UTC 'Y-m-d H:i:s' string.
Method of the class: Fulfillment{}
No Hooks.
Returns
String|null. Date deleted in UTC.
Usage
$Fulfillment = new Fulfillment(); $Fulfillment->get_date_deleted(): ?string;
Fulfillment::get_date_deleted() Fulfillment::get date deleted code WC 10.9.4
public function get_date_deleted(): ?string {
return $this->get_prop( 'date_deleted' );
}