Class: TencentCloud::Cii::V20210408::DescribeReportClassifyResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cii::V20210408::DescribeReportClassifyResponse
- Defined in:
- lib/v20210408/models.rb
Overview
DescribeReportClassify返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(reports = nil, requestid = nil) ⇒ DescribeReportClassifyResponse
constructor
A new instance of DescribeReportClassifyResponse.
Constructor Details
#initialize(reports = nil, requestid = nil) ⇒ DescribeReportClassifyResponse
Returns a new instance of DescribeReportClassifyResponse.
546 547 548 549 |
# File 'lib/v20210408/models.rb', line 546 def initialize(reports=nil, requestid=nil) @Reports = reports @RequestId = requestid end |
Instance Attribute Details
#Reports ⇒ Object
544 545 546 |
# File 'lib/v20210408/models.rb', line 544 def Reports @Reports end |
#RequestId ⇒ Object
544 545 546 |
# File 'lib/v20210408/models.rb', line 544 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
551 552 553 554 555 556 557 558 559 560 561 |
# File 'lib/v20210408/models.rb', line 551 def deserialize(params) unless params['Reports'].nil? @Reports = [] params['Reports'].each do |i| classifiedreports_tmp = ClassifiedReports.new classifiedreports_tmp.deserialize(i) @Reports << classifiedreports_tmp end end @RequestId = params['RequestId'] end |