Class: TencentCloud::Wedata::V20210820::ProjectUsersPage
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::ProjectUsersPage
- 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, pagesize = nil, pagenumber = nil, totalcount = nil, totalpagenumber = nil) ⇒ ProjectUsersPage
constructor
A new instance of ProjectUsersPage.
Constructor Details
#initialize(rows = nil, pagesize = nil, pagenumber = nil, totalcount = nil, totalpagenumber = nil) ⇒ ProjectUsersPage
Returns a new instance of ProjectUsersPage.
30415 30416 30417 30418 30419 30420 30421 |
# File 'lib/v20210820/models.rb', line 30415 def initialize(rows=nil, pagesize=nil, pagenumber=nil, totalcount=nil, totalpagenumber=nil) @Rows = rows @PageSize = pagesize @PageNumber = pagenumber @TotalCount = totalcount @TotalPageNumber = totalpagenumber end |
Instance Attribute Details
#PageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
30413 30414 30415 |
# File 'lib/v20210820/models.rb', line 30413 def PageNumber @PageNumber end |
#PageSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
30413 30414 30415 |
# File 'lib/v20210820/models.rb', line 30413 def PageSize @PageSize end |
#Rows ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
30413 30414 30415 |
# File 'lib/v20210820/models.rb', line 30413 def Rows @Rows end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
30413 30414 30415 |
# File 'lib/v20210820/models.rb', line 30413 def TotalCount @TotalCount end |
#TotalPageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
30413 30414 30415 |
# File 'lib/v20210820/models.rb', line 30413 def TotalPageNumber @TotalPageNumber end |
Instance Method Details
#deserialize(params) ⇒ Object
30423 30424 30425 30426 30427 30428 30429 30430 30431 30432 30433 30434 30435 30436 |
# File 'lib/v20210820/models.rb', line 30423 def deserialize(params) unless params['Rows'].nil? @Rows = [] params['Rows'].each do |i| projectuserrole_tmp = ProjectUserRole.new projectuserrole_tmp.deserialize(i) @Rows << projectuserrole_tmp end end @PageSize = params['PageSize'] @PageNumber = params['PageNumber'] @TotalCount = params['TotalCount'] @TotalPageNumber = params['TotalPageNumber'] end |