Class: TencentCloud::Bsca::V20210811::DescribeKBLicenseResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Bsca::V20210811::DescribeKBLicenseResponse
- Defined in:
- lib/v20210811/models.rb
Overview
DescribeKBLicense返回参数结构体
Instance Attribute Summary collapse
-
#LicenseList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#NormalizedLicenseExpression ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(licenselist = nil, normalizedlicenseexpression = nil, requestid = nil) ⇒ DescribeKBLicenseResponse
constructor
A new instance of DescribeKBLicenseResponse.
Constructor Details
#initialize(licenselist = nil, normalizedlicenseexpression = nil, requestid = nil) ⇒ DescribeKBLicenseResponse
Returns a new instance of DescribeKBLicenseResponse.
603 604 605 606 607 |
# File 'lib/v20210811/models.rb', line 603 def initialize(licenselist=nil, normalizedlicenseexpression=nil, requestid=nil) @LicenseList = licenselist @NormalizedLicenseExpression = normalizedlicenseexpression @RequestId = requestid end |
Instance Attribute Details
#LicenseList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
601 602 603 |
# File 'lib/v20210811/models.rb', line 601 def LicenseList @LicenseList end |
#NormalizedLicenseExpression ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
601 602 603 |
# File 'lib/v20210811/models.rb', line 601 def NormalizedLicenseExpression @NormalizedLicenseExpression end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
601 602 603 |
# File 'lib/v20210811/models.rb', line 601 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
609 610 611 612 613 614 615 616 617 618 619 620 |
# File 'lib/v20210811/models.rb', line 609 def deserialize(params) unless params['LicenseList'].nil? @LicenseList = [] params['LicenseList'].each do |i| licenseunion_tmp = LicenseUnion.new licenseunion_tmp.deserialize(i) @LicenseList << licenseunion_tmp end end @NormalizedLicenseExpression = params['NormalizedLicenseExpression'] @RequestId = params['RequestId'] end |