DescribeDeviceInfoResponseBody.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?php
  2. // This file is auto-generated, don't edit it. Thanks.
  3. namespace AlibabaCloud\SDK\Cloudauth\V20190307\Models;
  4. use AlibabaCloud\SDK\Cloudauth\V20190307\Models\DescribeDeviceInfoResponseBody\deviceInfoList;
  5. use AlibabaCloud\Tea\Model;
  6. class DescribeDeviceInfoResponseBody extends Model
  7. {
  8. /**
  9. * @var int
  10. */
  11. public $currentPage;
  12. /**
  13. * @var deviceInfoList
  14. */
  15. public $deviceInfoList;
  16. /**
  17. * @var int
  18. */
  19. public $pageSize;
  20. /**
  21. * @var string
  22. */
  23. public $requestId;
  24. /**
  25. * @var int
  26. */
  27. public $totalCount;
  28. protected $_name = [
  29. 'currentPage' => 'CurrentPage',
  30. 'deviceInfoList' => 'DeviceInfoList',
  31. 'pageSize' => 'PageSize',
  32. 'requestId' => 'RequestId',
  33. 'totalCount' => 'TotalCount',
  34. ];
  35. public function validate()
  36. {
  37. }
  38. public function toMap()
  39. {
  40. $res = [];
  41. if (null !== $this->currentPage) {
  42. $res['CurrentPage'] = $this->currentPage;
  43. }
  44. if (null !== $this->deviceInfoList) {
  45. $res['DeviceInfoList'] = null !== $this->deviceInfoList ? $this->deviceInfoList->toMap() : null;
  46. }
  47. if (null !== $this->pageSize) {
  48. $res['PageSize'] = $this->pageSize;
  49. }
  50. if (null !== $this->requestId) {
  51. $res['RequestId'] = $this->requestId;
  52. }
  53. if (null !== $this->totalCount) {
  54. $res['TotalCount'] = $this->totalCount;
  55. }
  56. return $res;
  57. }
  58. /**
  59. * @param array $map
  60. *
  61. * @return DescribeDeviceInfoResponseBody
  62. */
  63. public static function fromMap($map = [])
  64. {
  65. $model = new self();
  66. if (isset($map['CurrentPage'])) {
  67. $model->currentPage = $map['CurrentPage'];
  68. }
  69. if (isset($map['DeviceInfoList'])) {
  70. $model->deviceInfoList = deviceInfoList::fromMap($map['DeviceInfoList']);
  71. }
  72. if (isset($map['PageSize'])) {
  73. $model->pageSize = $map['PageSize'];
  74. }
  75. if (isset($map['RequestId'])) {
  76. $model->requestId = $map['RequestId'];
  77. }
  78. if (isset($map['TotalCount'])) {
  79. $model->totalCount = $map['TotalCount'];
  80. }
  81. return $model;
  82. }
  83. }