Class: ServiceFlowData

Inherits:
ApplicationRecord show all
Defined in:
app/models/service_flow_data.rb

Overview

Data for a specific ServiceFlow.

Instance Attribute Summary collapse

Instance Attribute Details

#dataHash

JSONB data represented as a Hash

Returns:

  • (Hash)

    the current value of data



10
11
12
# File 'app/models/service_flow_data.rb', line 10

def data
  @data
end

#flowString

Flow from which the data came

Returns:

  • (String)

    the current value of flow



10
11
12
# File 'app/models/service_flow_data.rb', line 10

def flow
  @flow
end

#serviceService

Service the data belongs to

Returns:

  • (Service)

    the current value of service



10
11
12
# File 'app/models/service_flow_data.rb', line 10

def service
  @service
end