Skip to content

Commit 2edc4f2

Browse files
committed
fix: specify events next_stream_position property format as int64 (box/box-openapi#535)
1 parent 601da50 commit 2edc4f2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.codegen.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "engineHash": "fe7a2b2", "specHash": "8402463", "version": "1.15.0" }
1+
{ "engineHash": "fe7a2b2", "specHash": "719cda2", "version": "1.15.0" }

box_sdk_gen/schemas/events.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def __init__(
1616
self,
1717
*,
1818
chunk_size: Optional[int] = None,
19-
next_stream_position: Optional[Union[str, float]] = None,
19+
next_stream_position: Optional[Union[str, int]] = None,
2020
entries: Optional[List[Event]] = None,
2121
**kwargs
2222
):
@@ -25,7 +25,7 @@ def __init__(
2525
:type chunk_size: Optional[int], optional
2626
:param next_stream_position: The stream position of the start of the next page (chunk)
2727
of events., defaults to None
28-
:type next_stream_position: Optional[Union[str, float]], optional
28+
:type next_stream_position: Optional[Union[str, int]], optional
2929
:param entries: A list of events., defaults to None
3030
:type entries: Optional[List[Event]], optional
3131
"""

0 commit comments

Comments
 (0)