Class: TencentCloud::Lighthouse::V20200324::InquirePriceCreateInstancesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Lighthouse::V20200324::InquirePriceCreateInstancesResponse
- Defined in:
- lib/v20200324/models.rb
Overview
InquirePriceCreateInstances返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(price = nil, requestid = nil) ⇒ InquirePriceCreateInstancesResponse
constructor
A new instance of InquirePriceCreateInstancesResponse.
Constructor Details
#initialize(price = nil, requestid = nil) ⇒ InquirePriceCreateInstancesResponse
Returns a new instance of InquirePriceCreateInstancesResponse.
5605 5606 5607 5608 |
# File 'lib/v20200324/models.rb', line 5605 def initialize(price=nil, requestid=nil) @Price = price @RequestId = requestid end |
Instance Attribute Details
#Price ⇒ Object
5603 5604 5605 |
# File 'lib/v20200324/models.rb', line 5603 def Price @Price end |
#RequestId ⇒ Object
5603 5604 5605 |
# File 'lib/v20200324/models.rb', line 5603 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
5610 5611 5612 5613 5614 5615 5616 |
# File 'lib/v20200324/models.rb', line 5610 def deserialize(params) unless params['Price'].nil? @Price = Price.new @Price.deserialize(params['Price']) end @RequestId = params['RequestId'] end |