for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the mucts.com.
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
* @version 1.0
* @author herry<[email protected]>
* @copyright © 2020 MuCTS.com All Rights Reserved.
*/
namespace MuCTS\Sobot\OnlineStatistics;
use MuCTS\Sobot\Contracts\Sobot;
* Class CustomerSession
* 客户会话统计
* 接口说明:
* 接口类型:主动调用接口
* 接口作用:可通过调用该接口来获取客户会话概览统计结果。
* @method CustomerSession whereStartDate(string $value) 开始日期(yyyy-MM-dd)
* @method CustomerSession whereEndDate(string $value) 结束日期(yyyy-MM-dd)
* @package MuCTS\Sobot\OnlineStatistics
class CustomerSession extends Sobot
{
public function getRequestMethod(): string
return self::METHOD_POST;
}
public function getRequestPath(): string
return '/api/wb/5/data/customer_session';