class AeUsersMigrator::Import::Account

Attributes

activation_key[RW]
active[RW]
created_at[RW]
id[RW]
password[RW]
updated_at[RW]

Public Class Methods

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