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
2 changes: 1 addition & 1 deletion .codegen.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "engineHash": "ead925a", "specHash": "091b558", "version": "1.10.0" }
{ "engineHash": "b5ed925", "specHash": "99792c6", "version": "1.10.0" }
8 changes: 4 additions & 4 deletions box_sdk_gen/schemas/file_full.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,19 +266,19 @@ def __init__(
self,
*,
dimensions: Optional[str] = None,
paged: Optional[bool] = None,
thumb: Optional[bool] = None,
paged: Optional[str] = None,
thumb: Optional[str] = None,
**kwargs
):
"""
:param dimensions: The width by height size of this representation in pixels., defaults to None
:type dimensions: Optional[str], optional
:param paged: Indicates if the representation is build up out of multiple
pages., defaults to None
:type paged: Optional[bool], optional
:type paged: Optional[str], optional
:param thumb: Indicates if the representation can be used as a thumbnail of
the file., defaults to None
:type thumb: Optional[bool], optional
:type thumb: Optional[str], optional
"""
super().__init__(**kwargs)
self.dimensions = dimensions
Expand Down
Loading