Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

File metadata and controls

29 lines (20 loc) · 1.01 KB

CreateBatchJobsRequest

Properties

Name Type Description Notes
jobs List[CreateJobRequest]

Example

from queueflow.models.create_batch_jobs_request import CreateBatchJobsRequest

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

# convert the object into a dict
create_batch_jobs_request_dict = create_batch_jobs_request_instance.to_dict()
# create an instance of CreateBatchJobsRequest from a dict
create_batch_jobs_request_from_dict = CreateBatchJobsRequest.from_dict(create_batch_jobs_request_dict)

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