Class: TencentCloud::Apm::V20210622::DescribeServiceOverviewResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Apm::V20210622::DescribeServiceOverviewResponse
- Defined in:
- lib/v20210622/models.rb
Overview
DescribeServiceOverview返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(records = nil, requestid = nil) ⇒ DescribeServiceOverviewResponse
constructor
A new instance of DescribeServiceOverviewResponse.
Constructor Details
#initialize(records = nil, requestid = nil) ⇒ DescribeServiceOverviewResponse
Returns a new instance of DescribeServiceOverviewResponse.
2718 2719 2720 2721 |
# File 'lib/v20210622/models.rb', line 2718 def initialize(records=nil, requestid=nil) @Records = records @RequestId = requestid end |
Instance Attribute Details
#Records ⇒ Object
2716 2717 2718 |
# File 'lib/v20210622/models.rb', line 2716 def Records @Records end |
#RequestId ⇒ Object
2716 2717 2718 |
# File 'lib/v20210622/models.rb', line 2716 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 |
# File 'lib/v20210622/models.rb', line 2723 def deserialize(params) unless params['Records'].nil? @Records = [] params['Records'].each do |i| apmmetricrecord_tmp = ApmMetricRecord.new apmmetricrecord_tmp.deserialize(i) @Records << apmmetricrecord_tmp end end @RequestId = params['RequestId'] end |