Class: TencentCloud::Iotvideoindustry::V20201201::DescribeGroupsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotvideoindustry::V20201201::DescribeGroupsResponse
- Defined in:
- lib/v20201201/models.rb
Overview
DescribeGroups返回参数结构体
Instance Attribute Summary collapse
-
#Groups ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(groups = nil, requestid = nil) ⇒ DescribeGroupsResponse
constructor
A new instance of DescribeGroupsResponse.
Constructor Details
#initialize(groups = nil, requestid = nil) ⇒ DescribeGroupsResponse
Returns a new instance of DescribeGroupsResponse.
2624 2625 2626 2627 |
# File 'lib/v20201201/models.rb', line 2624 def initialize(groups=nil, requestid=nil) @Groups = groups @RequestId = requestid end |
Instance Attribute Details
#Groups ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2622 2623 2624 |
# File 'lib/v20201201/models.rb', line 2622 def Groups @Groups end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2622 2623 2624 |
# File 'lib/v20201201/models.rb', line 2622 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 |
# File 'lib/v20201201/models.rb', line 2629 def deserialize(params) unless params['Groups'].nil? @Groups = [] params['Groups'].each do |i| groupinfo_tmp = GroupInfo.new groupinfo_tmp.deserialize(i) @Groups << groupinfo_tmp end end @RequestId = params['RequestId'] end |