class DeGiro::Client
Public Class Methods
new(login:, password:)
click to toggle source
# File lib/degiro_client/client.rb, line 26 def initialize(login:, password:) connection = Connection.new(login, password) @create_order = CreateOrder.new(connection) @delete_order = DeleteOrder.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