Class: TencentCloud::Wedata::V20210820::PageRoles
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::PageRoles
- Defined in:
- lib/v20210820/models.rb
Overview
角色列表分页信息
Instance Attribute Summary collapse
-
#PageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#PageSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Rows ⇒ 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(rows = nil, pagenumber = nil, pagesize = nil, totalcount = nil, totalpagenumber = nil) ⇒ PageRoles
constructor
A new instance of PageRoles.
Constructor Details
#initialize(rows = nil, pagenumber = nil, pagesize = nil, totalcount = nil, totalpagenumber = nil) ⇒ PageRoles
Returns a new instance of PageRoles.
28284 28285 28286 28287 28288 28289 28290 |
# File 'lib/v20210820/models.rb', line 28284 def initialize(rows=nil, pagenumber=nil, pagesize=nil, totalcount=nil, totalpagenumber=nil) @Rows = rows @PageNumber = pagenumber @PageSize = pagesize @TotalCount = totalcount @TotalPageNumber = totalpagenumber end |
Instance Attribute Details
#PageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
28282 28283 28284 |
# File 'lib/v20210820/models.rb', line 28282 def PageNumber @PageNumber end |
#PageSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
28282 28283 28284 |
# File 'lib/v20210820/models.rb', line 28282 def PageSize @PageSize end |
#Rows ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
28282 28283 28284 |
# File 'lib/v20210820/models.rb', line 28282 def Rows @Rows end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
28282 28283 28284 |
# File 'lib/v20210820/models.rb', line 28282 def TotalCount @TotalCount end |
#TotalPageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
28282 28283 28284 |
# File 'lib/v20210820/models.rb', line 28282 def TotalPageNumber @TotalPageNumber end |
Instance Method Details
#deserialize(params) ⇒ Object
28292 28293 28294 28295 28296 28297 28298 28299 28300 28301 28302 28303 28304 28305 |
# File 'lib/v20210820/models.rb', line 28292 def deserialize(params) unless params['Rows'].nil? @Rows = [] params['Rows'].each do |i| baserole_tmp = BaseRole.new baserole_tmp.deserialize(i) @Rows << baserole_tmp end end @PageNumber = params['PageNumber'] @PageSize = params['PageSize'] @TotalCount = params['TotalCount'] @TotalPageNumber = params['TotalPageNumber'] end |