Class: TencentCloud::Iotvideoindustry::V20201201::DescribeSubGroupsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotvideoindustry::V20201201::DescribeSubGroupsResponse
- Defined in:
- lib/v20201201/models.rb
Overview
DescribeSubGroups返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(grouplist = nil, totalcount = nil, requestid = nil) ⇒ DescribeSubGroupsResponse
constructor
A new instance of DescribeSubGroupsResponse.
Constructor Details
#initialize(grouplist = nil, totalcount = nil, requestid = nil) ⇒ DescribeSubGroupsResponse
Returns a new instance of DescribeSubGroupsResponse.
3803 3804 3805 3806 3807 |
# File 'lib/v20201201/models.rb', line 3803 def initialize(grouplist=nil, totalcount=nil, requestid=nil) @GroupList = grouplist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#GroupList ⇒ Object
3801 3802 3803 |
# File 'lib/v20201201/models.rb', line 3801 def GroupList @GroupList end |
#RequestId ⇒ Object
3801 3802 3803 |
# File 'lib/v20201201/models.rb', line 3801 def RequestId @RequestId end |
#TotalCount ⇒ Object
3801 3802 3803 |
# File 'lib/v20201201/models.rb', line 3801 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 |
# File 'lib/v20201201/models.rb', line 3809 def deserialize(params) unless params['GroupList'].nil? @GroupList = [] params['GroupList'].each do |i| groupitem_tmp = GroupItem.new groupitem_tmp.deserialize(i) @GroupList << groupitem_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |