Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

File metadata and controls

31 lines (22 loc) · 1.14 KB

BatchSyncPages200Response

Properties

Name Type Description Notes
success bool [optional]
synced int Number of pages synced [optional]
skipped int Number of pages skipped [optional]

Example

from rankvectors.models.batch_sync_pages200_response import BatchSyncPages200Response

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

# convert the object into a dict
batch_sync_pages200_response_dict = batch_sync_pages200_response_instance.to_dict()
# create an instance of BatchSyncPages200Response from a dict
batch_sync_pages200_response_from_dict = BatchSyncPages200Response.from_dict(batch_sync_pages200_response_dict)

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