Class: TencentCloud::Iotexplorer::V20190423::CreateStudioProductResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotexplorer::V20190423::CreateStudioProductResponse
- Defined in:
- lib/v20190423/models.rb
Overview
CreateStudioProduct返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(product = nil, requestid = nil) ⇒ CreateStudioProductResponse
constructor
A new instance of CreateStudioProductResponse.
Constructor Details
#initialize(product = nil, requestid = nil) ⇒ CreateStudioProductResponse
Returns a new instance of CreateStudioProductResponse.
2439 2440 2441 2442 |
# File 'lib/v20190423/models.rb', line 2439 def initialize(product=nil, requestid=nil) @Product = product @RequestId = requestid end |
Instance Attribute Details
#Product ⇒ Object
2437 2438 2439 |
# File 'lib/v20190423/models.rb', line 2437 def Product @Product end |
#RequestId ⇒ Object
2437 2438 2439 |
# File 'lib/v20190423/models.rb', line 2437 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2444 2445 2446 2447 2448 2449 2450 |
# File 'lib/v20190423/models.rb', line 2444 def deserialize(params) unless params['Product'].nil? @Product = ProductEntry.new @Product.deserialize(params['Product']) end @RequestId = params['RequestId'] end |