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\Agents;
use MuCTS\Sobot\Contracts\Sobot;
* Class SaveGroups
* 新增技能组
* 接口说明:
* 新增所属公司技能组信息
* @property-write string $group_name 技能组名称
* @property-write int $group_type 技能组类型,0工单客服组,1在线客服组,2电话客服组,3 电销组
* @method SaveGroups groupName(string $value) 技能组名称
* @method SaveGroups groupType(int $value) 技能组类型,0工单客服组,1在线客服组,2电话客服组,3 电销组
* @package MuCTS\Sobot\Agents
class SaveGroups extends Sobot
{
public function getRequestMethod(): string
return self::METHOD_POST;
}
public function getRequestPath(): string
return '/api/basic/5/group/save_groups';