Class: TencentCloud::Cwp::V20180228::DescribeBashEventsNewResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeBashEventsNewResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeBashEventsNew返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, list = nil, requestid = nil) ⇒ DescribeBashEventsNewResponse
constructor
A new instance of DescribeBashEventsNewResponse.
Constructor Details
#initialize(totalcount = nil, list = nil, requestid = nil) ⇒ DescribeBashEventsNewResponse
Returns a new instance of DescribeBashEventsNewResponse.
13569 13570 13571 13572 13573 |
# File 'lib/v20180228/models.rb', line 13569 def initialize(totalcount=nil, list=nil, requestid=nil) @TotalCount = totalcount @List = list @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
13567 13568 13569 |
# File 'lib/v20180228/models.rb', line 13567 def List @List end |
#RequestId ⇒ Object
13567 13568 13569 |
# File 'lib/v20180228/models.rb', line 13567 def RequestId @RequestId end |
#TotalCount ⇒ Object
13567 13568 13569 |
# File 'lib/v20180228/models.rb', line 13567 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 |
# File 'lib/v20180228/models.rb', line 13575 def deserialize(params) @TotalCount = params['TotalCount'] unless params['List'].nil? @List = [] params['List'].each do |i| basheventnew_tmp = BashEventNew.new basheventnew_tmp.deserialize(i) @List << basheventnew_tmp end end @RequestId = params['RequestId'] end |