Class: TencentCloud::Waf::V20180125::DescribeExportsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Waf::V20180125::DescribeExportsResponse
- Defined in:
- lib/v20180125/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.
7566 7567 7568 7569 7570 |
# File 'lib/v20180125/models.rb', line 7566 def initialize(exports=nil, totalcount=nil, requestid=nil) @Exports = exports @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#Exports ⇒ Object
7564 7565 7566 |
# File 'lib/v20180125/models.rb', line 7564 def Exports @Exports end |
#RequestId ⇒ Object
7564 7565 7566 |
# File 'lib/v20180125/models.rb', line 7564 def RequestId @RequestId end |
#TotalCount ⇒ Object
7564 7565 7566 |
# File 'lib/v20180125/models.rb', line 7564 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 |
# File 'lib/v20180125/models.rb', line 7572 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 |