GetWeChatBillDetailsResponse.php 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. /*
  3. * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. namespace TencentCloud\Faceid\V20180301\Models;
  18. use TencentCloud\Common\AbstractModel;
  19. /**
  20. * GetWeChatBillDetails返回参数结构体
  21. *
  22. * @method boolean getHasNextPage() 获取是否还有下一页。该字段为true时,需要将NextCursor的值作为入参Cursor继续调用本接口。
  23. * @method void setHasNextPage(boolean $HasNextPage) 设置是否还有下一页。该字段为true时,需要将NextCursor的值作为入参Cursor继续调用本接口。
  24. * @method integer getNextCursor() 获取下一页的游标。用于分页。
  25. * @method void setNextCursor(integer $NextCursor) 设置下一页的游标。用于分页。
  26. * @method array getWeChatBillDetails() 获取数据
  27. * @method void setWeChatBillDetails(array $WeChatBillDetails) 设置数据
  28. * @method string getRequestId() 获取唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  29. * @method void setRequestId(string $RequestId) 设置唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  30. */
  31. class GetWeChatBillDetailsResponse extends AbstractModel
  32. {
  33. /**
  34. * @var boolean 是否还有下一页。该字段为true时,需要将NextCursor的值作为入参Cursor继续调用本接口。
  35. */
  36. public $HasNextPage;
  37. /**
  38. * @var integer 下一页的游标。用于分页。
  39. */
  40. public $NextCursor;
  41. /**
  42. * @var array 数据
  43. */
  44. public $WeChatBillDetails;
  45. /**
  46. * @var string 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  47. */
  48. public $RequestId;
  49. /**
  50. * @param boolean $HasNextPage 是否还有下一页。该字段为true时,需要将NextCursor的值作为入参Cursor继续调用本接口。
  51. * @param integer $NextCursor 下一页的游标。用于分页。
  52. * @param array $WeChatBillDetails 数据
  53. * @param string $RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  54. */
  55. function __construct()
  56. {
  57. }
  58. /**
  59. * For internal only. DO NOT USE IT.
  60. */
  61. public function deserialize($param)
  62. {
  63. if ($param === null) {
  64. return;
  65. }
  66. if (array_key_exists("HasNextPage",$param) and $param["HasNextPage"] !== null) {
  67. $this->HasNextPage = $param["HasNextPage"];
  68. }
  69. if (array_key_exists("NextCursor",$param) and $param["NextCursor"] !== null) {
  70. $this->NextCursor = $param["NextCursor"];
  71. }
  72. if (array_key_exists("WeChatBillDetails",$param) and $param["WeChatBillDetails"] !== null) {
  73. $this->WeChatBillDetails = [];
  74. foreach ($param["WeChatBillDetails"] as $key => $value){
  75. $obj = new WeChatBillDetail();
  76. $obj->deserialize($value);
  77. array_push($this->WeChatBillDetails, $obj);
  78. }
  79. }
  80. if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
  81. $this->RequestId = $param["RequestId"];
  82. }
  83. }
  84. }