Class: TencentCloud::Essbasic::V20201222::CheckIdCardVerificationRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20201222::CheckIdCardVerificationRequest
- Defined in:
- lib/v20201222/models.rb
Overview
CheckIdCardVerification请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(caller = nil, name = nil, idcardnumber = nil, idcardtype = nil) ⇒ CheckIdCardVerificationRequest
constructor
A new instance of CheckIdCardVerificationRequest.
Constructor Details
#initialize(caller = nil, name = nil, idcardnumber = nil, idcardtype = nil) ⇒ CheckIdCardVerificationRequest
Returns a new instance of CheckIdCardVerificationRequest.
640 641 642 643 644 645 |
# File 'lib/v20201222/models.rb', line 640 def initialize(caller=nil, name=nil, idcardnumber=nil, idcardtype=nil) @Caller = caller @Name = name @IdCardNumber = idcardnumber @IdCardType = idcardtype end |
Instance Attribute Details
#Caller ⇒ Object
638 639 640 |
# File 'lib/v20201222/models.rb', line 638 def Caller @Caller end |
#IdCardNumber ⇒ Object
638 639 640 |
# File 'lib/v20201222/models.rb', line 638 def IdCardNumber @IdCardNumber end |
#IdCardType ⇒ Object
638 639 640 |
# File 'lib/v20201222/models.rb', line 638 def IdCardType @IdCardType end |
#Name ⇒ Object
638 639 640 |
# File 'lib/v20201222/models.rb', line 638 def Name @Name end |
Instance Method Details
#deserialize(params) ⇒ Object
647 648 649 650 651 652 653 654 655 |
# File 'lib/v20201222/models.rb', line 647 def deserialize(params) unless params['Caller'].nil? @Caller = Caller.new @Caller.deserialize(params['Caller']) end @Name = params['Name'] @IdCardNumber = params['IdCardNumber'] @IdCardType = params['IdCardType'] end |