Class: TencentCloud::Dlc::V20210125::DescribeViewsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dlc::V20210125::DescribeViewsResponse
- Defined in:
- lib/v20210125/models.rb
Overview
DescribeViews返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(viewlist = nil, totalcount = nil, requestid = nil) ⇒ DescribeViewsResponse
constructor
A new instance of DescribeViewsResponse.
Constructor Details
#initialize(viewlist = nil, totalcount = nil, requestid = nil) ⇒ DescribeViewsResponse
10426 10427 10428 10429 10430 |
# File 'lib/v20210125/models.rb', line 10426 def initialize(viewlist=nil, totalcount=nil, requestid=nil) @ViewList = viewlist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
10424 10425 10426 |
# File 'lib/v20210125/models.rb', line 10424 def RequestId @RequestId end |
#TotalCount ⇒ Object
10424 10425 10426 |
# File 'lib/v20210125/models.rb', line 10424 def TotalCount @TotalCount end |
#ViewList ⇒ Object
10424 10425 10426 |
# File 'lib/v20210125/models.rb', line 10424 def ViewList @ViewList end |
Instance Method Details
#deserialize(params) ⇒ Object
10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 |
# File 'lib/v20210125/models.rb', line 10432 def deserialize(params) unless params['ViewList'].nil? @ViewList = [] params['ViewList'].each do |i| viewresponseinfo_tmp = ViewResponseInfo.new viewresponseinfo_tmp.deserialize(i) @ViewList << viewresponseinfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |