Name | Type | Description | Notes |
---|---|---|---|
pk | int | [optional] [readonly] | |
name | str | [optional] [readonly] |
from epiccore.models.application import Application
# TODO update the JSON string below
json = "{}"
# create an instance of Application from a JSON string
application_instance = Application.from_json(json)
# print the JSON string representation of the object
print Application.to_json()
# convert the object into a dict
application_dict = application_instance.to_dict()
# create an instance of Application from a dict
application_form_dict = application.from_dict(application_dict)