CreateDataloadingJobResponse¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
job_id |
str |
Example¶
from graphscope.flex.rest.models.create_dataloading_job_response import CreateDataloadingJobResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CreateDataloadingJobResponse from a JSON string
create_dataloading_job_response_instance = CreateDataloadingJobResponse.from_json(json)
# print the JSON string representation of the object
print(CreateDataloadingJobResponse.to_json())
# convert the object into a dict
create_dataloading_job_response_dict = create_dataloading_job_response_instance.to_dict()
# create an instance of CreateDataloadingJobResponse from a dict
create_dataloading_job_response_from_dict = CreateDataloadingJobResponse.from_dict(create_dataloading_job_response_dict)