Class: TencentCloud::Cfs::V20190719::DescribeDataFlowResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cfs::V20190719::DescribeDataFlowResponse
- Defined in:
- lib/v20190719/models.rb
Overview
DescribeDataFlow返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, dataflows = nil, requestid = nil) ⇒ DescribeDataFlowResponse
constructor
A new instance of DescribeDataFlowResponse.
Constructor Details
#initialize(totalcount = nil, dataflows = nil, requestid = nil) ⇒ DescribeDataFlowResponse
Returns a new instance of DescribeDataFlowResponse.
2172 2173 2174 2175 2176 |
# File 'lib/v20190719/models.rb', line 2172 def initialize(totalcount=nil, dataflows=nil, requestid=nil) @TotalCount = totalcount @DataFlows = dataflows @RequestId = requestid end |
Instance Attribute Details
#DataFlows ⇒ Object
2170 2171 2172 |
# File 'lib/v20190719/models.rb', line 2170 def DataFlows @DataFlows end |
#RequestId ⇒ Object
2170 2171 2172 |
# File 'lib/v20190719/models.rb', line 2170 def RequestId @RequestId end |
#TotalCount ⇒ Object
2170 2171 2172 |
# File 'lib/v20190719/models.rb', line 2170 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 |
# File 'lib/v20190719/models.rb', line 2178 def deserialize(params) @TotalCount = params['TotalCount'] unless params['DataFlows'].nil? @DataFlows = [] params['DataFlows'].each do |i| dataflowinfo_tmp = DataFlowInfo.new dataflowinfo_tmp.deserialize(i) @DataFlows << dataflowinfo_tmp end end @RequestId = params['RequestId'] end |