Skip to content

Commit fb5348b

Browse files
fix: change status serialization behavior (#168)
1 parent fa3bc39 commit fb5348b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/orb/types/invoice_list_params.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ class InvoiceListParams(TypedDict, total=False):
5252
limit: int
5353
"""The number of items to fetch. Defaults to 20."""
5454

55-
status: Annotated[
56-
Optional[List[Literal["draft", "issued", "paid", "synced", "void"]]], PropertyInfo(alias="status[]")
57-
]
55+
status: Optional[List[Literal["draft", "issued", "paid", "synced", "void"]]]
5856

5957
subscription_id: Optional[str]

0 commit comments

Comments
 (0)