class FormFieldDefinition

Attributes

help_text[RW]
label[RW]
name[RW]
options_for_select[RW]
placeholder_text[RW]
type[RW]

Public Class Methods

new(options = {}) click to toggle source
# File lib/buweb/services/form_field_definition.rb, line 3
def initialize(options = {})
  @name = options[:name]
  @label = options[:label]
  @type = options[:type]
  @placeholder_text = options[:placeholder_text]
  @options_for_select = options[:options_for_select]
  @help_text = options[:help_text]
end