ScheduleDownload
Properties
Name |
Type |
Description |
Notes |
connector_id |
str |
|
[optional] |
protocol |
str |
|
[optional] |
local_path |
str |
|
[optional] |
disable_hashing |
bool |
|
[optional] |
Example
from libica.openapi.v3.models.schedule_download import ScheduleDownload
# TODO update the JSON string below
json = "{}"
# create an instance of ScheduleDownload from a JSON string
schedule_download_instance = ScheduleDownload.from_json(json)
# print the JSON string representation of the object
print(ScheduleDownload.to_json())
# convert the object into a dict
schedule_download_dict = schedule_download_instance.to_dict()
# create an instance of ScheduleDownload from a dict
schedule_download_from_dict = ScheduleDownload.from_dict(schedule_download_dict)
[Back to Model list] [Back to API list] [Back to README]