Class: TencentCloud::Wedata::V20210820::DescribeDsFolderTreeResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::DescribeDsFolderTreeResponse
- Defined in:
- lib/v20210820/models.rb
Overview
DescribeDsFolderTree返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(data = nil, requestid = nil) ⇒ DescribeDsFolderTreeResponse
constructor
A new instance of DescribeDsFolderTreeResponse.
Constructor Details
#initialize(data = nil, requestid = nil) ⇒ DescribeDsFolderTreeResponse
Returns a new instance of DescribeDsFolderTreeResponse.
10497 10498 10499 10500 |
# File 'lib/v20210820/models.rb', line 10497 def initialize(data=nil, requestid=nil) @Data = data @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
10495 10496 10497 |
# File 'lib/v20210820/models.rb', line 10495 def Data @Data end |
#RequestId ⇒ Object
10495 10496 10497 |
# File 'lib/v20210820/models.rb', line 10495 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 |
# File 'lib/v20210820/models.rb', line 10502 def deserialize(params) unless params['Data'].nil? @Data = [] params['Data'].each do |i| pathnodedsvo_tmp = PathNodeDsVO.new pathnodedsvo_tmp.deserialize(i) @Data << pathnodedsvo_tmp end end @RequestId = params['RequestId'] end |