Class: TencentCloud::Lcic::V20220817::DescribeGroupListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Lcic::V20220817::DescribeGroupListResponse
- Defined in:
- lib/v20220817/models.rb
Overview
DescribeGroupList返回参数结构体
Instance Attribute Summary collapse
-
#GroupInfos ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(total = nil, groupinfos = nil, requestid = nil) ⇒ DescribeGroupListResponse
constructor
A new instance of DescribeGroupListResponse.
Constructor Details
#initialize(total = nil, groupinfos = nil, requestid = nil) ⇒ DescribeGroupListResponse
Returns a new instance of DescribeGroupListResponse.
1964 1965 1966 1967 1968 |
# File 'lib/v20220817/models.rb', line 1964 def initialize(total=nil, groupinfos=nil, requestid=nil) @Total = total @GroupInfos = groupinfos @RequestId = requestid end |
Instance Attribute Details
#GroupInfos ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1962 1963 1964 |
# File 'lib/v20220817/models.rb', line 1962 def GroupInfos @GroupInfos end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1962 1963 1964 |
# File 'lib/v20220817/models.rb', line 1962 def RequestId @RequestId end |
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1962 1963 1964 |
# File 'lib/v20220817/models.rb', line 1962 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 |
# File 'lib/v20220817/models.rb', line 1970 def deserialize(params) @Total = params['Total'] unless params['GroupInfos'].nil? @GroupInfos = [] params['GroupInfos'].each do |i| groupinfo_tmp = GroupInfo.new groupinfo_tmp.deserialize(i) @GroupInfos << groupinfo_tmp end end @RequestId = params['RequestId'] end |