Class: TencentCloud::Bizlive::V20190313::RegisterIMRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Bizlive::V20190313::RegisterIMRequest
- Defined in:
- lib/v20190313/models.rb
Overview
RegisterIM请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(nickname = nil, userid = nil, headimgurl = nil, level = nil) ⇒ RegisterIMRequest
constructor
A new instance of RegisterIMRequest.
Constructor Details
#initialize(nickname = nil, userid = nil, headimgurl = nil, level = nil) ⇒ RegisterIMRequest
Returns a new instance of RegisterIMRequest.
274 275 276 277 278 279 |
# File 'lib/v20190313/models.rb', line 274 def initialize(nickname=nil, userid=nil, headimgurl=nil, level=nil) @Nickname = nickname @UserId = userid @HeadImgUrl = headimgurl @Level = level end |
Instance Attribute Details
#HeadImgUrl ⇒ Object
272 273 274 |
# File 'lib/v20190313/models.rb', line 272 def HeadImgUrl @HeadImgUrl end |
#Level ⇒ Object
272 273 274 |
# File 'lib/v20190313/models.rb', line 272 def Level @Level end |
#Nickname ⇒ Object
272 273 274 |
# File 'lib/v20190313/models.rb', line 272 def Nickname @Nickname end |
#UserId ⇒ Object
272 273 274 |
# File 'lib/v20190313/models.rb', line 272 def UserId @UserId end |
Instance Method Details
#deserialize(params) ⇒ Object
281 282 283 284 285 286 |
# File 'lib/v20190313/models.rb', line 281 def deserialize(params) @Nickname = params['Nickname'] @UserId = params['UserId'] @HeadImgUrl = params['HeadImgUrl'] @Level = params['Level'] end |