| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] [readonly] | |
| product | ProductName | ||
| version | List[BatchApplicationVersionDetails] | [optional] [readonly] | |
| permission_to_use | bool | Does your account have permission to use this application? | [optional] [readonly] |
from epiccore.models.batch_application_details import BatchApplicationDetails
# TODO update the JSON string below
json = "{}"
# create an instance of BatchApplicationDetails from a JSON string
batch_application_details_instance = BatchApplicationDetails.from_json(json)
# print the JSON string representation of the object
print BatchApplicationDetails.to_json()
# convert the object into a dict
batch_application_details_dict = batch_application_details_instance.to_dict()
# create an instance of BatchApplicationDetails from a dict
batch_application_details_form_dict = batch_application_details.from_dict(batch_application_details_dict)