Class: TencentCloud::Weilingwith::V20230427::SsoUserResult
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Weilingwith::V20230427::SsoUserResult
- Defined in:
- lib/v20230427/models.rb
Overview
租户人员结果
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(total = nil, users = nil) ⇒ SsoUserResult
constructor
A new instance of SsoUserResult.
Constructor Details
#initialize(total = nil, users = nil) ⇒ SsoUserResult
Returns a new instance of SsoUserResult.
7365 7366 7367 7368 |
# File 'lib/v20230427/models.rb', line 7365 def initialize(total=nil, users=nil) @Total = total @Users = users end |
Instance Attribute Details
#Total ⇒ Object
7363 7364 7365 |
# File 'lib/v20230427/models.rb', line 7363 def Total @Total end |
#Users ⇒ Object
7363 7364 7365 |
# File 'lib/v20230427/models.rb', line 7363 def Users @Users end |
Instance Method Details
#deserialize(params) ⇒ Object
7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 |
# File 'lib/v20230427/models.rb', line 7370 def deserialize(params) @Total = params['Total'] unless params['Users'].nil? @Users = [] params['Users'].each do |i| ssouser_tmp = SsoUser.new ssouser_tmp.deserialize(i) @Users << ssouser_tmp end end end |