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.
29558 29559 29560 29561 29562 29563 29564 |
# File 'lib/v20210820/models.rb', line 29558 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,表示取不到有效值。
29556 29557 29558 |
# File 'lib/v20210820/models.rb', line 29556 def PageNumber @PageNumber end |
#PageSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
29556 29557 29558 |
# File 'lib/v20210820/models.rb', line 29556 def PageSize @PageSize end |
#Rows ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
29556 29557 29558 |
# File 'lib/v20210820/models.rb', line 29556 def Rows @Rows end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
29556 29557 29558 |
# File 'lib/v20210820/models.rb', line 29556 def TotalCount @TotalCount end |
#TotalPageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
29556 29557 29558 |
# File 'lib/v20210820/models.rb', line 29556 def TotalPageNumber @TotalPageNumber end |
Instance Method Details
#deserialize(params) ⇒ Object
29566 29567 29568 29569 29570 29571 29572 29573 29574 29575 29576 29577 29578 29579 |
# File 'lib/v20210820/models.rb', line 29566 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 |