96 lines
1.9 KiB
PHP
96 lines
1.9 KiB
PHP
<?php
|
|
|
|
// This file is auto-generated, don't edit it. Thanks.
|
|
|
|
namespace AlibabaCloud\SDK\Live\V20161101\Models;
|
|
|
|
use AlibabaCloud\Tea\Model;
|
|
|
|
class SendMessageToGroupRequest extends Model
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $appId;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $data;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $groupId;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $operatorUserId;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
public $type;
|
|
protected $_name = [
|
|
'appId' => 'AppId',
|
|
'data' => 'Data',
|
|
'groupId' => 'GroupId',
|
|
'operatorUserId' => 'OperatorUserId',
|
|
'type' => 'Type',
|
|
];
|
|
|
|
public function validate()
|
|
{
|
|
}
|
|
|
|
public function toMap()
|
|
{
|
|
$res = [];
|
|
if (null !== $this->appId) {
|
|
$res['AppId'] = $this->appId;
|
|
}
|
|
if (null !== $this->data) {
|
|
$res['Data'] = $this->data;
|
|
}
|
|
if (null !== $this->groupId) {
|
|
$res['GroupId'] = $this->groupId;
|
|
}
|
|
if (null !== $this->operatorUserId) {
|
|
$res['OperatorUserId'] = $this->operatorUserId;
|
|
}
|
|
if (null !== $this->type) {
|
|
$res['Type'] = $this->type;
|
|
}
|
|
|
|
return $res;
|
|
}
|
|
|
|
/**
|
|
* @param array $map
|
|
*
|
|
* @return SendMessageToGroupRequest
|
|
*/
|
|
public static function fromMap($map = [])
|
|
{
|
|
$model = new self();
|
|
if (isset($map['AppId'])) {
|
|
$model->appId = $map['AppId'];
|
|
}
|
|
if (isset($map['Data'])) {
|
|
$model->data = $map['Data'];
|
|
}
|
|
if (isset($map['GroupId'])) {
|
|
$model->groupId = $map['GroupId'];
|
|
}
|
|
if (isset($map['OperatorUserId'])) {
|
|
$model->operatorUserId = $map['OperatorUserId'];
|
|
}
|
|
if (isset($map['Type'])) {
|
|
$model->type = $map['Type'];
|
|
}
|
|
|
|
return $model;
|
|
}
|
|
}
|