Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Latest commit

 

History

History
32 lines (24 loc) · 1.37 KB

File metadata and controls

32 lines (24 loc) · 1.37 KB

CreateScheduledJobLogRecordItemRequest

Properties

Name Type Description Notes
name str
status str [optional]
execution_time str [optional]
scheduled_job_id str [optional]
target_id str [optional]

Example

from clientapi_atrocore.models.create_scheduled_job_log_record_item_request import CreateScheduledJobLogRecordItemRequest

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

# convert the object into a dict
create_scheduled_job_log_record_item_request_dict = create_scheduled_job_log_record_item_request_instance.to_dict()
# create an instance of CreateScheduledJobLogRecordItemRequest from a dict
create_scheduled_job_log_record_item_request_form_dict = create_scheduled_job_log_record_item_request.from_dict(create_scheduled_job_log_record_item_request_dict)

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