Class: ServiceFlowData
- Inherits:
-
ApplicationRecord
- Object
- ActiveRecord::Base
- ApplicationRecord
- ServiceFlowData
- Defined in:
- app/models/service_flow_data.rb
Overview
Data for a specific ServiceFlow.
Instance Attribute Summary collapse
-
#data ⇒ Hash
JSONB data represented as a Hash.
-
#flow ⇒ String
Flow from which the data came.
-
#service ⇒ Service
Service the data belongs to.
Instance Attribute Details
#data ⇒ Hash
JSONB data represented as a Hash
10 11 12 |
# File 'app/models/service_flow_data.rb', line 10 def data @data end |
#flow ⇒ String
Flow from which the data came
10 11 12 |
# File 'app/models/service_flow_data.rb', line 10 def flow @flow end |
#service ⇒ Service
Service the data belongs to
10 11 12 |
# File 'app/models/service_flow_data.rb', line 10 def service @service end |