Class: TencentCloud::Bsca::V20210811::DescribeKBComponentResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Bsca::V20210811::DescribeKBComponentResponse
- Defined in:
- lib/v20210811/models.rb
Overview
DescribeKBComponent返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(component = nil, requestid = nil) ⇒ DescribeKBComponentResponse
constructor
A new instance of DescribeKBComponentResponse.
Constructor Details
#initialize(component = nil, requestid = nil) ⇒ DescribeKBComponentResponse
Returns a new instance of DescribeKBComponentResponse.
426 427 428 429 |
# File 'lib/v20210811/models.rb', line 426 def initialize(component=nil, requestid=nil) @Component = component @RequestId = requestid end |
Instance Attribute Details
#Component ⇒ Object
424 425 426 |
# File 'lib/v20210811/models.rb', line 424 def Component @Component end |
#RequestId ⇒ Object
424 425 426 |
# File 'lib/v20210811/models.rb', line 424 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
431 432 433 434 435 436 437 |
# File 'lib/v20210811/models.rb', line 431 def deserialize(params) unless params['Component'].nil? @Component = Component.new @Component.deserialize(params['Component']) end @RequestId = params['RequestId'] end |