1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- // This file is auto-generated, don't edit it. Thanks.
- namespace AlibabaCloud\SDK\Cloudauth\V20190307\Models;
- use AlibabaCloud\Tea\Model;
- class Mobile3MetaDetailVerifyRequest extends Model
- {
- /**
- * @example 520181199902104631
- *
- * @var string
- */
- public $identifyNum;
- /**
- * @example 150000xxxx
- *
- * @var string
- */
- public $mobile;
- /**
- * @example normal
- *
- * @var string
- */
- public $paramType;
- /**
- * @var string
- */
- public $userName;
- protected $_name = [
- 'identifyNum' => 'IdentifyNum',
- 'mobile' => 'Mobile',
- 'paramType' => 'ParamType',
- 'userName' => 'UserName',
- ];
- public function validate()
- {
- }
- public function toMap()
- {
- $res = [];
- if (null !== $this->identifyNum) {
- $res['IdentifyNum'] = $this->identifyNum;
- }
- if (null !== $this->mobile) {
- $res['Mobile'] = $this->mobile;
- }
- if (null !== $this->paramType) {
- $res['ParamType'] = $this->paramType;
- }
- if (null !== $this->userName) {
- $res['UserName'] = $this->userName;
- }
- return $res;
- }
- /**
- * @param array $map
- *
- * @return Mobile3MetaDetailVerifyRequest
- */
- public static function fromMap($map = [])
- {
- $model = new self();
- if (isset($map['IdentifyNum'])) {
- $model->identifyNum = $map['IdentifyNum'];
- }
- if (isset($map['Mobile'])) {
- $model->mobile = $map['Mobile'];
- }
- if (isset($map['ParamType'])) {
- $model->paramType = $map['ParamType'];
- }
- if (isset($map['UserName'])) {
- $model->userName = $map['UserName'];
- }
- return $model;
- }
- }
|