20 lines
395 B
PHP
20 lines
395 B
PHP
<?php
|
|
|
|
namespace Hura8\Components\Analytics\Model;
|
|
|
|
class TrackUserInfo
|
|
{
|
|
|
|
public $web_user_id;
|
|
public $customer_id;
|
|
public $is_crawler;
|
|
|
|
public function __construct(string $web_user_id, string $customer_id, bool $is_crawler)
|
|
{
|
|
$this->web_user_id = $web_user_id;
|
|
$this->customer_id = $customer_id;
|
|
$this->is_crawler = $is_crawler ? 1 : 0;
|
|
}
|
|
|
|
}
|