class Segurocomar::Entity::BicycleValue
Public Class Methods
attr_list()
click to toggle source
# File lib/segurocomar/entity/bicycle_value.rb, line 4 def self.attr_list [:id, :name] end
new(attributes={})
click to toggle source
# File lib/segurocomar/entity/bicycle_value.rb, line 10 def initialize(attributes={}) attributes.each do |k, v| self.send("#{k}=", v) if self.respond_to?(k) end end