Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.17 KB

File metadata and controls

29 lines (20 loc) · 1.17 KB

ImportFailedToCreateImportTaskSchema

Properties

Name Type Description Notes
message str

Example

from cloudbeds_pms.models.import_failed_to_create_import_task_schema import ImportFailedToCreateImportTaskSchema

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

# convert the object into a dict
import_failed_to_create_import_task_schema_dict = import_failed_to_create_import_task_schema_instance.to_dict()
# create an instance of ImportFailedToCreateImportTaskSchema from a dict
import_failed_to_create_import_task_schema_from_dict = ImportFailedToCreateImportTaskSchema.from_dict(import_failed_to_create_import_task_schema_dict)

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