Class: TencentCloud::Tcr::V20190924::DescribeWebhookTriggerLogResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcr::V20190924::DescribeWebhookTriggerLogResponse
- Defined in:
- lib/v20190924/models.rb
Overview
DescribeWebhookTriggerLog返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, logs = nil, requestid = nil) ⇒ DescribeWebhookTriggerLogResponse
constructor
A new instance of DescribeWebhookTriggerLogResponse.
Constructor Details
#initialize(totalcount = nil, logs = nil, requestid = nil) ⇒ DescribeWebhookTriggerLogResponse
Returns a new instance of DescribeWebhookTriggerLogResponse.
4414 4415 4416 4417 4418 |
# File 'lib/v20190924/models.rb', line 4414 def initialize(totalcount=nil, logs=nil, requestid=nil) @TotalCount = totalcount @Logs = logs @RequestId = requestid end |
Instance Attribute Details
#Logs ⇒ Object
4412 4413 4414 |
# File 'lib/v20190924/models.rb', line 4412 def Logs @Logs end |
#RequestId ⇒ Object
4412 4413 4414 |
# File 'lib/v20190924/models.rb', line 4412 def RequestId @RequestId end |
#TotalCount ⇒ Object
4412 4413 4414 |
# File 'lib/v20190924/models.rb', line 4412 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 |
# File 'lib/v20190924/models.rb', line 4420 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Logs'].nil? @Logs = [] params['Logs'].each do |i| webhooktriggerlog_tmp = WebhookTriggerLog.new webhooktriggerlog_tmp.deserialize(i) @Logs << webhooktriggerlog_tmp end end @RequestId = params['RequestId'] end |