Class: TencentCloud::Iotexplorer::V20190423::GetAuthMiniProgramAppListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotexplorer::V20190423::GetAuthMiniProgramAppListResponse
- Defined in:
- lib/v20190423/models.rb
Overview
GetAuthMiniProgramAppList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(miniprogramlist = nil, total = nil, requestid = nil) ⇒ GetAuthMiniProgramAppListResponse
constructor
A new instance of GetAuthMiniProgramAppListResponse.
Constructor Details
#initialize(miniprogramlist = nil, total = nil, requestid = nil) ⇒ GetAuthMiniProgramAppListResponse
Returns a new instance of GetAuthMiniProgramAppListResponse.
8317 8318 8319 8320 8321 |
# File 'lib/v20190423/models.rb', line 8317 def initialize(miniprogramlist=nil, total=nil, requestid=nil) @MiniProgramList = miniprogramlist @Total = total @RequestId = requestid end |
Instance Attribute Details
#MiniProgramList ⇒ Object
8315 8316 8317 |
# File 'lib/v20190423/models.rb', line 8315 def MiniProgramList @MiniProgramList end |
#RequestId ⇒ Object
8315 8316 8317 |
# File 'lib/v20190423/models.rb', line 8315 def RequestId @RequestId end |
#Total ⇒ Object
8315 8316 8317 |
# File 'lib/v20190423/models.rb', line 8315 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 |
# File 'lib/v20190423/models.rb', line 8323 def deserialize(params) unless params['MiniProgramList'].nil? @MiniProgramList = [] params['MiniProgramList'].each do |i| authminiprogramappinfo_tmp = AuthMiniProgramAppInfo.new authminiprogramappinfo_tmp.deserialize(i) @MiniProgramList << authminiprogramappinfo_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |