Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1018 Bytes

ScheduledBatchResponse.md

File metadata and controls

29 lines (21 loc) · 1018 Bytes

ScheduledBatchResponse

Properties

Name Type Description Notes
batchid str
status str

Example

from openapi_client.models.scheduled_batch_response import ScheduledBatchResponse

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

# convert the object into a dict
scheduled_batch_response_dict = scheduled_batch_response_instance.to_dict()
# create an instance of ScheduledBatchResponse from a dict
scheduled_batch_response_form_dict = scheduled_batch_response.from_dict(scheduled_batch_response_dict)

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