Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.32 KB

File metadata and controls

30 lines (21 loc) · 1.32 KB

Schedulerv3CreateScheduledJobResponse

CreateScheduledJobResponse message for Put v3/schedules api.

Properties

Name Type Description Notes
result str Result is "" if an record is persisted, otherwise an error is returned. [optional]

Example

from ibm_gdsc_sdk_saas.models.schedulerv3_create_scheduled_job_response import Schedulerv3CreateScheduledJobResponse

# TODO update the JSON string below
json = "{}"
# create an instance of Schedulerv3CreateScheduledJobResponse from a JSON string
schedulerv3_create_scheduled_job_response_instance = Schedulerv3CreateScheduledJobResponse.from_json(json)
# print the JSON string representation of the object
print(Schedulerv3CreateScheduledJobResponse.to_json())

# convert the object into a dict
schedulerv3_create_scheduled_job_response_dict = schedulerv3_create_scheduled_job_response_instance.to_dict()
# create an instance of Schedulerv3CreateScheduledJobResponse from a dict
schedulerv3_create_scheduled_job_response_from_dict = Schedulerv3CreateScheduledJobResponse.from_dict(schedulerv3_create_scheduled_job_response_dict)

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