Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 818 Bytes

File metadata and controls

30 lines (21 loc) · 818 Bytes

Size

Properties

Name Type Description Notes
width float [optional] [default to 0]
height float [optional] [default to 0]

Example

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)

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