Class: RockRMS::Response::WorkflowType

Inherits:
Base
  • Object
show all
Defined in:
lib/rock_rms/response/workflow_type.rb

Constant Summary collapse

MAP =
{
  active: 'IsActive',
  name: 'Name',
  description: 'Description',
  summary: 'SummaryViewText',
  activities: 'ActivityTypes'
}.freeze

Constants inherited from Base

Base::BASE_MAPPING

Instance Attribute Summary

Attributes inherited from Base

#data

Instance Method Summary collapse

Methods inherited from Base

format, #format, #format_attributes, #initialize, #to_h

Constructor Details

This class inherits a constructor from RockRMS::Response::Base

Instance Method Details

#format_single(data) ⇒ Object



12
13
14
15
16
# File 'lib/rock_rms/response/workflow_type.rb', line 12

def format_single(data)
  response = to_h(MAP, data)
  response[:activities] = WorkflowActivityType.format(response[:activities])
  response
end