48 lines
819 B
PHP
48 lines
819 B
PHP
![]() |
<?php
|
||
|
|
||
|
// This file is auto-generated, don't edit it. Thanks.
|
||
|
|
||
|
namespace AlibabaCloud\SDK\Live\V20161101\Models\JoinMessageGroupResponseBody;
|
||
|
|
||
|
use AlibabaCloud\Tea\Model;
|
||
|
|
||
|
class result extends Model
|
||
|
{
|
||
|
/**
|
||
|
* @var bool
|
||
|
*/
|
||
|
public $success;
|
||
|
protected $_name = [
|
||
|
'success' => 'Success',
|
||
|
];
|
||
|
|
||
|
public function validate()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function toMap()
|
||
|
{
|
||
|
$res = [];
|
||
|
if (null !== $this->success) {
|
||
|
$res['Success'] = $this->success;
|
||
|
}
|
||
|
|
||
|
return $res;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param array $map
|
||
|
*
|
||
|
* @return result
|
||
|
*/
|
||
|
public static function fromMap($map = [])
|
||
|
{
|
||
|
$model = new self();
|
||
|
if (isset($map['Success'])) {
|
||
|
$model->success = $map['Success'];
|
||
|
}
|
||
|
|
||
|
return $model;
|
||
|
}
|
||
|
}
|