TaskSystem/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdShrinkRequest.php
2023-10-17 10:24:59 +08:00

72 lines
1.4 KiB
PHP

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