Class: TencentCloud::Essbasic::V20201222::CheckVerifyCodeMatchFlowIdRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20201222::CheckVerifyCodeMatchFlowIdRequest
- Defined in:
- lib/v20201222/models.rb
Overview
CheckVerifyCodeMatchFlowId请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(caller = nil, mobile = nil, verifycode = nil, flowid = nil) ⇒ CheckVerifyCodeMatchFlowIdRequest
constructor
A new instance of CheckVerifyCodeMatchFlowIdRequest.
Constructor Details
#initialize(caller = nil, mobile = nil, verifycode = nil, flowid = nil) ⇒ CheckVerifyCodeMatchFlowIdRequest
Returns a new instance of CheckVerifyCodeMatchFlowIdRequest.
837 838 839 840 841 842 |
# File 'lib/v20201222/models.rb', line 837 def initialize(caller=nil, mobile=nil, verifycode=nil, flowid=nil) @Caller = caller @Mobile = mobile @VerifyCode = verifycode @FlowId = flowid end |
Instance Attribute Details
#Caller ⇒ Object
835 836 837 |
# File 'lib/v20201222/models.rb', line 835 def Caller @Caller end |
#FlowId ⇒ Object
835 836 837 |
# File 'lib/v20201222/models.rb', line 835 def FlowId @FlowId end |
#Mobile ⇒ Object
835 836 837 |
# File 'lib/v20201222/models.rb', line 835 def Mobile @Mobile end |
#VerifyCode ⇒ Object
835 836 837 |
# File 'lib/v20201222/models.rb', line 835 def VerifyCode @VerifyCode end |
Instance Method Details
#deserialize(params) ⇒ Object
844 845 846 847 848 849 850 851 852 |
# File 'lib/v20201222/models.rb', line 844 def deserialize(params) unless params['Caller'].nil? @Caller = Caller.new @Caller.deserialize(params['Caller']) end @Mobile = params['Mobile'] @VerifyCode = params['VerifyCode'] @FlowId = params['FlowId'] end |