Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 914 Bytes

File metadata and controls

29 lines (20 loc) · 914 Bytes

EmbeddedFileLink

Properties

Name Type Description Notes
url str [optional]

Example

from boldsign.models.embedded_file_link import EmbeddedFileLink

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

# convert the object into a dict
embedded_file_link_dict = embedded_file_link_instance.to_dict()
# create an instance of EmbeddedFileLink from a dict
embedded_file_link_from_dict = EmbeddedFileLink.from_dict(embedded_file_link_dict)

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