Class: Azure::CustomerInsights::Mgmt::V2017_04_26::Models::KpiExtract
- Inherits:
-
Object
- Object
- Azure::CustomerInsights::Mgmt::V2017_04_26::Models::KpiExtract
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-04-26/generated/azure_mgmt_customer_insights/models/kpi_extract.rb
Overview
The KPI extract.
Instance Attribute Summary collapse
-
#expression ⇒ String
The expression.
-
#extract_name ⇒ String
KPI extract name.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for KpiExtract class as Ruby Hash.
Instance Attribute Details
#expression ⇒ String
Returns The expression.
19 20 21 |
# File 'lib/2017-04-26/generated/azure_mgmt_customer_insights/models/kpi_extract.rb', line 19 def expression @expression end |
#extract_name ⇒ String
Returns KPI extract name.
16 17 18 |
# File 'lib/2017-04-26/generated/azure_mgmt_customer_insights/models/kpi_extract.rb', line 16 def extract_name @extract_name end |
Class Method Details
.mapper ⇒ Object
Mapper for KpiExtract class as Ruby Hash. This will be used for serialization/deserialization.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/2017-04-26/generated/azure_mgmt_customer_insights/models/kpi_extract.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'KpiExtract', type: { name: 'Composite', class_name: 'KpiExtract', model_properties: { extract_name: { client_side_validation: true, required: true, serialized_name: 'extractName', type: { name: 'String' } }, expression: { client_side_validation: true, required: true, serialized_name: 'expression', type: { name: 'String' } } } } } end |