Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1001 Bytes

EmbeddedSendCreated.md

File metadata and controls

30 lines (21 loc) · 1001 Bytes

EmbeddedSendCreated

Properties

Name Type Description Notes
document_id str [optional]
send_url str [optional]

Example

from boldsign.models.embedded_send_created import EmbeddedSendCreated

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

# convert the object into a dict
embedded_send_created_dict = embedded_send_created_instance.to_dict()
# create an instance of EmbeddedSendCreated from a dict
embedded_send_created_from_dict = EmbeddedSendCreated.from_dict(embedded_send_created_dict)

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