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 DescribeBoardsRequest extends Model
|
|
{
|
|
/**
|
|
* @var int
|
|
*/
|
|
public $ownerId;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $appId;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
public $pageNum;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
public $pageSize;
|
|
protected $_name = [
|
|
'ownerId' => 'OwnerId',
|
|
'appId' => 'AppId',
|
|
'pageNum' => 'PageNum',
|
|
'pageSize' => 'PageSize',
|
|
];
|
|
|
|
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->pageNum) {
|
|
$res['PageNum'] = $this->pageNum;
|
|
}
|
|
if (null !== $this->pageSize) {
|
|
$res['PageSize'] = $this->pageSize;
|
|
}
|
|
|
|
return $res;
|
|
}
|
|
|
|
/**
|
|
* @param array $map
|
|
*
|
|
* @return DescribeBoardsRequest
|
|
*/
|
|
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['PageNum'])) {
|
|
$model->pageNum = $map['PageNum'];
|
|
}
|
|
if (isset($map['PageSize'])) {
|
|
$model->pageSize = $map['PageSize'];
|
|
}
|
|
|
|
return $model;
|
|
}
|
|
}
|