Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.11 KB

File metadata and controls

31 lines (23 loc) · 1.11 KB

StartFileScanRequest

Properties

Name Type Description Notes
project_id ID
model_id ID
run_time_info RunTimeInfo [optional]
agent_id ID [optional]

Example

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)

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