class Minfraud::Model::EmailDomain

Model containing information about the email domain.

Attributes

first_seen[R]

A date string (e.g. 2017-04-24) to identify the date an email domain was first seen by MaxMind. This is expressed using the ISO 8601 date format.

@return [String, nil]

Public Class Methods

new(record) click to toggle source

@!visibility private

Calls superclass method Minfraud::Model::Abstract::new
# File lib/minfraud/model/email_domain.rb, line 17
def initialize(record)
  super(record)

  @first_seen = get('first_seen')
end