Class: TencentCloud::Live::V20180801::DescribeMonitorReportResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Live::V20180801::DescribeMonitorReportResponse
- Defined in:
- lib/v20180801/models.rb
Overview
DescribeMonitorReport返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(mpsresult = nil, diagnoseresult = nil, requestid = nil) ⇒ DescribeMonitorReportResponse
constructor
A new instance of DescribeMonitorReportResponse.
Constructor Details
#initialize(mpsresult = nil, diagnoseresult = nil, requestid = nil) ⇒ DescribeMonitorReportResponse
Returns a new instance of DescribeMonitorReportResponse.
9109 9110 9111 9112 9113 |
# File 'lib/v20180801/models.rb', line 9109 def initialize(mpsresult=nil, diagnoseresult=nil, requestid=nil) @MPSResult = mpsresult @DiagnoseResult = diagnoseresult @RequestId = requestid end |
Instance Attribute Details
#DiagnoseResult ⇒ Object
9107 9108 9109 |
# File 'lib/v20180801/models.rb', line 9107 def DiagnoseResult @DiagnoseResult end |
#MPSResult ⇒ Object
9107 9108 9109 |
# File 'lib/v20180801/models.rb', line 9107 def MPSResult @MPSResult end |
#RequestId ⇒ Object
9107 9108 9109 |
# File 'lib/v20180801/models.rb', line 9107 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 |
# File 'lib/v20180801/models.rb', line 9115 def deserialize(params) unless params['MPSResult'].nil? @MPSResult = MPSResult.new @MPSResult.deserialize(params['MPSResult']) end unless params['DiagnoseResult'].nil? @DiagnoseResult = DiagnoseResult.new @DiagnoseResult.deserialize(params['DiagnoseResult']) end @RequestId = params['RequestId'] end |