Class: Attune::Model::Customer

Inherits:
Object
  • Object
show all
Defined in:
lib/attune/models/customer.rb

Overview

Customer associated with an anonymous user

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Customer

Returns a new instance of Customer.



10
11
12
13
14
15
16
# File 'lib/attune/models/customer.rb', line 10

def initialize(attributes = {})
  return if attributes.empty?
  # Workaround since JSON.parse has accessors as strings rather than symbols
  @customer = attributes["customer"] || attributes[:"customer"]
  

end

Instance Attribute Details

#customerString

Returns the current value of customer.

Returns:

  • (String)

    the current value of customer



6
7
8
# File 'lib/attune/models/customer.rb', line 6

def customer
  @customer
end

Instance Method Details

#to_bodyObject



18
19
20
21
22
23
# File 'lib/attune/models/customer.rb', line 18

def to_body
  Hash[ATTRIBUTE_MAP.map do |internal, external|
    next unless value = send(internal)
    [external, value]
  end.compact]
end

#to_json(options = {}) ⇒ Object



25
26
27
# File 'lib/attune/models/customer.rb', line 25

def to_json(options = {})
  to_body.to_json
end