File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 11configured_endpoints : 101
2- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-52bd3046e73f201c4d08edfa92756791c015be907691a7893f8e7782cc2aea6f .yml
2+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-b6d60f8edbdc94e65f06b0b002cc8e1f27aceccc67917bea849425701ba82fb8 .yml
Original file line number Diff line number Diff line change @@ -927,8 +927,11 @@ class Invoice(BaseModel):
927927
928928 discounts : List [InvoiceLevelDiscount ]
929929
930- due_date : datetime
931- """When the invoice payment is due."""
930+ due_date : Optional [datetime ] = None
931+ """When the invoice payment is due.
932+
933+ The due date is null if the invoice is not yet finalized.
934+ """
932935
933936 eligible_to_issue_at : Optional [datetime ] = None
934937 """
Original file line number Diff line number Diff line change @@ -927,8 +927,11 @@ class InvoiceFetchUpcomingResponse(BaseModel):
927927
928928 discounts : List [InvoiceLevelDiscount ]
929929
930- due_date : datetime
931- """When the invoice payment is due."""
930+ due_date : Optional [datetime ] = None
931+ """When the invoice payment is due.
932+
933+ The due date is null if the invoice is not yet finalized.
934+ """
932935
933936 eligible_to_issue_at : Optional [datetime ] = None
934937 """
You can’t perform that action at this time.
0 commit comments