Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions python/lightning_sdk/api/org_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,12 @@ class MonthlySummary(TypedDict):
Attributes:
period_start: Start of the billing period (typically the first of the month).
period_end: End of the billing period (typically the end of the month).
total_credits_consumed: Total credits consumed during the monthly period.
total_credits_remaining: Total credits remaining at the end of the monthly period.
total_credits_purchased: Total credits purchased during the monthly period.
"""

period_start: datetime
period_end: datetime
total_credits_consumed: float
total_credits_remaining: float
total_credits_purchased: float

Expand Down Expand Up @@ -104,7 +102,6 @@ def get_monthly_summary(
{
"period_start": datetime,
"period_end": datetime,
"total_credits_consumed": float,
"total_credits_remaining": float,
"total_credits_purchased": float,
},
Expand Down
1 change: 0 additions & 1 deletion python/lightning_sdk/organization.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ def get_monthly_summary(
{
"period_start": datetime,
"period_end": datetime,
"total_credits_consumed": float,
"total_credits_remaining": float,
"total_credits_purchased": float,
},
Expand Down
Loading