Class: TencentCloud::Wedata::V20210820::FindAllFolderResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::FindAllFolderResponse
- Defined in:
- lib/v20210820/models.rb
Overview
FindAllFolder返回参数结构体
Instance Attribute Summary collapse
-
#FolderList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(folderlist = nil, requestid = nil) ⇒ FindAllFolderResponse
constructor
A new instance of FindAllFolderResponse.
Constructor Details
#initialize(folderlist = nil, requestid = nil) ⇒ FindAllFolderResponse
Returns a new instance of FindAllFolderResponse.
20361 20362 20363 20364 |
# File 'lib/v20210820/models.rb', line 20361 def initialize(folderlist=nil, requestid=nil) @FolderList = folderlist @RequestId = requestid end |
Instance Attribute Details
#FolderList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
20359 20360 20361 |
# File 'lib/v20210820/models.rb', line 20359 def FolderList @FolderList end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
20359 20360 20361 |
# File 'lib/v20210820/models.rb', line 20359 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
20366 20367 20368 20369 20370 20371 20372 20373 20374 20375 20376 |
# File 'lib/v20210820/models.rb', line 20366 def deserialize(params) unless params['FolderList'].nil? @FolderList = [] params['FolderList'].each do |i| folderdsdto_tmp = FolderDsDto.new folderdsdto_tmp.deserialize(i) @FolderList << folderdsdto_tmp end end @RequestId = params['RequestId'] end |