class Epages::CustomersResponse

Constants

KEYS

Public Class Methods

new(data) click to toggle source
# File lib/epages/customers_response.rb, line 12
def initialize(data)
  parse_attribute_as_array_of(:items, data.delete(:items), Epages::Customer)
  parse_attributes(data)
end