Name |
Type |
Description |
Notes |
message |
str |
|
[optional] |
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]