class Spear::Structure::Application::EmbededClass::ApplicationObject

Attributes

app_did[RW]
is_viewed[RW]
view_date[RW]

Public Class Methods

new(app_did, is_viewed, view_date) click to toggle source
# File lib/spear/structure/application/embeded_class.rb, line 37
def initialize(app_did, is_viewed, view_date)
  @app_did = app_did
  @is_viewed = 'true'.eql?(is_viewed)
  @view_date = view_date unless view_date.blank?
end