class DeGiro::Client

Public Class Methods

new(login:, password:) click to toggle source
# File lib/degiro/client.rb, line 27
def initialize(login:, password:)
  connection = Connection.new(login, password)

  @create_order       = CreateOrder.new(connection)
  @find_product_by_id = FindProductById.new(connection)
  @find_products      = FindProducts.new(connection)
  @get_cash_funds     = GetCashFunds.new(connection)
  @get_orders         = GetOrders.new(connection)
  @get_portfolio      = GetPortfolio.new(connection)
  @get_transactions   = GetTransactions.new(connection)
end