Class: Infostrada::Endpoint

Inherits:
Object
  • Object
show all
Defined in:
lib/infostrada/call_refresh.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(hash) ⇒ Endpoint

Returns a new instance of Endpoint.



81
82
83
84
85
86
87
# File 'lib/infostrada/call_refresh.rb', line 81

def initialize(hash)
  @method = hash['c_Method']
  @last_modified = Formatter.format_date(hash['d_LastModified'])
  @query_string = hash['c_QueryString']

  self
end

Instance Attribute Details

#last_modifiedObject

Returns the value of attribute last_modified.



79
80
81
# File 'lib/infostrada/call_refresh.rb', line 79

def last_modified
  @last_modified
end

#methodObject

Returns the value of attribute method.



79
80
81
# File 'lib/infostrada/call_refresh.rb', line 79

def method
  @method
end

#query_stringObject

Returns the value of attribute query_string.



79
80
81
# File 'lib/infostrada/call_refresh.rb', line 79

def query_string
  @query_string
end