class Customers::Customer

noinspection ALL

Attributes

date_created[R]
email_address[R]
first_name[R]
id[R]
last_name[R]
mobile_country_code[R]
mobile_number[R]
object[R]
object_reference_id[R]

Public Class Methods

new(options = {}) click to toggle source
# File lib/Customers.rb, line 10
def initialize(options = {})
  @id = get_arg(options, 'id')
  @object = get_arg(options, 'object')
  @date_created = get_arg(options, 'date_created')
  @last_update = get_arg(options, 'last_updated')
  @email_address = get_arg(options, 'email_address')
  @first_name = get_arg(options, 'first_name')
  @last_name = get_arg(options, 'last_name')
  @mobile_country_code = get_arg(options, 'mobile_country_code')
  @mobile_number = get_arg(options, 'mobile_number')
  @object_reference_id = get_arg(options, 'object_reference_id')
end