123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <?php
- // This file is auto-generated, don't edit it. Thanks.
- namespace AlibabaCloud\SDK\Cloudauth\V20190307\Models;
- use AlibabaCloud\SDK\Cloudauth\V20190307\Models\DescribeWhitelistResponse\items;
- use AlibabaCloud\Tea\Model;
- class DescribeWhitelistResponse extends Model
- {
- /**
- * @var string
- */
- public $requestId;
- /**
- * @var int
- */
- public $totalCount;
- /**
- * @var int
- */
- public $currentPage;
- /**
- * @var int
- */
- public $pageSize;
- /**
- * @var items[]
- */
- public $items;
- protected $_name = [
- 'requestId' => 'RequestId',
- 'totalCount' => 'TotalCount',
- 'currentPage' => 'CurrentPage',
- 'pageSize' => 'PageSize',
- 'items' => 'Items',
- ];
- public function validate()
- {
- Model::validateRequired('requestId', $this->requestId, true);
- Model::validateRequired('totalCount', $this->totalCount, true);
- Model::validateRequired('currentPage', $this->currentPage, true);
- Model::validateRequired('pageSize', $this->pageSize, true);
- Model::validateRequired('items', $this->items, true);
- }
- public function toMap()
- {
- $res = [];
- if (null !== $this->requestId) {
- $res['RequestId'] = $this->requestId;
- }
- if (null !== $this->totalCount) {
- $res['TotalCount'] = $this->totalCount;
- }
- if (null !== $this->currentPage) {
- $res['CurrentPage'] = $this->currentPage;
- }
- if (null !== $this->pageSize) {
- $res['PageSize'] = $this->pageSize;
- }
- if (null !== $this->items) {
- $res['Items'] = [];
- if (null !== $this->items && \is_array($this->items)) {
- $n = 0;
- foreach ($this->items as $item) {
- $res['Items'][$n++] = null !== $item ? $item->toMap() : $item;
- }
- }
- }
- return $res;
- }
- /**
- * @param array $map
- *
- * @return DescribeWhitelistResponse
- */
- public static function fromMap($map = [])
- {
- $model = new self();
- if (isset($map['RequestId'])) {
- $model->requestId = $map['RequestId'];
- }
- if (isset($map['TotalCount'])) {
- $model->totalCount = $map['TotalCount'];
- }
- if (isset($map['CurrentPage'])) {
- $model->currentPage = $map['CurrentPage'];
- }
- if (isset($map['PageSize'])) {
- $model->pageSize = $map['PageSize'];
- }
- if (isset($map['Items'])) {
- if (!empty($map['Items'])) {
- $model->items = [];
- $n = 0;
- foreach ($map['Items'] as $item) {
- $model->items[$n++] = null !== $item ? items::fromMap($item) : $item;
- }
- }
- }
- return $model;
- }
- }
|