mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-21 07:44:22 +01:00
* feat: support funding_trades endpoint * chore: bump version, add changelog entry * chore: add final newline to funding_trade.py * fix: 'maker' is now placeholder in fundingtrade Co-authored-by: Richard Hoekstra <me@richardhoekstra.com> Co-authored-by: Robert Kowalski <robert@bitfinex.com>
25 lines
693 B
Python
25 lines
693 B
Python
"""
|
|
This module contains a group of different models which
|
|
are used to define data types
|
|
"""
|
|
|
|
from .order import Order
|
|
from .trade import Trade
|
|
from .order_book import OrderBook
|
|
from .subscription import Subscription
|
|
from .wallet import Wallet
|
|
from .position import Position
|
|
from .funding_loan import FundingLoan
|
|
from .funding_offer import FundingOffer
|
|
from .funding_credit import FundingCredit
|
|
from .notification import Notification
|
|
from .transfer import Transfer
|
|
from .deposit_address import DepositAddress
|
|
from .withdraw import Withdraw
|
|
from .ticker import Ticker
|
|
from .funding_ticker import FundingTicker
|
|
from .ledger import Ledger
|
|
from .funding_trade import FundingTrade
|
|
|
|
NAME = "models"
|