Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.42 KB

File metadata and controls

39 lines (30 loc) · 1.42 KB

ImportTaskGetResponseSchema

Properties

Name Type Description Notes
id str
name str
source str
parsed_records_count str
imported_records_count str
type str Import task type.
priority str Import task priority.
file_status str
import_status str Import task status.
created_at str [optional]
errors str [optional]

Example

from cloudbeds_pms.models.import_task_get_response_schema import ImportTaskGetResponseSchema

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

# convert the object into a dict
import_task_get_response_schema_dict = import_task_get_response_schema_instance.to_dict()
# create an instance of ImportTaskGetResponseSchema from a dict
import_task_get_response_schema_from_dict = ImportTaskGetResponseSchema.from_dict(import_task_get_response_schema_dict)

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