class Scribesend::EntryLine
Public Class Methods
all()
click to toggle source
# File lib/scribesend/entry_line.rb, line 15 def self.all raise NotImplementedError.new("Entry_lines cannot be retrieved individually. Retrieve an entry instead.") end
create()
click to toggle source
# File lib/scribesend/entry_line.rb, line 19 def self.create raise NotImplementedError.new("Entry_lines cannot be created outside of an entry.") end
retrieve(id, opts=nil)
click to toggle source
# File lib/scribesend/entry_line.rb, line 11 def self.retrieve(id, opts=nil) raise NotImplementedError.new("Entry_lines cannot be retrieved individually. Retrieve an entry instead.") end
url()
click to toggle source
# File lib/scribesend/entry_line.rb, line 3 def self.url return nil end
Public Instance Methods
save()
click to toggle source
# File lib/scribesend/entry_line.rb, line 23 def save raise NotImplementedError.new("Entry_lines cannot be updated within an entry. " \ "If you want to make changes to an entry_line, you will need to create " \ "a new entry that adjusts the corresponding accounts and values. " \ "See https://scribesend.com/docs for more details.") end
url()
click to toggle source
# File lib/scribesend/entry_line.rb, line 7 def url return nil end