Class: TencentCloud::Ess::V20201111::DescribeFlowTemplatesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::DescribeFlowTemplatesResponse
- Defined in:
- lib/v20201111/models.rb
Overview
DescribeFlowTemplates返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(templates = nil, totalcount = nil, requestid = nil) ⇒ DescribeFlowTemplatesResponse
constructor
A new instance of DescribeFlowTemplatesResponse.
Constructor Details
#initialize(templates = nil, totalcount = nil, requestid = nil) ⇒ DescribeFlowTemplatesResponse
Returns a new instance of DescribeFlowTemplatesResponse.
10639 10640 10641 10642 10643 |
# File 'lib/v20201111/models.rb', line 10639 def initialize(templates=nil, totalcount=nil, requestid=nil) @Templates = templates @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
10637 10638 10639 |
# File 'lib/v20201111/models.rb', line 10637 def RequestId @RequestId end |
#Templates ⇒ Object
10637 10638 10639 |
# File 'lib/v20201111/models.rb', line 10637 def Templates @Templates end |
#TotalCount ⇒ Object
10637 10638 10639 |
# File 'lib/v20201111/models.rb', line 10637 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 |
# File 'lib/v20201111/models.rb', line 10645 def deserialize(params) unless params['Templates'].nil? @Templates = [] params['Templates'].each do |i| templateinfo_tmp = TemplateInfo.new templateinfo_tmp.deserialize(i) @Templates << templateinfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |