Class: TencentCloud::Vod::V20180717::DescribeSubAppIdsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Vod::V20180717::DescribeSubAppIdsResponse
- Defined in:
- lib/v20180717/models.rb
Overview
DescribeSubAppIds返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(subappidinfoset = nil, totalcount = nil, requestid = nil) ⇒ DescribeSubAppIdsResponse
constructor
A new instance of DescribeSubAppIdsResponse.
Constructor Details
#initialize(subappidinfoset = nil, totalcount = nil, requestid = nil) ⇒ DescribeSubAppIdsResponse
Returns a new instance of DescribeSubAppIdsResponse.
12625 12626 12627 12628 12629 |
# File 'lib/v20180717/models.rb', line 12625 def initialize(subappidinfoset=nil, totalcount=nil, requestid=nil) @SubAppIdInfoSet = subappidinfoset @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
12623 12624 12625 |
# File 'lib/v20180717/models.rb', line 12623 def RequestId @RequestId end |
#SubAppIdInfoSet ⇒ Object
12623 12624 12625 |
# File 'lib/v20180717/models.rb', line 12623 def SubAppIdInfoSet @SubAppIdInfoSet end |
#TotalCount ⇒ Object
12623 12624 12625 |
# File 'lib/v20180717/models.rb', line 12623 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 |
# File 'lib/v20180717/models.rb', line 12631 def deserialize(params) unless params['SubAppIdInfoSet'].nil? @SubAppIdInfoSet = [] params['SubAppIdInfoSet'].each do |i| subappidinfo_tmp = SubAppIdInfo.new subappidinfo_tmp.deserialize(i) @SubAppIdInfoSet << subappidinfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |