GetWeChatBillDetailsRequest.php 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 string getDate() 获取拉取的日期(YYYY-MM-DD)。最大可追溯到365天前。当天6点后才能拉取前一天的数据。
  23. * @method void setDate(string $Date) 设置拉取的日期(YYYY-MM-DD)。最大可追溯到365天前。当天6点后才能拉取前一天的数据。
  24. * @method integer getCursor() 获取游标。用于分页,取第一页时传0,取后续页面时,传入本接口响应中返回的NextCursor字段的值。
  25. * @method void setCursor(integer $Cursor) 设置游标。用于分页,取第一页时传0,取后续页面时,传入本接口响应中返回的NextCursor字段的值。
  26. * @method string getRuleId() 获取需要拉取账单详情业务对应的RuleId。不传会返回所有RuleId数据。默认为空字符串。
  27. * @method void setRuleId(string $RuleId) 设置需要拉取账单详情业务对应的RuleId。不传会返回所有RuleId数据。默认为空字符串。
  28. */
  29. class GetWeChatBillDetailsRequest extends AbstractModel
  30. {
  31. /**
  32. * @var string 拉取的日期(YYYY-MM-DD)。最大可追溯到365天前。当天6点后才能拉取前一天的数据。
  33. */
  34. public $Date;
  35. /**
  36. * @var integer 游标。用于分页,取第一页时传0,取后续页面时,传入本接口响应中返回的NextCursor字段的值。
  37. */
  38. public $Cursor;
  39. /**
  40. * @var string 需要拉取账单详情业务对应的RuleId。不传会返回所有RuleId数据。默认为空字符串。
  41. */
  42. public $RuleId;
  43. /**
  44. * @param string $Date 拉取的日期(YYYY-MM-DD)。最大可追溯到365天前。当天6点后才能拉取前一天的数据。
  45. * @param integer $Cursor 游标。用于分页,取第一页时传0,取后续页面时,传入本接口响应中返回的NextCursor字段的值。
  46. * @param string $RuleId 需要拉取账单详情业务对应的RuleId。不传会返回所有RuleId数据。默认为空字符串。
  47. */
  48. function __construct()
  49. {
  50. }
  51. /**
  52. * For internal only. DO NOT USE IT.
  53. */
  54. public function deserialize($param)
  55. {
  56. if ($param === null) {
  57. return;
  58. }
  59. if (array_key_exists("Date",$param) and $param["Date"] !== null) {
  60. $this->Date = $param["Date"];
  61. }
  62. if (array_key_exists("Cursor",$param) and $param["Cursor"] !== null) {
  63. $this->Cursor = $param["Cursor"];
  64. }
  65. if (array_key_exists("RuleId",$param) and $param["RuleId"] !== null) {
  66. $this->RuleId = $param["RuleId"];
  67. }
  68. }
  69. }