Class: TencentCloud::Wedata::V20210820::DescribeTasksForCodeTemplatePage
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::DescribeTasksForCodeTemplatePage
- Defined in:
- lib/v20210820/models.rb
Overview
批量操作任务列表分页
Instance Attribute Summary collapse
-
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#PageCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(pagecount = nil, items = nil, totalcount = nil) ⇒ DescribeTasksForCodeTemplatePage
constructor
A new instance of DescribeTasksForCodeTemplatePage.
Constructor Details
#initialize(pagecount = nil, items = nil, totalcount = nil) ⇒ DescribeTasksForCodeTemplatePage
Returns a new instance of DescribeTasksForCodeTemplatePage.
17048 17049 17050 17051 17052 |
# File 'lib/v20210820/models.rb', line 17048 def initialize(pagecount=nil, items=nil, totalcount=nil) @PageCount = pagecount @Items = items @TotalCount = totalcount end |
Instance Attribute Details
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
17046 17047 17048 |
# File 'lib/v20210820/models.rb', line 17046 def Items @Items end |
#PageCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
17046 17047 17048 |
# File 'lib/v20210820/models.rb', line 17046 def PageCount @PageCount end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
17046 17047 17048 |
# File 'lib/v20210820/models.rb', line 17046 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 |
# File 'lib/v20210820/models.rb', line 17054 def deserialize(params) @PageCount = params['PageCount'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| tasksimplevo_tmp = TaskSimpleVo.new tasksimplevo_tmp.deserialize(i) @Items << tasksimplevo_tmp end end @TotalCount = params['TotalCount'] end |