Skip to content

ProjectDataLinkingBatchItemPagedListV4

Properties

Name Type Description Notes
items List[ProjectDataLinkingBatchItemV4]
next_page_token str The cursor to request the next page. For offset-based paging the value is an empty string. [optional]
remaining_records int The number of records remaining (used in cursor based pagination) [optional]
total_item_count int The total number of records matching the search criteria (used in offset based pagination) [optional]

Example

from libica.openapi.v3.models.project_data_linking_batch_item_paged_list_v4 import ProjectDataLinkingBatchItemPagedListV4

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

# convert the object into a dict
project_data_linking_batch_item_paged_list_v4_dict = project_data_linking_batch_item_paged_list_v4_instance.to_dict()
# create an instance of ProjectDataLinkingBatchItemPagedListV4 from a dict
project_data_linking_batch_item_paged_list_v4_from_dict = ProjectDataLinkingBatchItemPagedListV4.from_dict(project_data_linking_batch_item_paged_list_v4_dict)

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