Class: TencentCloud::Wedata::V20250806::OpsWorkflows
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20250806::OpsWorkflows
- Defined in:
- lib/v20250806/models.rb
Overview
查询工作流分页列表
Instance Attribute Summary collapse
-
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#PageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#PageSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalPageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(items = nil, totalcount = nil, totalpagenumber = nil, pagesize = nil, pagenumber = nil) ⇒ OpsWorkflows
constructor
A new instance of OpsWorkflows.
Constructor Details
#initialize(items = nil, totalcount = nil, totalpagenumber = nil, pagesize = nil, pagenumber = nil) ⇒ OpsWorkflows
Returns a new instance of OpsWorkflows.
6145 6146 6147 6148 6149 6150 6151 |
# File 'lib/v20250806/models.rb', line 6145 def initialize(items=nil, totalcount=nil, totalpagenumber=nil, pagesize=nil, pagenumber=nil) @Items = items @TotalCount = totalcount @TotalPageNumber = totalpagenumber @PageSize = pagesize @PageNumber = pagenumber end |
Instance Attribute Details
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
6143 6144 6145 |
# File 'lib/v20250806/models.rb', line 6143 def Items @Items end |
#PageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
6143 6144 6145 |
# File 'lib/v20250806/models.rb', line 6143 def PageNumber @PageNumber end |
#PageSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
6143 6144 6145 |
# File 'lib/v20250806/models.rb', line 6143 def PageSize @PageSize end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
6143 6144 6145 |
# File 'lib/v20250806/models.rb', line 6143 def TotalCount @TotalCount end |
#TotalPageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
6143 6144 6145 |
# File 'lib/v20250806/models.rb', line 6143 def TotalPageNumber @TotalPageNumber end |
Instance Method Details
#deserialize(params) ⇒ Object
6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 |
# File 'lib/v20250806/models.rb', line 6153 def deserialize(params) unless params['Items'].nil? @Items = [] params['Items'].each do |i| opsworkflow_tmp = OpsWorkflow.new opsworkflow_tmp.deserialize(i) @Items << opsworkflow_tmp end end @TotalCount = params['TotalCount'] @TotalPageNumber = params['TotalPageNumber'] @PageSize = params['PageSize'] @PageNumber = params['PageNumber'] end |