DataloadingJobConfig¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
loading_config |
|||
vertices |
|||
edges |
|||
schedule |
str |
format with ‘2023-02-21 11:56:30’ |
[optional] |
repeat |
str |
[optional] |
Example¶
from graphscope.flex.rest.models.dataloading_job_config import DataloadingJobConfig
# TODO update the JSON string below
json = "{}"
# create an instance of DataloadingJobConfig from a JSON string
dataloading_job_config_instance = DataloadingJobConfig.from_json(json)
# print the JSON string representation of the object
print(DataloadingJobConfig.to_json())
# convert the object into a dict
dataloading_job_config_dict = dataloading_job_config_instance.to_dict()
# create an instance of DataloadingJobConfig from a dict
dataloading_job_config_from_dict = DataloadingJobConfig.from_dict(dataloading_job_config_dict)