Class: TencentCloud::Wav::V20210129::QueryLicenseInfoResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wav::V20210129::QueryLicenseInfoResponse
- Defined in:
- lib/v20210129/models.rb
Overview
QueryLicenseInfo返回参数结构体
Instance Attribute Summary collapse
-
#LicenseInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(licenseinfo = nil, requestid = nil) ⇒ QueryLicenseInfoResponse
constructor
A new instance of QueryLicenseInfoResponse.
Constructor Details
#initialize(licenseinfo = nil, requestid = nil) ⇒ QueryLicenseInfoResponse
Returns a new instance of QueryLicenseInfoResponse.
2919 2920 2921 2922 |
# File 'lib/v20210129/models.rb', line 2919 def initialize(licenseinfo=nil, requestid=nil) @LicenseInfo = licenseinfo @RequestId = requestid end |
Instance Attribute Details
#LicenseInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2917 2918 2919 |
# File 'lib/v20210129/models.rb', line 2917 def LicenseInfo @LicenseInfo end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2917 2918 2919 |
# File 'lib/v20210129/models.rb', line 2917 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2924 2925 2926 2927 2928 2929 2930 |
# File 'lib/v20210129/models.rb', line 2924 def deserialize(params) unless params['LicenseInfo'].nil? @LicenseInfo = LicenseInfo.new @LicenseInfo.deserialize(params['LicenseInfo']) end @RequestId = params['RequestId'] end |