Class: TencentCloud::Dlc::V20210125::DescribeDLCCatalogAccessResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dlc::V20210125::DescribeDLCCatalogAccessResponse
- Defined in:
- lib/v20210125/models.rb
Overview
DescribeDLCCatalogAccess返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, rows = nil, requestid = nil) ⇒ DescribeDLCCatalogAccessResponse
constructor
A new instance of DescribeDLCCatalogAccessResponse.
Constructor Details
#initialize(totalcount = nil, rows = nil, requestid = nil) ⇒ DescribeDLCCatalogAccessResponse
Returns a new instance of DescribeDLCCatalogAccessResponse.
6133 6134 6135 6136 6137 |
# File 'lib/v20210125/models.rb', line 6133 def initialize(totalcount=nil, rows=nil, requestid=nil) @TotalCount = totalcount @Rows = rows @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
6131 6132 6133 |
# File 'lib/v20210125/models.rb', line 6131 def RequestId @RequestId end |
#Rows ⇒ Object
6131 6132 6133 |
# File 'lib/v20210125/models.rb', line 6131 def Rows @Rows end |
#TotalCount ⇒ Object
6131 6132 6133 |
# File 'lib/v20210125/models.rb', line 6131 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 |
# File 'lib/v20210125/models.rb', line 6139 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Rows'].nil? @Rows = [] params['Rows'].each do |i| dlccatalogaccess_tmp = DLCCatalogAccess.new dlccatalogaccess_tmp.deserialize(i) @Rows << dlccatalogaccess_tmp end end @RequestId = params['RequestId'] end |