Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 793 Bytes

File metadata and controls

29 lines (21 loc) · 793 Bytes

Size

Properties

Name Type Description Notes
height int [optional]
width int [optional]

Example

from docspace_api_sdk.models.size import Size

# TODO update the JSON string below
json = "{}"
# create an instance of Size from a JSON string
size_instance = Size.from_json(json)
# print the JSON string representation of the object
print(Size.to_json())

# convert the object into a dict
size_dict = size_instance.to_dict()
# create an instance of Size from a dict
size_from_dict = Size.from_dict(size_dict)

[Back to Model list] [Back to API list] [Back to README]