Class: TencentCloud::Wedata::V20250806::ListProcessLineagePage
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20250806::ListProcessLineagePage
- Defined in:
- lib/v20250806/models.rb
Overview
ListLineagePage
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(items = nil, pagecount = nil, pagesize = nil, pagenumber = nil, totalcount = nil) ⇒ ListProcessLineagePage
constructor
A new instance of ListProcessLineagePage.
Constructor Details
#initialize(items = nil, pagecount = nil, pagesize = nil, pagenumber = nil, totalcount = nil) ⇒ ListProcessLineagePage
Returns a new instance of ListProcessLineagePage.
7392 7393 7394 7395 7396 7397 7398 |
# File 'lib/v20250806/models.rb', line 7392 def initialize(items=nil, pagecount=nil, pagesize=nil, pagenumber=nil, totalcount=nil) @Items = items @PageCount = pagecount @PageSize = pagesize @PageNumber = pagenumber @TotalCount = totalcount end |
Instance Attribute Details
#Items ⇒ Object
7390 7391 7392 |
# File 'lib/v20250806/models.rb', line 7390 def Items @Items end |
#PageCount ⇒ Object
7390 7391 7392 |
# File 'lib/v20250806/models.rb', line 7390 def PageCount @PageCount end |
#PageNumber ⇒ Object
7390 7391 7392 |
# File 'lib/v20250806/models.rb', line 7390 def PageNumber @PageNumber end |
#PageSize ⇒ Object
7390 7391 7392 |
# File 'lib/v20250806/models.rb', line 7390 def PageSize @PageSize end |
#TotalCount ⇒ Object
7390 7391 7392 |
# File 'lib/v20250806/models.rb', line 7390 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 |
# File 'lib/v20250806/models.rb', line 7400 def deserialize(params) unless params['Items'].nil? @Items = [] params['Items'].each do |i| lineagepair_tmp = LineagePair.new lineagepair_tmp.deserialize(i) @Items << lineagepair_tmp end end @PageCount = params['PageCount'] @PageSize = params['PageSize'] @PageNumber = params['PageNumber'] @TotalCount = params['TotalCount'] end |