Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.25 KB

File metadata and controls

32 lines (23 loc) · 1.25 KB

ImportTaskListResponseSchema

Properties

Name Type Description Notes
offset int
limit int
total int
data List[ImportTaskGetResponseSchema] Logical operator grouping filters or nested logical groups

Example

from cloudbeds_pms.models.import_task_list_response_schema import ImportTaskListResponseSchema

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

# convert the object into a dict
import_task_list_response_schema_dict = import_task_list_response_schema_instance.to_dict()
# create an instance of ImportTaskListResponseSchema from a dict
import_task_list_response_schema_from_dict = ImportTaskListResponseSchema.from_dict(import_task_list_response_schema_dict)

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