| Name | Type | Description | Notes |
|---|---|---|---|
| height | int | [optional] | |
| width | int | [optional] |
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)