Skip to content

Commit

Permalink
fix #89
Browse files Browse the repository at this point in the history
  • Loading branch information
Graeme22 committed Oct 24, 2023
1 parent 47e0003 commit d370cc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tastytrade/order.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,13 @@ class FillInfo(TastytradeJsonDataclass):
"""
Dataclass that contains information about an order fill.
"""
ext_group_fill_id: str
ext_exec_id: str
fill_id: str
quantity: Decimal
fill_price: Decimal
filled_at: datetime
destination_venue: str
ext_group_fill_id: Optional[str] = None
ext_exec_id: Optional[str] = None


class Leg(TastytradeJsonDataclass):
Expand Down

0 comments on commit d370cc3

Please sign in to comment.