| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <?php
- // This file is auto-generated, don't edit it. Thanks.
- namespace AlibabaCloud\SDK\Cloudauth\V20190307\Models;
- use AlibabaCloud\Tea\Model;
- class DescribeVerifyRecordsRequest extends Model
- {
- /**
- * @var int
- */
- public $totalCount;
- /**
- * @var int
- */
- public $pageSize;
- /**
- * @var int
- */
- public $currentPage;
- /**
- * @var string
- */
- public $bizType;
- /**
- * @var string
- */
- public $startDate;
- /**
- * @var string
- */
- public $endDate;
- /**
- * @var string
- */
- public $bizId;
- /**
- * @var string
- */
- public $idCardNum;
- /**
- * @var string
- */
- public $statusList;
- /**
- * @var string
- */
- public $queryId;
- protected $_name = [
- 'totalCount' => 'TotalCount',
- 'pageSize' => 'PageSize',
- 'currentPage' => 'CurrentPage',
- 'bizType' => 'BizType',
- 'startDate' => 'StartDate',
- 'endDate' => 'EndDate',
- 'bizId' => 'BizId',
- 'idCardNum' => 'IdCardNum',
- 'statusList' => 'StatusList',
- 'queryId' => 'QueryId',
- ];
- public function validate()
- {
- Model::validateRequired('pageSize', $this->pageSize, true);
- Model::validateRequired('currentPage', $this->currentPage, true);
- }
- public function toMap()
- {
- $res = [];
- if (null !== $this->totalCount) {
- $res['TotalCount'] = $this->totalCount;
- }
- if (null !== $this->pageSize) {
- $res['PageSize'] = $this->pageSize;
- }
- if (null !== $this->currentPage) {
- $res['CurrentPage'] = $this->currentPage;
- }
- if (null !== $this->bizType) {
- $res['BizType'] = $this->bizType;
- }
- if (null !== $this->startDate) {
- $res['StartDate'] = $this->startDate;
- }
- if (null !== $this->endDate) {
- $res['EndDate'] = $this->endDate;
- }
- if (null !== $this->bizId) {
- $res['BizId'] = $this->bizId;
- }
- if (null !== $this->idCardNum) {
- $res['IdCardNum'] = $this->idCardNum;
- }
- if (null !== $this->statusList) {
- $res['StatusList'] = $this->statusList;
- }
- if (null !== $this->queryId) {
- $res['QueryId'] = $this->queryId;
- }
- return $res;
- }
- /**
- * @param array $map
- *
- * @return DescribeVerifyRecordsRequest
- */
- public static function fromMap($map = [])
- {
- $model = new self();
- if (isset($map['TotalCount'])) {
- $model->totalCount = $map['TotalCount'];
- }
- if (isset($map['PageSize'])) {
- $model->pageSize = $map['PageSize'];
- }
- if (isset($map['CurrentPage'])) {
- $model->currentPage = $map['CurrentPage'];
- }
- if (isset($map['BizType'])) {
- $model->bizType = $map['BizType'];
- }
- if (isset($map['StartDate'])) {
- $model->startDate = $map['StartDate'];
- }
- if (isset($map['EndDate'])) {
- $model->endDate = $map['EndDate'];
- }
- if (isset($map['BizId'])) {
- $model->bizId = $map['BizId'];
- }
- if (isset($map['IdCardNum'])) {
- $model->idCardNum = $map['IdCardNum'];
- }
- if (isset($map['StatusList'])) {
- $model->statusList = $map['StatusList'];
- }
- if (isset($map['QueryId'])) {
- $model->queryId = $map['QueryId'];
- }
- return $model;
- }
- }
|