Class: TencentCloud::Cdn::V20180606::ListDiagnoseReportResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cdn::V20180606::ListDiagnoseReportResponse
- Defined in:
- lib/v20180606/models.rb
Overview
ListDiagnoseReport返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(data = nil, requestid = nil) ⇒ ListDiagnoseReportResponse
constructor
A new instance of ListDiagnoseReportResponse.
Constructor Details
#initialize(data = nil, requestid = nil) ⇒ ListDiagnoseReportResponse
Returns a new instance of ListDiagnoseReportResponse.
8643 8644 8645 8646 |
# File 'lib/v20180606/models.rb', line 8643 def initialize(data=nil, requestid=nil) @Data = data @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
8641 8642 8643 |
# File 'lib/v20180606/models.rb', line 8641 def Data @Data end |
#RequestId ⇒ Object
8641 8642 8643 |
# File 'lib/v20180606/models.rb', line 8641 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 |
# File 'lib/v20180606/models.rb', line 8648 def deserialize(params) unless params['Data'].nil? @Data = [] params['Data'].each do |i| diagnoseinfo_tmp = DiagnoseInfo.new diagnoseinfo_tmp.deserialize(i) @Data << diagnoseinfo_tmp end end @RequestId = params['RequestId'] end |