Class: TencentCloud::Cam::V20190116::ListUsersResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cam::V20190116::ListUsersResponse
- Defined in:
- lib/v20190116/models.rb
Overview
ListUsers返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(data = nil, requestid = nil) ⇒ ListUsersResponse
constructor
A new instance of ListUsersResponse.
Constructor Details
#initialize(data = nil, requestid = nil) ⇒ ListUsersResponse
Returns a new instance of ListUsersResponse.
4003 4004 4005 4006 |
# File 'lib/v20190116/models.rb', line 4003 def initialize(data=nil, requestid=nil) @Data = data @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
4001 4002 4003 |
# File 'lib/v20190116/models.rb', line 4001 def Data @Data end |
#RequestId ⇒ Object
4001 4002 4003 |
# File 'lib/v20190116/models.rb', line 4001 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 |
# File 'lib/v20190116/models.rb', line 4008 def deserialize(params) unless params['Data'].nil? @Data = [] params['Data'].each do |i| subaccountinfo_tmp = SubAccountInfo.new subaccountinfo_tmp.deserialize(i) @Data << subaccountinfo_tmp end end @RequestId = params['RequestId'] end |