| Name | Type | Description | Notes |
|---|---|---|---|
| width | float | [optional] [default to 0] | |
| height | float | [optional] [default to 0] |
from boldsign.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)