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
1 change: 1 addition & 0 deletions lago_python_client/models/credit_note.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ class CreditNoteAppliedTaxes(BaseResponseModel):
class CreditNoteResponse(BaseResponseModel):
lago_id: Optional[str]
sequential_id: Optional[int]
billing_entity_code: Optional[str]
number: Optional[str]
lago_invoice_id: Optional[str]
invoice_number: Optional[str]
Expand Down
2 changes: 2 additions & 0 deletions lago_python_client/models/invoice.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ class OneOffInvoice(BaseModel):
error_details: Optional[ErrorDetailsResponse]
payment_method: Optional[PaymentMethod]
invoice_custom_section: Optional[InvoiceCustomSectionInput]
billing_entity_code: Optional[str]


class InvoicePreview(BaseModel):
Expand All @@ -66,6 +67,7 @@ class InvoicePreview(BaseModel):
coupons: Optional[CouponsList]
customer: Optional[Customer]
subscriptions: Optional[Subscriptions]
billing_entity_code: Optional[str]


class InvoiceAppliedTax(BaseResponseModel):
Expand Down
2 changes: 2 additions & 0 deletions lago_python_client/models/subscription.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class Subscription(BaseModel):
payment_method: Optional[PaymentMethod]
invoice_custom_section: Optional[InvoiceCustomSectionInput]
consolidate_invoice: Optional[bool]
billing_entity_code: Optional[str]


class Subscriptions(BaseModel):
Expand Down Expand Up @@ -57,6 +58,7 @@ class SubscriptionResponse(BaseResponseModel):
payment_method: Optional[PaymentMethod]
applied_invoice_custom_sections: Optional[AppliedInvoiceCustomSections]
consolidate_invoice: Optional[bool]
billing_entity_code: Optional[str]


class SubscriptionsResponse(BaseResponseModel):
Expand Down
2 changes: 2 additions & 0 deletions lago_python_client/models/wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ class Wallet(BaseModel):
metadata: Optional[Dict[str, Optional[str]]]
payment_method: Optional[PaymentMethod]
invoice_custom_section: Optional[InvoiceCustomSectionInput]
billing_entity_code: Optional[str]


class WalletResponse(BaseResponseModel):
Expand Down Expand Up @@ -111,3 +112,4 @@ class WalletResponse(BaseResponseModel):
metadata: Optional[Dict[str, Optional[str]]]
payment_method: Optional[PaymentMethod]
applied_invoice_custom_sections: Optional[AppliedInvoiceCustomSections]
billing_entity_code: Optional[str]
Loading