Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1002 Bytes

DeleteCustomFieldReply.md

File metadata and controls

29 lines (20 loc) · 1002 Bytes

DeleteCustomFieldReply

Properties

Name Type Description Notes
message str [optional]

Example

from boldsign.models.delete_custom_field_reply import DeleteCustomFieldReply

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

# convert the object into a dict
delete_custom_field_reply_dict = delete_custom_field_reply_instance.to_dict()
# create an instance of DeleteCustomFieldReply from a dict
delete_custom_field_reply_from_dict = DeleteCustomFieldReply.from_dict(delete_custom_field_reply_dict)

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