Class: TencentCloud::Kms::V20190118::EncryptResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Kms::V20190118::EncryptResponse
- Defined in:
- lib/v20190118/models.rb
Overview
Encrypt返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(ciphertextblob = nil, keyid = nil, requestid = nil) ⇒ EncryptResponse
constructor
A new instance of EncryptResponse.
Constructor Details
#initialize(ciphertextblob = nil, keyid = nil, requestid = nil) ⇒ EncryptResponse
Returns a new instance of EncryptResponse.
1657 1658 1659 1660 1661 |
# File 'lib/v20190118/models.rb', line 1657 def initialize(ciphertextblob=nil, keyid=nil, requestid=nil) @CiphertextBlob = ciphertextblob @KeyId = keyid @RequestId = requestid end |
Instance Attribute Details
#CiphertextBlob ⇒ Object
1655 1656 1657 |
# File 'lib/v20190118/models.rb', line 1655 def CiphertextBlob @CiphertextBlob end |
#KeyId ⇒ Object
1655 1656 1657 |
# File 'lib/v20190118/models.rb', line 1655 def KeyId @KeyId end |
#RequestId ⇒ Object
1655 1656 1657 |
# File 'lib/v20190118/models.rb', line 1655 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
1663 1664 1665 1666 1667 |
# File 'lib/v20190118/models.rb', line 1663 def deserialize(params) @CiphertextBlob = params['CiphertextBlob'] @KeyId = params['KeyId'] @RequestId = params['RequestId'] end |