Skip to content

Latest commit

 

History

History
executable file
·
33 lines (24 loc) · 1.29 KB

BatchApplicationList.md

File metadata and controls

executable file
·
33 lines (24 loc) · 1.29 KB

BatchApplicationList

Properties

Name Type Description Notes
id int [optional] [readonly]
product ProductName
versions List[BatchApplicationVersionDetails] [optional] [readonly]
permission_to_use bool Does your account have permission to use this application? [optional] [readonly]
supports_cases bool [optional]

Example

from epiccore.models.batch_application_list import BatchApplicationList

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

# convert the object into a dict
batch_application_list_dict = batch_application_list_instance.to_dict()
# create an instance of BatchApplicationList from a dict
batch_application_list_form_dict = batch_application_list.from_dict(batch_application_list_dict)

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