Class: TencentCloud::Emr::V20190103::CreateGroupsSTDResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Emr::V20190103::CreateGroupsSTDResponse
- Defined in:
- lib/v20190103/models.rb
Overview
CreateGroupsSTD返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(data = nil, requestid = nil) ⇒ CreateGroupsSTDResponse
constructor
A new instance of CreateGroupsSTDResponse.
Constructor Details
#initialize(data = nil, requestid = nil) ⇒ CreateGroupsSTDResponse
Returns a new instance of CreateGroupsSTDResponse.
2069 2070 2071 2072 |
# File 'lib/v20190103/models.rb', line 2069 def initialize(data=nil, requestid=nil) @Data = data @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
2067 2068 2069 |
# File 'lib/v20190103/models.rb', line 2067 def Data @Data end |
#RequestId ⇒ Object
2067 2068 2069 |
# File 'lib/v20190103/models.rb', line 2067 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 |
# File 'lib/v20190103/models.rb', line 2074 def deserialize(params) unless params['Data'].nil? @Data = [] params['Data'].each do |i| resultitem_tmp = ResultItem.new resultitem_tmp.deserialize(i) @Data << resultitem_tmp end end @RequestId = params['RequestId'] end |