From 36670b4b1ad69ca161bc562cf1583b1137d32e12 Mon Sep 17 00:00:00 2001 From: Ivan Novosad Date: Fri, 3 Nov 2023 10:19:12 +0100 Subject: [PATCH] Add invoice display name to customer usage --- lago_python_client/models/customer_usage.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lago_python_client/models/customer_usage.py b/lago_python_client/models/customer_usage.py index 961a7706..17a866d3 100644 --- a/lago_python_client/models/customer_usage.py +++ b/lago_python_client/models/customer_usage.py @@ -21,6 +21,7 @@ class Group(BaseModel): class ChargeObject(BaseModel): lago_id: str charge_model: str + invoice_display_name: Optional[str] class ChargeUsage(BaseModel):