class SBF::Client::Event

Public Instance Methods

keys_hash() click to toggle source
Calls superclass method SBF::Client::BaseEntity#keys_hash
# File lib/stbaldricks/entities/event.rb, line 39
def keys_hash
  year.nil? ? super : super.merge(year: year)
end
update(with = {}) click to toggle source
# File lib/stbaldricks/entities/event.rb, line 35
def update(with = {})
  endpoint.update(id, year, self, with)
end