WC_Webhook::set_date_created()publicWC 3.2.0

Set webhook created date.

Method of the class: WC_Webhook{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Webhook = new WC_Webhook();
$WC_Webhook->set_date_created( $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

Changelog

Since 3.2.0 Introduced.

WC_Webhook::set_date_created() code WC 8.7.0

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