class GovukPublishingComponents::Presenters::StepByStepModel

@private

def base_path

def base_path
  content_item[:base_path]
end

def content

def content
  content_item.dig(:details, :step_by_step_nav)
end

def content_id

def content_id
  content_item[:content_id]
end

def initialize(content_item)

def initialize(content_item)
  @content_item = content_item.deep_symbolize_keys
end

def steps

def steps
  content_item.dig(:details, :step_by_step_nav, :steps)
end

def title

def title
  content_item[:title]
end