Class: TencentCloud::Csip::V20221121::DescribeScanReportListResponse

Inherits:
TencentCloud::Common::AbstractModel
  • Object
show all
Defined in:
lib/v20221121/models.rb

Overview

DescribeScanReportList返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalcount = nil, data = nil, uinlist = nil, requestid = nil) ⇒ DescribeScanReportListResponse

Returns a new instance of DescribeScanReportListResponse.



5090
5091
5092
5093
5094
5095
# File 'lib/v20221121/models.rb', line 5090

def initialize(totalcount=nil, data=nil, uinlist=nil, requestid=nil)
  @TotalCount = totalcount
  @Data = data
  @UINList = uinlist
  @RequestId = requestid
end

Instance Attribute Details

#DataObject

Parameters:

  • TotalCount:

    总条数

  • Data:

    任务日志列表

  • UINList:

    主账户ID列表

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



5088
5089
5090
# File 'lib/v20221121/models.rb', line 5088

def Data
  @Data
end

#RequestIdObject

Parameters:

  • TotalCount:

    总条数

  • Data:

    任务日志列表

  • UINList:

    主账户ID列表

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



5088
5089
5090
# File 'lib/v20221121/models.rb', line 5088

def RequestId
  @RequestId
end

#TotalCountObject

Parameters:

  • TotalCount:

    总条数

  • Data:

    任务日志列表

  • UINList:

    主账户ID列表

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



5088
5089
5090
# File 'lib/v20221121/models.rb', line 5088

def TotalCount
  @TotalCount
end

#UINListObject

Parameters:

  • TotalCount:

    总条数

  • Data:

    任务日志列表

  • UINList:

    主账户ID列表

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



5088
5089
5090
# File 'lib/v20221121/models.rb', line 5088

def UINList
  @UINList
end

Instance Method Details

#deserialize(params) ⇒ Object



5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
# File 'lib/v20221121/models.rb', line 5097

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['Data'].nil?
    @Data = []
    params['Data'].each do |i|
      scantaskinfo_tmp = ScanTaskInfo.new
      scantaskinfo_tmp.deserialize(i)
      @Data << scantaskinfo_tmp
    end
  end
  @UINList = params['UINList']
  @RequestId = params['RequestId']
end