Name | Type | Description | Notes |
---|---|---|---|
batch | BatchInfoSchema |
from openapi_client.models.batch_details import BatchDetails
# TODO update the JSON string below
json = "{}"
# create an instance of BatchDetails from a JSON string
batch_details_instance = BatchDetails.from_json(json)
# print the JSON string representation of the object
print(BatchDetails.to_json())
# convert the object into a dict
batch_details_dict = batch_details_instance.to_dict()
# create an instance of BatchDetails from a dict
batch_details_from_dict = BatchDetails.from_dict(batch_details_dict)