Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.16 KB

File metadata and controls

29 lines (20 loc) · 1.16 KB

ImportFailedChangeStatusTaskResponse

Properties

Name Type Description Notes
message str

Example

from cloudbeds_pms.models.import_failed_change_status_task_response import ImportFailedChangeStatusTaskResponse

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

# convert the object into a dict
import_failed_change_status_task_response_dict = import_failed_change_status_task_response_instance.to_dict()
# create an instance of ImportFailedChangeStatusTaskResponse from a dict
import_failed_change_status_task_response_from_dict = ImportFailedChangeStatusTaskResponse.from_dict(import_failed_change_status_task_response_dict)

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