Class: TencentCloud::Teo::V20220901::DownloadL4LogsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Teo::V20220901::DownloadL4LogsResponse
- Defined in:
- lib/v20220901/models.rb
Overview
DownloadL4Logs返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, data = nil, requestid = nil) ⇒ DownloadL4LogsResponse
constructor
A new instance of DownloadL4LogsResponse.
Constructor Details
#initialize(totalcount = nil, data = nil, requestid = nil) ⇒ DownloadL4LogsResponse
Returns a new instance of DownloadL4LogsResponse.
12240 12241 12242 12243 12244 |
# File 'lib/v20220901/models.rb', line 12240 def initialize(totalcount=nil, data=nil, requestid=nil) @TotalCount = totalcount @Data = data @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
12238 12239 12240 |
# File 'lib/v20220901/models.rb', line 12238 def Data @Data end |
#RequestId ⇒ Object
12238 12239 12240 |
# File 'lib/v20220901/models.rb', line 12238 def RequestId @RequestId end |
#TotalCount ⇒ Object
12238 12239 12240 |
# File 'lib/v20220901/models.rb', line 12238 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 |
# File 'lib/v20220901/models.rb', line 12246 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Data'].nil? @Data = [] params['Data'].each do |i| l4offlinelog_tmp = L4OfflineLog.new l4offlinelog_tmp.deserialize(i) @Data << l4offlinelog_tmp end end @RequestId = params['RequestId'] end |