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
10045 10046 10047 10048 |
# File 'lib/v20210820/models.rb', line 10045 def initialize(data=nil, requestid=nil) @Data = data @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
10043 10044 10045 |
# File 'lib/v20210820/models.rb', line 10043 def Data @Data end |
#RequestId ⇒ Object
10043 10044 10045 |
# File 'lib/v20210820/models.rb', line 10043 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 |
# File 'lib/v20210820/models.rb', line 10050 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 |