| Name | Type | Description | Notes |
|---|---|---|---|
| project_id | ID | ||
| model_id | ID | ||
| run_time_info | RunTimeInfo | [optional] | |
| agent_id | ID | [optional] |
from ri.apiclient.models.start_file_scan_request import StartFileScanRequest
# TODO update the JSON string below
json = "{}"
# create an instance of StartFileScanRequest from a JSON string
start_file_scan_request_instance = StartFileScanRequest.from_json(json)
# print the JSON string representation of the object
print(StartFileScanRequest.to_json())
# convert the object into a dict
start_file_scan_request_dict = start_file_scan_request_instance.to_dict()
# create an instance of StartFileScanRequest from a dict
start_file_scan_request_from_dict = StartFileScanRequest.from_dict(start_file_scan_request_dict)