class BMT::Item
Attributes
description[R]
key[R]
step[R]
title[R]
vrt_category[R]
Public Class Methods
new(step:, attributes:)
click to toggle source
# File lib/bmt/item.rb, line 5 def initialize(step:, attributes:) @step = step @key = attributes['key'] @title = attributes['title'] @description = attributes['description'] @vrt_category = attributes['vrt_category'] end