Class: TencentCloud::Tcr::V20190924::DescribeApplicationTriggerPersonalResp
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcr::V20190924::DescribeApplicationTriggerPersonalResp
- Defined in:
- lib/v20190924/models.rb
Overview
拉取触发器列表返回值
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, triggerinfo = nil) ⇒ DescribeApplicationTriggerPersonalResp
constructor
A new instance of DescribeApplicationTriggerPersonalResp.
Constructor Details
#initialize(totalcount = nil, triggerinfo = nil) ⇒ DescribeApplicationTriggerPersonalResp
Returns a new instance of DescribeApplicationTriggerPersonalResp.
2436 2437 2438 2439 |
# File 'lib/v20190924/models.rb', line 2436 def initialize(totalcount=nil, triggerinfo=nil) @TotalCount = totalcount @TriggerInfo = triggerinfo end |
Instance Attribute Details
#TotalCount ⇒ Object
2434 2435 2436 |
# File 'lib/v20190924/models.rb', line 2434 def TotalCount @TotalCount end |
#TriggerInfo ⇒ Object
2434 2435 2436 |
# File 'lib/v20190924/models.rb', line 2434 def TriggerInfo @TriggerInfo end |
Instance Method Details
#deserialize(params) ⇒ Object
2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 |
# File 'lib/v20190924/models.rb', line 2441 def deserialize(params) @TotalCount = params['TotalCount'] unless params['TriggerInfo'].nil? @TriggerInfo = [] params['TriggerInfo'].each do |i| triggerresp_tmp = TriggerResp.new triggerresp_tmp.deserialize(i) @TriggerInfo << triggerresp_tmp end end end |