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.
13648 13649 13650 13651 13652 |
# File 'lib/v20180228/models.rb', line 13648 def initialize(totalcount=nil, list=nil, requestid=nil) @TotalCount = totalcount @List = list @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
13646 13647 13648 |
# File 'lib/v20180228/models.rb', line 13646 def List @List end |
#RequestId ⇒ Object
13646 13647 13648 |
# File 'lib/v20180228/models.rb', line 13646 def RequestId @RequestId end |
#TotalCount ⇒ Object
13646 13647 13648 |
# File 'lib/v20180228/models.rb', line 13646 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 |
# File 'lib/v20180228/models.rb', line 13654 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 |