Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

EmbeddedCustomFieldCreated

Properties

Name Type Description Notes
create_url str [optional]

Example

from boldsign.models.embedded_custom_field_created import EmbeddedCustomFieldCreated

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

# convert the object into a dict
embedded_custom_field_created_dict = embedded_custom_field_created_instance.to_dict()
# create an instance of EmbeddedCustomFieldCreated from a dict
embedded_custom_field_created_from_dict = EmbeddedCustomFieldCreated.from_dict(embedded_custom_field_created_dict)

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