Class: TencentCloud::Ciam::V20220331::ListUserByPropertyResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Ciam::V20220331::ListUserByPropertyResponse
- Defined in:
- lib/v20220331/models.rb
Overview
ListUserByProperty返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(users = nil, requestid = nil) ⇒ ListUserByPropertyResponse
constructor
A new instance of ListUserByPropertyResponse.
Constructor Details
#initialize(users = nil, requestid = nil) ⇒ ListUserByPropertyResponse
Returns a new instance of ListUserByPropertyResponse.
1125 1126 1127 1128 |
# File 'lib/v20220331/models.rb', line 1125 def initialize(users=nil, requestid=nil) @Users = users @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
1123 1124 1125 |
# File 'lib/v20220331/models.rb', line 1123 def RequestId @RequestId end |
#Users ⇒ Object
1123 1124 1125 |
# File 'lib/v20220331/models.rb', line 1123 def Users @Users end |
Instance Method Details
#deserialize(params) ⇒ Object
1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 |
# File 'lib/v20220331/models.rb', line 1130 def deserialize(params) unless params['Users'].nil? @Users = [] params['Users'].each do |i| user_tmp = User.new user_tmp.deserialize(i) @Users << user_tmp end end @RequestId = params['RequestId'] end |