Class: TencentCloud::Cwp::V20180228::DescribeMonthInspectionReportResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeMonthInspectionReportResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeMonthInspectionReport返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, list = nil, requestid = nil) ⇒ DescribeMonthInspectionReportResponse
constructor
A new instance of DescribeMonthInspectionReportResponse.
Constructor Details
#initialize(totalcount = nil, list = nil, requestid = nil) ⇒ DescribeMonthInspectionReportResponse
Returns a new instance of DescribeMonthInspectionReportResponse.
18637 18638 18639 18640 18641 |
# File 'lib/v20180228/models.rb', line 18637 def initialize(totalcount=nil, list=nil, requestid=nil) @TotalCount = totalcount @List = list @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
18635 18636 18637 |
# File 'lib/v20180228/models.rb', line 18635 def List @List end |
#RequestId ⇒ Object
18635 18636 18637 |
# File 'lib/v20180228/models.rb', line 18635 def RequestId @RequestId end |
#TotalCount ⇒ Object
18635 18636 18637 |
# File 'lib/v20180228/models.rb', line 18635 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 |
# File 'lib/v20180228/models.rb', line 18643 def deserialize(params) @TotalCount = params['TotalCount'] unless params['List'].nil? @List = [] params['List'].each do |i| monthinspectionreport_tmp = MonthInspectionReport.new monthinspectionreport_tmp.deserialize(i) @List << monthinspectionreport_tmp end end @RequestId = params['RequestId'] end |