84 lines
1.6 KiB
PHP
84 lines
1.6 KiB
PHP
<?php
|
|
|
|
// This file is auto-generated, don't edit it. Thanks.
|
|
|
|
namespace AlibabaCloud\SDK\Live\V20161101\Models;
|
|
|
|
use AlibabaCloud\Tea\Model;
|
|
|
|
class GetMessageTokenRequest extends Model
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $appId;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $deviceId;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $deviceType;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $userId;
|
|
protected $_name = [
|
|
'appId' => 'AppId',
|
|
'deviceId' => 'DeviceId',
|
|
'deviceType' => 'DeviceType',
|
|
'userId' => 'UserId',
|
|
];
|
|
|
|
public function validate()
|
|
{
|
|
}
|
|
|
|
public function toMap()
|
|
{
|
|
$res = [];
|
|
if (null !== $this->appId) {
|
|
$res['AppId'] = $this->appId;
|
|
}
|
|
if (null !== $this->deviceId) {
|
|
$res['DeviceId'] = $this->deviceId;
|
|
}
|
|
if (null !== $this->deviceType) {
|
|
$res['DeviceType'] = $this->deviceType;
|
|
}
|
|
if (null !== $this->userId) {
|
|
$res['UserId'] = $this->userId;
|
|
}
|
|
|
|
return $res;
|
|
}
|
|
|
|
/**
|
|
* @param array $map
|
|
*
|
|
* @return GetMessageTokenRequest
|
|
*/
|
|
public static function fromMap($map = [])
|
|
{
|
|
$model = new self();
|
|
if (isset($map['AppId'])) {
|
|
$model->appId = $map['AppId'];
|
|
}
|
|
if (isset($map['DeviceId'])) {
|
|
$model->deviceId = $map['DeviceId'];
|
|
}
|
|
if (isset($map['DeviceType'])) {
|
|
$model->deviceType = $map['DeviceType'];
|
|
}
|
|
if (isset($map['UserId'])) {
|
|
$model->userId = $map['UserId'];
|
|
}
|
|
|
|
return $model;
|
|
}
|
|
}
|