Class: TencentCloud::Yunjing::V20180228::DescribeBashEventsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Yunjing::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.
1781 1782 1783 1784 1785 |
# File 'lib/v20180228/models.rb', line 1781 def initialize(totalcount=nil, list=nil, requestid=nil) @TotalCount = totalcount @List = list @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
1779 1780 1781 |
# File 'lib/v20180228/models.rb', line 1779 def List @List end |
#RequestId ⇒ Object
1779 1780 1781 |
# File 'lib/v20180228/models.rb', line 1779 def RequestId @RequestId end |
#TotalCount ⇒ Object
1779 1780 1781 |
# File 'lib/v20180228/models.rb', line 1779 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 |
# File 'lib/v20180228/models.rb', line 1787 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 |