| Name |
Type |
Description |
Notes |
| name |
str |
|
[optional] |
| color |
str |
|
[optional] |
| size |
float |
|
[optional] |
| style |
str |
|
[optional] |
| line_height |
int |
|
[optional] |
| is_bold_font |
bool |
|
[optional] |
| is_italic_font |
bool |
|
[optional] |
| is_under_line_font |
bool |
|
[optional] |
from boldsign.models.font import Font
# TODO update the JSON string below
json = "{}"
# create an instance of Font from a JSON string
font_instance = Font.from_json(json)
# print the JSON string representation of the object
print(Font.to_json())
# convert the object into a dict
font_dict = font_instance.to_dict()
# create an instance of Font from a dict
font_from_dict = Font.from_dict(font_dict)
[Back to Model list] [Back to API list] [Back to README]