class Veeqo::Company
Public Instance Methods
find()
click to toggle source
# File lib/veeqo/company.rb, line 3 def find Veeqo::Request.new(:get, end_point).parse end
update(attributes)
click to toggle source
# File lib/veeqo/company.rb, line 7 def update(attributes) Veeqo::Request.new(:put, end_point, attributes).parse end
Private Instance Methods
end_point()
click to toggle source
# File lib/veeqo/company.rb, line 13 def end_point "current_company" end