| Name | Type | Description | Notes |
|---|---|---|---|
| pages | List[PageData] |
from rankvectors.models.batch_sync_pages_request import BatchSyncPagesRequest
# TODO update the JSON string below
json = "{}"
# create an instance of BatchSyncPagesRequest from a JSON string
batch_sync_pages_request_instance = BatchSyncPagesRequest.from_json(json)
# print the JSON string representation of the object
print(BatchSyncPagesRequest.to_json())
# convert the object into a dict
batch_sync_pages_request_dict = batch_sync_pages_request_instance.to_dict()
# create an instance of BatchSyncPagesRequest from a dict
batch_sync_pages_request_from_dict = BatchSyncPagesRequest.from_dict(batch_sync_pages_request_dict)