class AeUsersMigrator::Import::EmailAddress

Attributes

address[RW]
created_at[RW]
id[RW]
primary[RW]
updated_at[RW]

Public Class Methods

new(json) click to toggle source
# File lib/ae_users_migrator/import.rb, line 8
def initialize(json)
  %w{address created_at updated_at primary id}.each do |f|
    self.send("#{f}=", json[f])
  end
end