Method: CF::Account.info

Defined in:
lib/cf/account.rb

.infoObject

Returns Account Info

Usage Example:

CF::.info


13
14
15
16
17
# File 'lib/cf/account.rb', line 13

def info
  resp = get('/account.json')
  self.errors = resp['error']['message'] if resp['code'] != 200
  return resp
end