Class: TencentCloud::Dlc::V20210125::Users
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dlc::V20210125::Users
- Defined in:
- lib/v20210125/models.rb
Overview
用户信息集合
Instance Attribute Summary collapse
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#UserSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(userset = nil, totalcount = nil) ⇒ Users
constructor
A new instance of Users.
Constructor Details
#initialize(userset = nil, totalcount = nil) ⇒ Users
Returns a new instance of Users.
17530 17531 17532 17533 |
# File 'lib/v20210125/models.rb', line 17530 def initialize(userset=nil, totalcount=nil) @UserSet = userset @TotalCount = totalcount end |
Instance Attribute Details
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
17528 17529 17530 |
# File 'lib/v20210125/models.rb', line 17528 def TotalCount @TotalCount end |
#UserSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
17528 17529 17530 |
# File 'lib/v20210125/models.rb', line 17528 def UserSet @UserSet end |
Instance Method Details
#deserialize(params) ⇒ Object
17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 |
# File 'lib/v20210125/models.rb', line 17535 def deserialize(params) unless params['UserSet'].nil? @UserSet = [] params['UserSet'].each do |i| = UserMessage.new .deserialize(i) @UserSet << end end @TotalCount = params['TotalCount'] end |