Class: TencentCloud::Essbasic::V20201222::DescribeFileUrlsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20201222::DescribeFileUrlsResponse
- Defined in:
- lib/v20201222/models.rb
Overview
DescribeFileUrls返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(fileurls = nil, totalcount = nil, requestid = nil) ⇒ DescribeFileUrlsResponse
constructor
A new instance of DescribeFileUrlsResponse.
Constructor Details
#initialize(fileurls = nil, totalcount = nil, requestid = nil) ⇒ DescribeFileUrlsResponse
Returns a new instance of DescribeFileUrlsResponse.
2367 2368 2369 2370 2371 |
# File 'lib/v20201222/models.rb', line 2367 def initialize(fileurls=nil, totalcount=nil, requestid=nil) @FileUrls = fileurls @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#FileUrls ⇒ Object
2365 2366 2367 |
# File 'lib/v20201222/models.rb', line 2365 def FileUrls @FileUrls end |
#RequestId ⇒ Object
2365 2366 2367 |
# File 'lib/v20201222/models.rb', line 2365 def RequestId @RequestId end |
#TotalCount ⇒ Object
2365 2366 2367 |
# File 'lib/v20201222/models.rb', line 2365 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 |
# File 'lib/v20201222/models.rb', line 2373 def deserialize(params) unless params['FileUrls'].nil? @FileUrls = [] params['FileUrls'].each do |i| fileurl_tmp = FileUrl.new fileurl_tmp.deserialize(i) @FileUrls << fileurl_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |