Class: TencentCloud::Bma::V20210624::DescribeBPReportFakeURLsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Bma::V20210624::DescribeBPReportFakeURLsResponse
- Defined in:
- lib/v20210624/models.rb
Overview
DescribeBPReportFakeURLs返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(reportfakeurlinfos = nil, totalcount = nil, requestid = nil) ⇒ DescribeBPReportFakeURLsResponse
constructor
A new instance of DescribeBPReportFakeURLsResponse.
Constructor Details
#initialize(reportfakeurlinfos = nil, totalcount = nil, requestid = nil) ⇒ DescribeBPReportFakeURLsResponse
Returns a new instance of DescribeBPReportFakeURLsResponse.
1144 1145 1146 1147 1148 |
# File 'lib/v20210624/models.rb', line 1144 def initialize(reportfakeurlinfos=nil, totalcount=nil, requestid=nil) @ReportFakeURLInfos = reportfakeurlinfos @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#ReportFakeURLInfos ⇒ Object
1142 1143 1144 |
# File 'lib/v20210624/models.rb', line 1142 def ReportFakeURLInfos @ReportFakeURLInfos end |
#RequestId ⇒ Object
1142 1143 1144 |
# File 'lib/v20210624/models.rb', line 1142 def RequestId @RequestId end |
#TotalCount ⇒ Object
1142 1143 1144 |
# File 'lib/v20210624/models.rb', line 1142 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 |
# File 'lib/v20210624/models.rb', line 1150 def deserialize(params) unless params['ReportFakeURLInfos'].nil? @ReportFakeURLInfos = [] params['ReportFakeURLInfos'].each do |i| reportfakeurlinfo_tmp = ReportFakeURLInfo.new reportfakeurlinfo_tmp.deserialize(i) @ReportFakeURLInfos << reportfakeurlinfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |