Class: TencentCloud::Kms::V20190118::SignByAsymmetricKeyRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Kms::V20190118::SignByAsymmetricKeyRequest
- Defined in:
- lib/v20190118/models.rb
Overview
SignByAsymmetricKey请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(algorithm = nil, message = nil, keyid = nil, messagetype = nil) ⇒ SignByAsymmetricKeyRequest
constructor
A new instance of SignByAsymmetricKeyRequest.
Constructor Details
#initialize(algorithm = nil, message = nil, keyid = nil, messagetype = nil) ⇒ SignByAsymmetricKeyRequest
Returns a new instance of SignByAsymmetricKeyRequest.
3185 3186 3187 3188 3189 3190 |
# File 'lib/v20190118/models.rb', line 3185 def initialize(algorithm=nil, =nil, keyid=nil, =nil) @Algorithm = algorithm @Message = @KeyId = keyid @MessageType = end |
Instance Attribute Details
#Algorithm ⇒ Object
3183 3184 3185 |
# File 'lib/v20190118/models.rb', line 3183 def Algorithm @Algorithm end |
#KeyId ⇒ Object
3183 3184 3185 |
# File 'lib/v20190118/models.rb', line 3183 def KeyId @KeyId end |
#Message ⇒ Object
3183 3184 3185 |
# File 'lib/v20190118/models.rb', line 3183 def Message @Message end |
#MessageType ⇒ Object
3183 3184 3185 |
# File 'lib/v20190118/models.rb', line 3183 def MessageType @MessageType end |
Instance Method Details
#deserialize(params) ⇒ Object
3192 3193 3194 3195 3196 3197 |
# File 'lib/v20190118/models.rb', line 3192 def deserialize(params) @Algorithm = params['Algorithm'] @Message = params['Message'] @KeyId = params['KeyId'] @MessageType = params['MessageType'] end |