class Supai::Person

Attributes

first_name[RW]
last_name[RW]
name[RW]

Public Class Methods

new(hash) click to toggle source
# File lib/supai/customer.rb, line 5
def initialize(hash)
  set_attributes(hash)
  @name ||= [first_name, last_name].join(" ")
end