Class: TencentCloud::Cloudapp::V20220530::VerifyLicenseResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cloudapp::V20220530::VerifyLicenseResponse
- Defined in:
- lib/v20220530/models.rb
Overview
VerifyLicense返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(license = nil, timestamp = nil, signature = nil, requestid = nil) ⇒ VerifyLicenseResponse
constructor
A new instance of VerifyLicenseResponse.
Constructor Details
#initialize(license = nil, timestamp = nil, signature = nil, requestid = nil) ⇒ VerifyLicenseResponse
Returns a new instance of VerifyLicenseResponse.
400 401 402 403 404 405 |
# File 'lib/v20220530/models.rb', line 400 def initialize(license=nil, =nil, signature=nil, requestid=nil) @License = license @Timestamp = @Signature = signature @RequestId = requestid end |
Instance Attribute Details
#License ⇒ Object
398 399 400 |
# File 'lib/v20220530/models.rb', line 398 def License @License end |
#RequestId ⇒ Object
398 399 400 |
# File 'lib/v20220530/models.rb', line 398 def RequestId @RequestId end |
#Signature ⇒ Object
398 399 400 |
# File 'lib/v20220530/models.rb', line 398 def Signature @Signature end |
#Timestamp ⇒ Object
398 399 400 |
# File 'lib/v20220530/models.rb', line 398 def Timestamp @Timestamp end |
Instance Method Details
#deserialize(params) ⇒ Object
407 408 409 410 411 412 413 414 415 |
# File 'lib/v20220530/models.rb', line 407 def deserialize(params) unless params['License'].nil? @License = License.new @License.deserialize(params['License']) end @Timestamp = params['Timestamp'] @Signature = params['Signature'] @RequestId = params['RequestId'] end |