Class: TencentCloud::Ciam::V20220331::ListUserStoreResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Ciam::V20220331::ListUserStoreResponse
- Defined in:
- lib/v20220331/models.rb
Overview
ListUserStore返回参数结构体
Instance Attribute Summary collapse
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#UserStoreSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(userstoreset = nil, requestid = nil) ⇒ ListUserStoreResponse
constructor
A new instance of ListUserStoreResponse.
Constructor Details
#initialize(userstoreset = nil, requestid = nil) ⇒ ListUserStoreResponse
Returns a new instance of ListUserStoreResponse.
1318 1319 1320 1321 |
# File 'lib/v20220331/models.rb', line 1318 def initialize(userstoreset=nil, requestid=nil) @UserStoreSet = userstoreset @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1316 1317 1318 |
# File 'lib/v20220331/models.rb', line 1316 def RequestId @RequestId end |
#UserStoreSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1316 1317 1318 |
# File 'lib/v20220331/models.rb', line 1316 def UserStoreSet @UserStoreSet end |
Instance Method Details
#deserialize(params) ⇒ Object
1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 |
# File 'lib/v20220331/models.rb', line 1323 def deserialize(params) unless params['UserStoreSet'].nil? @UserStoreSet = [] params['UserStoreSet'].each do |i| userstore_tmp = UserStore.new userstore_tmp.deserialize(i) @UserStoreSet << userstore_tmp end end @RequestId = params['RequestId'] end |