class AmsLayout::Parser::NullControl
Attributes
id[R]
label[R]
type[R]
Public Class Methods
new()
click to toggle source
# File lib/ams_layout/parser.rb, line 125 def initialize @label = '' @id = '' @type = '' end
Public Instance Methods
to_hash()
click to toggle source
# File lib/ams_layout/parser.rb, line 131 def to_hash {label: @label, id: @id, type: @type} end