Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 924 Bytes

File metadata and controls

30 lines (21 loc) · 924 Bytes

TextTagOffset

Properties

Name Type Description Notes
offset_x float [optional]
offset_y float [optional]

Example

from boldsign.models.text_tag_offset import TextTagOffset

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

# convert the object into a dict
text_tag_offset_dict = text_tag_offset_instance.to_dict()
# create an instance of TextTagOffset from a dict
text_tag_offset_from_dict = TextTagOffset.from_dict(text_tag_offset_dict)

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