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.
2427 2428 2429 2430 |
# File 'lib/v20190423/models.rb', line 2427 def initialize(product=nil, requestid=nil) @Product = product @RequestId = requestid end |
Instance Attribute Details
#Product ⇒ Object
2425 2426 2427 |
# File 'lib/v20190423/models.rb', line 2425 def Product @Product end |
#RequestId ⇒ Object
2425 2426 2427 |
# File 'lib/v20190423/models.rb', line 2425 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2432 2433 2434 2435 2436 2437 2438 |
# File 'lib/v20190423/models.rb', line 2432 def deserialize(params) unless params['Product'].nil? @Product = ProductEntry.new @Product.deserialize(params['Product']) end @RequestId = params['RequestId'] end |