Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1005 Bytes

File metadata and controls

29 lines (20 loc) · 1005 Bytes

BatchSyncPagesRequest

Properties

Name Type Description Notes
pages List[PageData]

Example

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)

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