Class: TencentCloud::Sts::V20180813::QueryApiKeyResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Sts::V20180813::QueryApiKeyResponse
- Defined in:
- lib/v20180813/models.rb
Overview
QueryApiKey返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(idkeys = nil, requestid = nil) ⇒ QueryApiKeyResponse
constructor
A new instance of QueryApiKeyResponse.
Constructor Details
#initialize(idkeys = nil, requestid = nil) ⇒ QueryApiKeyResponse
Returns a new instance of QueryApiKeyResponse.
481 482 483 484 |
# File 'lib/v20180813/models.rb', line 481 def initialize(idkeys=nil, requestid=nil) @IdKeys = idkeys @RequestId = requestid end |
Instance Attribute Details
#IdKeys ⇒ Object
479 480 481 |
# File 'lib/v20180813/models.rb', line 479 def IdKeys @IdKeys end |
#RequestId ⇒ Object
479 480 481 |
# File 'lib/v20180813/models.rb', line 479 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
486 487 488 489 490 491 492 493 494 495 496 |
# File 'lib/v20180813/models.rb', line 486 def deserialize(params) unless params['IdKeys'].nil? @IdKeys = [] params['IdKeys'].each do |i| apikey_tmp = ApiKey.new apikey_tmp.deserialize(i) @IdKeys << apikey_tmp end end @RequestId = params['RequestId'] end |