2023-10-17 10:24:59 +08:00

72 lines
1.3 KiB
PHP

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