| Name |
Type |
Description |
Notes |
| success |
bool |
Whether the row was successfully deleted. |
[optional] |
| error |
str |
Error message when success is false. Absent when success is true. |
[optional] |
from bamboohr_sdk.models.table_row_delete_response import TableRowDeleteResponse
# TODO update the JSON string below
json = "{}"
# create an instance of TableRowDeleteResponse from a JSON string
table_row_delete_response_instance = TableRowDeleteResponse.from_json(json)
# print the JSON string representation of the object
print(TableRowDeleteResponse.to_json())
# convert the object into a dict
table_row_delete_response_dict = table_row_delete_response_instance.to_dict()
# create an instance of TableRowDeleteResponse from a dict
table_row_delete_response_from_dict = TableRowDeleteResponse.from_dict(table_row_delete_response_dict)
[Back to Model list] [Back to API list] [Back to README]