You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromboldsign.models.embedded_custom_field_createdimportEmbeddedCustomFieldCreated# TODO update the JSON string belowjson="{}"# create an instance of EmbeddedCustomFieldCreated from a JSON stringembedded_custom_field_created_instance=EmbeddedCustomFieldCreated.from_json(json)
# print the JSON string representation of the objectprint(EmbeddedCustomFieldCreated.to_json())
# convert the object into a dictembedded_custom_field_created_dict=embedded_custom_field_created_instance.to_dict()
# create an instance of EmbeddedCustomFieldCreated from a dictembedded_custom_field_created_from_dict=EmbeddedCustomFieldCreated.from_dict(embedded_custom_field_created_dict)