class Bookafy::Model::Customer
Attributes
client_id[RW]
created_at[RW]
email[RW]
id[RW]
name[RW]
soft_delete[RW]
updated_at[RW]
Public Class Methods
new(attrs = {})
click to toggle source
# File lib/bookafy/model/customer.rb, line 7 def initialize(attrs = {}) attrs.each do |attr, val| send("#{attr}=", val) if respond_to?("#{attr}=") end end