Class: Azure::ARM::DevTestLabs::Models::LabCostSummaryProperties
- Inherits:
-
Object
- Object
- Azure::ARM::DevTestLabs::Models::LabCostSummaryProperties
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_devtestlabs/models/lab_cost_summary_properties.rb
Overview
The properties of the cost summary.
Instance Attribute Summary collapse
-
#estimated_lab_cost ⇒ Float
The cost component of the cost item.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for LabCostSummaryProperties class as Ruby Hash.
Instance Attribute Details
#estimated_lab_cost ⇒ Float
Returns The cost component of the cost item.
17 18 19 |
# File 'lib/generated/azure_mgmt_devtestlabs/models/lab_cost_summary_properties.rb', line 17 def estimated_lab_cost @estimated_lab_cost end |
Class Method Details
.mapper ⇒ Object
Mapper for LabCostSummaryProperties class as Ruby Hash. This will be used for serialization/deserialization.
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/generated/azure_mgmt_devtestlabs/models/lab_cost_summary_properties.rb', line 24 def self.mapper() { required: false, serialized_name: 'LabCostSummaryProperties', type: { name: 'Composite', class_name: 'LabCostSummaryProperties', model_properties: { estimated_lab_cost: { required: false, serialized_name: 'estimatedLabCost', type: { name: 'Double' } } } } } end |