Class: TencentCloud::Cwp::V20180228::DescribeWebHookReceiverResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeWebHookReceiverResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeWebHookReceiver返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(list = nil, totalcount = nil, requestid = nil) ⇒ DescribeWebHookReceiverResponse
constructor
A new instance of DescribeWebHookReceiverResponse.
Constructor Details
#initialize(list = nil, totalcount = nil, requestid = nil) ⇒ DescribeWebHookReceiverResponse
Returns a new instance of DescribeWebHookReceiverResponse.
24776 24777 24778 24779 24780 |
# File 'lib/v20180228/models.rb', line 24776 def initialize(list=nil, totalcount=nil, requestid=nil) @List = list @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
24774 24775 24776 |
# File 'lib/v20180228/models.rb', line 24774 def List @List end |
#RequestId ⇒ Object
24774 24775 24776 |
# File 'lib/v20180228/models.rb', line 24774 def RequestId @RequestId end |
#TotalCount ⇒ Object
24774 24775 24776 |
# File 'lib/v20180228/models.rb', line 24774 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
24782 24783 24784 24785 24786 24787 24788 24789 24790 24791 24792 24793 |
# File 'lib/v20180228/models.rb', line 24782 def deserialize(params) unless params['List'].nil? @List = [] params['List'].each do |i| webhookreceiver_tmp = WebHookReceiver.new webhookreceiver_tmp.deserialize(i) @List << webhookreceiver_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |