class Crowdskout::Components::Option
Attributes
id[RW]
value[RW]
Public Class Methods
create(props)
click to toggle source
Factory method to create an Option
object from a json string @param [Hash] props - properties to create object from @return [Option]
# File lib/crowdskout/components/attributes/option.rb, line 15 def self.create(props) obj = Option.new if props props.each do |key, value| obj.send("#{key}=", value) if obj.respond_to? key end end obj end