Class: TencentCloud::Cls::V20201016::DescribeExportsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cls::V20201016::DescribeExportsResponse
- Defined in:
- lib/v20201016/models.rb
Overview
DescribeExports返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(exports = nil, totalcount = nil, requestid = nil) ⇒ DescribeExportsResponse
constructor
A new instance of DescribeExportsResponse.
Constructor Details
#initialize(exports = nil, totalcount = nil, requestid = nil) ⇒ DescribeExportsResponse
Returns a new instance of DescribeExportsResponse.
8376 8377 8378 8379 8380 |
# File 'lib/v20201016/models.rb', line 8376 def initialize(exports=nil, totalcount=nil, requestid=nil) @Exports = exports @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#Exports ⇒ Object
8374 8375 8376 |
# File 'lib/v20201016/models.rb', line 8374 def Exports @Exports end |
#RequestId ⇒ Object
8374 8375 8376 |
# File 'lib/v20201016/models.rb', line 8374 def RequestId @RequestId end |
#TotalCount ⇒ Object
8374 8375 8376 |
# File 'lib/v20201016/models.rb', line 8374 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 |
# File 'lib/v20201016/models.rb', line 8382 def deserialize(params) unless params['Exports'].nil? @Exports = [] params['Exports'].each do |i| exportinfo_tmp = ExportInfo.new exportinfo_tmp.deserialize(i) @Exports << exportinfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |