Class: TencentCloud::Wedata::V20250806::WorkflowFolderPage
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20250806::WorkflowFolderPage
- Defined in:
- lib/v20250806/models.rb
Overview
资源文件分页
Instance Attribute Summary collapse
-
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#PageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#PageSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalPageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(pagenumber = nil, pagesize = nil, totalcount = nil, totalpagenumber = nil, items = nil) ⇒ WorkflowFolderPage
constructor
A new instance of WorkflowFolderPage.
Constructor Details
#initialize(pagenumber = nil, pagesize = nil, totalcount = nil, totalpagenumber = nil, items = nil) ⇒ WorkflowFolderPage
Returns a new instance of WorkflowFolderPage.
14172 14173 14174 14175 14176 14177 14178 |
# File 'lib/v20250806/models.rb', line 14172 def initialize(pagenumber=nil, pagesize=nil, totalcount=nil, totalpagenumber=nil, items=nil) @PageNumber = pagenumber @PageSize = pagesize @TotalCount = totalcount @TotalPageNumber = totalpagenumber @Items = items end |
Instance Attribute Details
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
14170 14171 14172 |
# File 'lib/v20250806/models.rb', line 14170 def Items @Items end |
#PageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
14170 14171 14172 |
# File 'lib/v20250806/models.rb', line 14170 def PageNumber @PageNumber end |
#PageSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
14170 14171 14172 |
# File 'lib/v20250806/models.rb', line 14170 def PageSize @PageSize end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
14170 14171 14172 |
# File 'lib/v20250806/models.rb', line 14170 def TotalCount @TotalCount end |
#TotalPageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
14170 14171 14172 |
# File 'lib/v20250806/models.rb', line 14170 def TotalPageNumber @TotalPageNumber end |
Instance Method Details
#deserialize(params) ⇒ Object
14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 |
# File 'lib/v20250806/models.rb', line 14180 def deserialize(params) @PageNumber = params['PageNumber'] @PageSize = params['PageSize'] @TotalCount = params['TotalCount'] @TotalPageNumber = params['TotalPageNumber'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| workflowfolder_tmp = WorkflowFolder.new workflowfolder_tmp.deserialize(i) @Items << workflowfolder_tmp end end end |