From 539ea757bb747ed3ce4f789d2e1512fc7d3a0835 Mon Sep 17 00:00:00 2001 From: Benjamin Gervan Date: Thu, 22 Feb 2024 07:26:57 +0100 Subject: [PATCH] Make email optional in CustomerRequest --- paddle_billing_client/models/customer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paddle_billing_client/models/customer.py b/paddle_billing_client/models/customer.py index ed8c392..498bdd9 100644 --- a/paddle_billing_client/models/customer.py +++ b/paddle_billing_client/models/customer.py @@ -72,7 +72,7 @@ class CustomersResponse(PaddleResponse): class CustomerRequest(CustomerBase): - pass + email: str | None = None class CustomerBalancesQueryParams(BaseModel):