Method: CF::Account.info
- Defined in:
- lib/cf/account.rb
.info ⇒ Object
Returns Account Info
Usage Example:
CF::Account.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 |