Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.08 KB

File metadata and controls

29 lines (20 loc) · 1.08 KB

ImportChangeStatusTaskResponse

Properties

Name Type Description Notes
message str

Example

from cloudbeds_pms.models.import_change_status_task_response import ImportChangeStatusTaskResponse

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

# convert the object into a dict
import_change_status_task_response_dict = import_change_status_task_response_instance.to_dict()
# create an instance of ImportChangeStatusTaskResponse from a dict
import_change_status_task_response_from_dict = ImportChangeStatusTaskResponse.from_dict(import_change_status_task_response_dict)

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