class Recomiendo::Account

Public Class Methods

new(client) click to toggle source
# File lib/recomiendo/account.rb, line 3
def initialize(client)
  @client = client
end

Public Instance Methods

create(params={}) click to toggle source
# File lib/recomiendo/account.rb, line 7
def create(params={})
  @client.post('/accounts', params)['account_id']
end