Class: TencentCloud::Cwp::V20180228::DescribeBashEventsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeBashEventsResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeBashEvents返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, list = nil, requestid = nil) ⇒ DescribeBashEventsResponse
constructor
A new instance of DescribeBashEventsResponse.
Constructor Details
#initialize(totalcount = nil, list = nil, requestid = nil) ⇒ DescribeBashEventsResponse
Returns a new instance of DescribeBashEventsResponse.
13727 13728 13729 13730 13731 |
# File 'lib/v20180228/models.rb', line 13727 def initialize(totalcount=nil, list=nil, requestid=nil) @TotalCount = totalcount @List = list @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
13725 13726 13727 |
# File 'lib/v20180228/models.rb', line 13725 def List @List end |
#RequestId ⇒ Object
13725 13726 13727 |
# File 'lib/v20180228/models.rb', line 13725 def RequestId @RequestId end |
#TotalCount ⇒ Object
13725 13726 13727 |
# File 'lib/v20180228/models.rb', line 13725 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 |
# File 'lib/v20180228/models.rb', line 13733 def deserialize(params) @TotalCount = params['TotalCount'] unless params['List'].nil? @List = [] params['List'].each do |i| bashevent_tmp = BashEvent.new bashevent_tmp.deserialize(i) @List << bashevent_tmp end end @RequestId = params['RequestId'] end |