Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.14 KB

File metadata and controls

29 lines (20 loc) · 1.14 KB

ImportTaskListFailedResponseSchema

Properties

Name Type Description Notes
message str

Example

from cloudbeds_pms.models.import_task_list_failed_response_schema import ImportTaskListFailedResponseSchema

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

# convert the object into a dict
import_task_list_failed_response_schema_dict = import_task_list_failed_response_schema_instance.to_dict()
# create an instance of ImportTaskListFailedResponseSchema from a dict
import_task_list_failed_response_schema_from_dict = ImportTaskListFailedResponseSchema.from_dict(import_task_list_failed_response_schema_dict)

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