72 lines
1.4 KiB
PHP
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 CreateMessageGroupShrinkRequest extends Model
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $appId;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $creatorId;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $extensionShrink;
|
|
protected $_name = [
|
|
'appId' => 'AppId',
|
|
'creatorId' => 'CreatorId',
|
|
'extensionShrink' => 'Extension',
|
|
];
|
|
|
|
public function validate()
|
|
{
|
|
}
|
|
|
|
public function toMap()
|
|
{
|
|
$res = [];
|
|
if (null !== $this->appId) {
|
|
$res['AppId'] = $this->appId;
|
|
}
|
|
if (null !== $this->creatorId) {
|
|
$res['CreatorId'] = $this->creatorId;
|
|
}
|
|
if (null !== $this->extensionShrink) {
|
|
$res['Extension'] = $this->extensionShrink;
|
|
}
|
|
|
|
return $res;
|
|
}
|
|
|
|
/**
|
|
* @param array $map
|
|
*
|
|
* @return CreateMessageGroupShrinkRequest
|
|
*/
|
|
public static function fromMap($map = [])
|
|
{
|
|
$model = new self();
|
|
if (isset($map['AppId'])) {
|
|
$model->appId = $map['AppId'];
|
|
}
|
|
if (isset($map['CreatorId'])) {
|
|
$model->creatorId = $map['CreatorId'];
|
|
}
|
|
if (isset($map['Extension'])) {
|
|
$model->extensionShrink = $map['Extension'];
|
|
}
|
|
|
|
return $model;
|
|
}
|
|
}
|