class Paid::Account
Attributes
business_logo[RW]
business_name[RW]
business_url[RW]
id[R]
object[R]
Public Class Methods
retrieve(params={}, headers={})
click to toggle source
# File lib/paid/account.rb, line 9 def self.retrieve(params={}, headers={}) method = APIMethod.new(:get, "/account", params, headers, self) self.new(method.execute, method) end
Public Instance Methods
refresh(params={}, headers={})
click to toggle source
# File lib/paid/account.rb, line 14 def refresh(params={}, headers={}) method = APIMethod.new(:get, "/account", params, headers, self) self.refresh_from(method.execute, method) end