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.
259 260 261 262 263 264 |
# File 'lib/v20220530/models.rb', line 259 def initialize(license=nil, =nil, signature=nil, requestid=nil) @License = license @Timestamp = @Signature = signature @RequestId = requestid end |
Instance Attribute Details
#License ⇒ Object
257 258 259 |
# File 'lib/v20220530/models.rb', line 257 def License @License end |
#RequestId ⇒ Object
257 258 259 |
# File 'lib/v20220530/models.rb', line 257 def RequestId @RequestId end |
#Signature ⇒ Object
257 258 259 |
# File 'lib/v20220530/models.rb', line 257 def Signature @Signature end |
#Timestamp ⇒ Object
257 258 259 |
# File 'lib/v20220530/models.rb', line 257 def Timestamp @Timestamp end |
Instance Method Details
#deserialize(params) ⇒ Object
266 267 268 269 270 271 272 273 274 |
# File 'lib/v20220530/models.rb', line 266 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 |