Class: TencentCloud::Waf::V20180125::DescribePostCLSFlowsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Waf::V20180125::DescribePostCLSFlowsResponse
- Defined in:
- lib/v20180125/models.rb
Overview
DescribePostCLSFlows返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(postclsflows = nil, requestid = nil) ⇒ DescribePostCLSFlowsResponse
constructor
A new instance of DescribePostCLSFlowsResponse.
Constructor Details
#initialize(postclsflows = nil, requestid = nil) ⇒ DescribePostCLSFlowsResponse
Returns a new instance of DescribePostCLSFlowsResponse.
8919 8920 8921 8922 |
# File 'lib/v20180125/models.rb', line 8919 def initialize(postclsflows=nil, requestid=nil) @PostCLSFlows = postclsflows @RequestId = requestid end |
Instance Attribute Details
#PostCLSFlows ⇒ Object
8917 8918 8919 |
# File 'lib/v20180125/models.rb', line 8917 def PostCLSFlows @PostCLSFlows end |
#RequestId ⇒ Object
8917 8918 8919 |
# File 'lib/v20180125/models.rb', line 8917 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 |
# File 'lib/v20180125/models.rb', line 8924 def deserialize(params) unless params['PostCLSFlows'].nil? @PostCLSFlows = [] params['PostCLSFlows'].each do |i| postclsflowinfo_tmp = PostCLSFlowInfo.new postclsflowinfo_tmp.deserialize(i) @PostCLSFlows << postclsflowinfo_tmp end end @RequestId = params['RequestId'] end |