WC_Customer_Download_Log::set_timestamp()publicWC 1.0

Set timestamp.

Method of the class: WC_Customer_Download_Log{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Customer_Download_Log = new WC_Customer_Download_Log();
$WC_Customer_Download_Log->set_timestamp( $date );
$date(string|int|null)
UTC timestamp, or ISO 8601 DateTime. If the DateTime string has no timezone or offset, WordPress site timezone will be assumed. Null if their is no date.
Default: null

WC_Customer_Download_Log::set_timestamp() code WC 8.7.0

public function set_timestamp( $date = null ) {
	$this->set_date_prop( 'timestamp', $date );
}