Class: TencentCloud::Essbasic::V20201222::CheckMobileAndNameRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20201222::CheckMobileAndNameRequest
- Defined in:
- lib/v20201222/models.rb
Overview
CheckMobileAndName请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(caller = nil, mobile = nil, name = nil) ⇒ CheckMobileAndNameRequest
constructor
A new instance of CheckMobileAndNameRequest.
Constructor Details
#initialize(caller = nil, mobile = nil, name = nil) ⇒ CheckMobileAndNameRequest
Returns a new instance of CheckMobileAndNameRequest.
701 702 703 704 705 |
# File 'lib/v20201222/models.rb', line 701 def initialize(caller=nil, mobile=nil, name=nil) @Caller = caller @Mobile = mobile @Name = name end |
Instance Attribute Details
#Caller ⇒ Object
699 700 701 |
# File 'lib/v20201222/models.rb', line 699 def Caller @Caller end |
#Mobile ⇒ Object
699 700 701 |
# File 'lib/v20201222/models.rb', line 699 def Mobile @Mobile end |
#Name ⇒ Object
699 700 701 |
# File 'lib/v20201222/models.rb', line 699 def Name @Name end |
Instance Method Details
#deserialize(params) ⇒ Object
707 708 709 710 711 712 713 714 |
# File 'lib/v20201222/models.rb', line 707 def deserialize(params) unless params['Caller'].nil? @Caller = Caller.new @Caller.deserialize(params['Caller']) end @Mobile = params['Mobile'] @Name = params['Name'] end |