Skip to content

Commit

Permalink
Merge pull request #213 from websideproject/dev
Browse files Browse the repository at this point in the history
Add email query param for Customer
  • Loading branch information
bgervan authored Jan 17, 2024
2 parents c8398d6 + 249028f commit 8122949
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions paddle_billing_client/models/customer.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ class Customer(CustomerBase):
class CustomerQueryParams(BaseModel):
# Return entities after the specified cursor. Used for working through paginated results.
after: str | None = None
# Return entities that exactly match the specified email address.
# Use a comma separated list to specify multiple email addresses.
# Recommended for precise matching of email addresses.
email: str | None = None
# Return only the IDs specified. Use a comma separated list to get multiple entities.
id: str | None = None
# Order returned entities by the specified field and direction ([ASC] or [DESC]).
Expand Down

0 comments on commit 8122949

Please sign in to comment.