| Name |
Type |
Description |
Notes |
| domain |
str |
Domain to sync |
[optional] |
| project_name |
str |
Project name |
[optional] |
from rankvectors.models.sync_project_request import SyncProjectRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SyncProjectRequest from a JSON string
sync_project_request_instance = SyncProjectRequest.from_json(json)
# print the JSON string representation of the object
print(SyncProjectRequest.to_json())
# convert the object into a dict
sync_project_request_dict = sync_project_request_instance.to_dict()
# create an instance of SyncProjectRequest from a dict
sync_project_request_from_dict = SyncProjectRequest.from_dict(sync_project_request_dict)
[Back to Model list] [Back to API list] [Back to README]