Automattic\WooCommerce\Internal\PushNotifications\Entities

PushToken::get_device_uuidpublicWC 10.4.0

Gets the device UUID.

Method of the class: PushToken{}

No Hooks.

Returns

String|null.

Usage

$PushToken = new PushToken();
$PushToken->get_device_uuid(): ?string;

Changelog

Since 10.4.0 Introduced.

PushToken::get_device_uuid() code WC 10.8.1

public function get_device_uuid(): ?string {
	return $this->device_uuid;
}