Class: TencentCloud::Teo::V20220901::DownloadL7LogsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Teo::V20220901::DownloadL7LogsResponse
- Defined in:
- lib/v20220901/models.rb
Overview
DownloadL7Logs返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, data = nil, requestid = nil) ⇒ DownloadL7LogsResponse
constructor
A new instance of DownloadL7LogsResponse.
Constructor Details
#initialize(totalcount = nil, data = nil, requestid = nil) ⇒ DownloadL7LogsResponse
Returns a new instance of DownloadL7LogsResponse.
12307 12308 12309 12310 12311 |
# File 'lib/v20220901/models.rb', line 12307 def initialize(totalcount=nil, data=nil, requestid=nil) @TotalCount = totalcount @Data = data @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
12305 12306 12307 |
# File 'lib/v20220901/models.rb', line 12305 def Data @Data end |
#RequestId ⇒ Object
12305 12306 12307 |
# File 'lib/v20220901/models.rb', line 12305 def RequestId @RequestId end |
#TotalCount ⇒ Object
12305 12306 12307 |
# File 'lib/v20220901/models.rb', line 12305 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 |
# File 'lib/v20220901/models.rb', line 12313 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Data'].nil? @Data = [] params['Data'].each do |i| l7offlinelog_tmp = L7OfflineLog.new l7offlinelog_tmp.deserialize(i) @Data << l7offlinelog_tmp end end @RequestId = params['RequestId'] end |