Class: TencentCloud::Emr::V20190103::DescribeGroupsSTDResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Emr::V20190103::DescribeGroupsSTDResponse
- Defined in:
- lib/v20190103/models.rb
Overview
DescribeGroupsSTD返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(data = nil, totalcount = nil, requestid = nil) ⇒ DescribeGroupsSTDResponse
constructor
A new instance of DescribeGroupsSTDResponse.
Constructor Details
#initialize(data = nil, totalcount = nil, requestid = nil) ⇒ DescribeGroupsSTDResponse
Returns a new instance of DescribeGroupsSTDResponse.
3688 3689 3690 3691 3692 |
# File 'lib/v20190103/models.rb', line 3688 def initialize(data=nil, totalcount=nil, requestid=nil) @Data = data @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
3686 3687 3688 |
# File 'lib/v20190103/models.rb', line 3686 def Data @Data end |
#RequestId ⇒ Object
3686 3687 3688 |
# File 'lib/v20190103/models.rb', line 3686 def RequestId @RequestId end |
#TotalCount ⇒ Object
3686 3687 3688 |
# File 'lib/v20190103/models.rb', line 3686 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 |
# File 'lib/v20190103/models.rb', line 3694 def deserialize(params) unless params['Data'].nil? @Data = [] params['Data'].each do |i| groupinfos_tmp = GroupInfos.new groupinfos_tmp.deserialize(i) @Data << groupinfos_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |