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.
20227 20228 20229 20230 |
# File 'lib/v20210820/models.rb', line 20227 def initialize(folderlist=nil, requestid=nil) @FolderList = folderlist @RequestId = requestid end |
Instance Attribute Details
#FolderList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
20225 20226 20227 |
# File 'lib/v20210820/models.rb', line 20225 def FolderList @FolderList end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
20225 20226 20227 |
# File 'lib/v20210820/models.rb', line 20225 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
20232 20233 20234 20235 20236 20237 20238 20239 20240 20241 20242 |
# File 'lib/v20210820/models.rb', line 20232 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 |