Skip to content

Commit

Permalink
feat: add zeroAmountInvoice to org and customer
Browse files Browse the repository at this point in the history
  • Loading branch information
brunomiguelpinto committed Sep 4, 2024
1 parent 0f2e666 commit c5774f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lago_python_client/models/customer.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ class Customer(BaseModel):
url: Optional[str]
zipcode: Optional[str]
metadata: Optional[MetadataList]
finalize_zero_amount_invoice: Optional[str]
billing_configuration: Optional[CustomerBillingConfiguration]
shipping_address: Optional[Address]
integration_customers: Optional[IntegrationCustomersList]
Expand Down Expand Up @@ -125,6 +126,7 @@ class CustomerResponse(BaseResponseModel):
url: Optional[str]
zipcode: Optional[str]
metadata: Optional[MetadataResponseList]
finalize_zero_amount_invoice: Optional[str]
billing_configuration: Optional[CustomerBillingConfiguration]
shipping_address: Optional[Address]
integration_customers: Optional[IntegrationCustomersResponseList]
Expand Down
2 changes: 2 additions & 0 deletions lago_python_client/models/organization.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ class Organization(BaseModel):
tax_identification_number: Optional[str]
timezone: Optional[str]
email_settings: Optional[List[str]]
finalize_zero_amount_invoice: Optional[bool]
billing_configuration: Optional[OrganizationBillingConfiguration]


Expand All @@ -53,4 +54,5 @@ class OrganizationResponse(BaseResponseModel):
tax_identification_number: Optional[str]
timezone: Optional[str]
email_settings: Optional[List[str]]
finalize_zero_amount_invoice: Optional[bool]
billing_configuration: Optional[OrganizationBillingConfiguration]

0 comments on commit c5774f8

Please sign in to comment.